Package mods.railcraft.client.gui

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

/*
* 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 mods.railcraft.common.carts.EntityCartEnergy;
import mods.railcraft.common.core.RailcraftConstants;
import mods.railcraft.common.gui.containers.ContainerCartEnergy;

public class GuiCartEnergy extends EntityGui {

    private final EntityCartEnergy device;

    public GuiCartEnergy(InventoryPlayer inv, EntityCartEnergy cart) {
        super(cart, new ContainerCartEnergy(inv, cart), RailcraftConstants.GUI_TEXTURE_FOLDER + "gui_energy.png");
        this.device = cart;
    }

    @Override
    protected void drawGuiContainerForegroundLayer(int mouseX, int mouseY) {
        String entityName = device.getCommandSenderName();
        int sWidth = fontRendererObj.getStringWidth(entityName);
        int sPos = xSize / 2 - sWidth / 2;
        fontRendererObj.drawString(entityName, sPos, 6, 0x404040);
        fontRendererObj.drawString("Power Level:", 80, 25, 0x404040);
        fontRendererObj.drawString(Integer.toString((int) device.getEnergy()), 115, 35, 0x404040);

        String capacity = "/" + device.getCapacity();
        fontRendererObj.drawString(capacity, 115, 45, 0x404040);
    }

    @Override
    protected void drawGuiContainerBackgroundLayer(float f, int i, int j) {
        super.drawGuiContainerBackgroundLayer(f, i, j);
        int x = (width - xSize) / 2;
        int y = (height - ySize) / 2;

        if (device.getEnergy() > 0) {
            int energy = device.getEnergyBarScaled(24);
            drawTexturedModalRect(x + 79, y + 34, 176, 14, energy, 17);
        }
    }

}
TOP

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

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.