Package mods.railcraft.client.gui

Source Code of mods.railcraft.client.gui.GuiTank

/*
* Copyright (c) CovertJaguar, 2014 http://railcraft.info
*
* This code is the property of CovertJaguar
* and may only be used with explicit written
* permission unless otherwise specified on the
* license page at http://railcraft.info/wiki/info:license.
*/
package mods.railcraft.client.gui;

import net.minecraft.entity.player.InventoryPlayer;
import net.minecraft.util.StatCollector;
import mods.railcraft.common.blocks.RailcraftTileEntity;
import mods.railcraft.common.blocks.machine.ITankTile;
import mods.railcraft.common.core.RailcraftConstants;
import mods.railcraft.common.gui.containers.ContainerTank;

/**
*
* @author CovertJaguar <http://www.railcraft.info>
*/
public class GuiTank extends TileGui {

    private ITankTile tile;

    public GuiTank(InventoryPlayer inv, ITankTile tile) {
        super((RailcraftTileEntity) tile, new ContainerTank(inv, tile), RailcraftConstants.GUI_TEXTURE_FOLDER + "gui_tank_water.png");
        this.tile = tile;
    }

    @Override
    protected void drawGuiContainerForegroundLayer(int mouseX, int mouseY) {
        String title = tile.getTitle();
        int sWidth = fontRendererObj.getStringWidth(title);
        int sPos = xSize / 2 - sWidth / 2;
        fontRendererObj.drawString(title, sPos, 6, 0x404040);
//        fontRendererObj.drawString(RailcraftLanguage.translate("railcraft.gui.liquid.capacity") + ": " + tile.getTanks()[0].getCapacity(), 30, 100, 0x404040);
        fontRendererObj.drawString(StatCollector.translateToLocal("container.inventory"), 8, (ySize - 96) + 2, 0x404040);
    }
}
TOP

Related Classes of mods.railcraft.client.gui.GuiTank

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.