2013-08-27 00:49:32 +02:00
|
|
|
package mekanism.client.gui;
|
2012-10-02 20:39:40 +02:00
|
|
|
|
2013-12-22 22:49:04 +01:00
|
|
|
import mekanism.common.EnergyDisplay;
|
|
|
|
import mekanism.common.EnergyDisplay.ElectricUnit;
|
2013-08-27 00:49:32 +02:00
|
|
|
import mekanism.common.inventory.container.ContainerEnergyCube;
|
|
|
|
import mekanism.common.tileentity.TileEntityEnergyCube;
|
2013-08-27 00:57:08 +02:00
|
|
|
import mekanism.common.util.MekanismUtils;
|
|
|
|
import mekanism.common.util.MekanismUtils.ResourceType;
|
2012-12-20 22:53:39 +01:00
|
|
|
import net.minecraft.entity.player.InventoryPlayer;
|
|
|
|
import net.minecraft.util.StatCollector;
|
|
|
|
|
2012-10-02 20:39:40 +02:00
|
|
|
import org.lwjgl.opengl.GL11;
|
|
|
|
|
2013-07-31 22:44:53 +02:00
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
2012-11-25 16:45:00 +01:00
|
|
|
|
2013-04-13 16:33:37 +02:00
|
|
|
@SideOnly(Side.CLIENT)
|
2013-08-27 00:28:55 +02:00
|
|
|
public class GuiEnergyCube extends GuiMekanism
|
2012-10-02 20:39:40 +02:00
|
|
|
{
|
2013-08-02 09:16:38 +02:00
|
|
|
public TileEntityEnergyCube tileEntity;
|
2012-10-02 20:39:40 +02:00
|
|
|
|
2012-11-28 16:33:34 +01:00
|
|
|
public GuiEnergyCube(InventoryPlayer inventory, TileEntityEnergyCube tentity)
|
2012-10-02 20:39:40 +02:00
|
|
|
{
|
2012-11-28 16:33:34 +01:00
|
|
|
super(new ContainerEnergyCube(inventory, tentity));
|
2012-10-03 21:12:17 +02:00
|
|
|
tileEntity = tentity;
|
2013-08-27 00:28:55 +02:00
|
|
|
guiElements.add(new GuiRedstoneControl(this, tileEntity, MekanismUtils.getResource(ResourceType.GUI, "GuiEnergyCube.png")));
|
2012-10-02 20:39:40 +02:00
|
|
|
}
|
|
|
|
|
2012-11-06 16:44:14 +01:00
|
|
|
@Override
|
2013-08-02 09:16:38 +02:00
|
|
|
protected void drawGuiContainerForegroundLayer(int mouseX, int mouseY)
|
2012-10-02 20:39:40 +02:00
|
|
|
{
|
2013-08-02 09:16:38 +02:00
|
|
|
int xAxis = (mouseX - (width - xSize) / 2);
|
|
|
|
int yAxis = (mouseY - (height - ySize) / 2);
|
|
|
|
|
2013-11-23 01:32:06 +01:00
|
|
|
String capacityInfo = MekanismUtils.getEnergyDisplay(tileEntity.getEnergy()) + "/" + MekanismUtils.getEnergyDisplay(tileEntity.getMaxEnergy());
|
2013-11-30 06:28:02 +01:00
|
|
|
String outputInfo = MekanismUtils.localize("gui.out") + ": " + MekanismUtils.getEnergyDisplay(tileEntity.getMaxOutput()) + "/t";
|
2013-08-02 09:16:38 +02:00
|
|
|
|
2013-11-30 06:28:02 +01:00
|
|
|
fontRenderer.drawString(tileEntity.getInvName(), 43, 6, 0x404040);
|
2012-12-03 16:10:48 +01:00
|
|
|
fontRenderer.drawString(capacityInfo, 45, 40, 0x00CD00);
|
|
|
|
fontRenderer.drawString(outputInfo, 45, 49, 0x00CD00);
|
2013-11-30 06:28:02 +01:00
|
|
|
fontRenderer.drawString(MekanismUtils.localize("container.inventory"), 8, ySize - 96 + 2, 0x404040);
|
2013-11-27 02:11:26 +01:00
|
|
|
|
|
|
|
super.drawGuiContainerForegroundLayer(mouseX, mouseY);
|
2012-10-02 20:39:40 +02:00
|
|
|
}
|
|
|
|
|
2012-11-06 16:44:14 +01:00
|
|
|
@Override
|
2013-08-27 00:28:55 +02:00
|
|
|
protected void drawGuiContainerBackgroundLayer(float partialTick, int mouseX, int mouseY)
|
2012-10-02 20:39:40 +02:00
|
|
|
{
|
2013-08-27 00:28:55 +02:00
|
|
|
super.drawGuiContainerBackgroundLayer(partialTick, mouseX, mouseY);
|
|
|
|
|
2013-09-28 03:59:47 +02:00
|
|
|
mc.renderEngine.bindTexture(MekanismUtils.getResource(ResourceType.GUI, "GuiEnergyCube.png"));
|
2012-10-02 20:39:40 +02:00
|
|
|
GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
|
2013-08-02 09:16:38 +02:00
|
|
|
int guiWidth = (width - xSize) / 2;
|
|
|
|
int guiHeight = (height - ySize) / 2;
|
2012-10-02 20:39:40 +02:00
|
|
|
drawTexturedModalRect(guiWidth, guiHeight, 0, 0, xSize, ySize);
|
2013-08-02 09:16:38 +02:00
|
|
|
|
2013-08-27 00:28:55 +02:00
|
|
|
int xAxis = mouseX - guiWidth;
|
|
|
|
int yAxis = mouseY - guiHeight;
|
2013-08-02 09:16:38 +02:00
|
|
|
|
2013-11-27 02:11:26 +01:00
|
|
|
int displayInt = tileEntity.getScaledEnergyLevel(72);
|
|
|
|
drawTexturedModalRect(guiWidth + 65, guiHeight + 17, 176, 0, displayInt, 10);
|
2012-10-02 20:39:40 +02:00
|
|
|
}
|
|
|
|
}
|