2013-08-27 00:49:32 +02:00
|
|
|
package mekanism.generators.client.gui;
|
2012-10-28 23:18:23 +01:00
|
|
|
|
2014-04-07 01:50:34 +02:00
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
import mekanism.api.ListUtils;
|
2014-04-07 02:44:11 +02:00
|
|
|
import mekanism.api.gas.GasTank;
|
2014-04-07 01:50:34 +02:00
|
|
|
import mekanism.client.gui.GuiEnergyInfo;
|
|
|
|
import mekanism.client.gui.GuiEnergyInfo.IInfoHandler;
|
2014-04-07 02:44:11 +02:00
|
|
|
import mekanism.client.gui.GuiGasGauge;
|
|
|
|
import mekanism.client.gui.GuiGasGauge.IGasInfoHandler;
|
2014-04-08 01:00:53 +02:00
|
|
|
import mekanism.client.gui.GuiGauge.Type;
|
2013-08-27 00:49:32 +02:00
|
|
|
import mekanism.client.gui.GuiMekanism;
|
2014-04-07 04:28:05 +02:00
|
|
|
import mekanism.client.gui.GuiPowerBar;
|
2013-08-27 00:49:32 +02:00
|
|
|
import mekanism.client.gui.GuiRedstoneControl;
|
2013-08-27 00:57:08 +02:00
|
|
|
import mekanism.common.util.MekanismUtils;
|
|
|
|
import mekanism.common.util.MekanismUtils.ResourceType;
|
2013-08-27 00:49:32 +02:00
|
|
|
import mekanism.generators.common.inventory.container.ContainerHydrogenGenerator;
|
2014-01-08 02:55:50 +01:00
|
|
|
import mekanism.generators.common.tile.TileEntityHydrogenGenerator;
|
2012-12-20 22:53:39 +01:00
|
|
|
import net.minecraft.entity.player.InventoryPlayer;
|
2012-10-28 23:18:23 +01:00
|
|
|
|
2013-08-27 00:28:55 +02:00
|
|
|
import org.lwjgl.opengl.GL11;
|
2013-04-13 16:33:37 +02:00
|
|
|
|
2013-08-27 00:28:55 +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 GuiHydrogenGenerator extends GuiMekanism
|
2012-10-28 23:18:23 +01:00
|
|
|
{
|
2012-11-15 21:04:12 +01:00
|
|
|
public TileEntityHydrogenGenerator tileEntity;
|
2014-03-08 02:00:25 +01:00
|
|
|
|
2012-11-15 21:04:12 +01:00
|
|
|
public GuiHydrogenGenerator(InventoryPlayer inventory, TileEntityHydrogenGenerator tentity)
|
2014-03-08 02:00:25 +01:00
|
|
|
{
|
|
|
|
super(new ContainerHydrogenGenerator(inventory, tentity));
|
|
|
|
tileEntity = tentity;
|
|
|
|
guiElements.add(new GuiRedstoneControl(this, tileEntity, MekanismUtils.getResource(ResourceType.GUI, "GuiHydrogenGenerator.png")));
|
2014-04-07 01:50:34 +02:00
|
|
|
guiElements.add(new GuiEnergyInfo(new IInfoHandler() {
|
|
|
|
@Override
|
|
|
|
public List<String> getInfo()
|
|
|
|
{
|
2014-04-07 04:28:05 +02:00
|
|
|
return ListUtils.asList(
|
|
|
|
"Producing: " + MekanismUtils.getEnergyDisplay(tileEntity.generationRate) + "/t",
|
|
|
|
"Storing: " + MekanismUtils.getEnergyDisplay(tileEntity.getEnergy()),
|
2014-04-08 01:00:53 +02:00
|
|
|
"Max Output: " + MekanismUtils.getEnergyDisplay(tileEntity.getMaxOutput()) + "/t");
|
2014-04-07 01:50:34 +02:00
|
|
|
}
|
|
|
|
}, this, tileEntity, MekanismUtils.getResource(ResourceType.GUI, "GuiHydrogenGenerator.png")));
|
2014-04-07 02:44:11 +02:00
|
|
|
guiElements.add(new GuiGasGauge(new IGasInfoHandler() {
|
|
|
|
@Override
|
|
|
|
public GasTank getTank()
|
|
|
|
{
|
|
|
|
return tileEntity.fuelTank;
|
|
|
|
}
|
2014-04-07 04:28:05 +02:00
|
|
|
}, Type.WIDE, this, tileEntity, MekanismUtils.getResource(ResourceType.GUI, "GuiHydrogenGenerator.png"), 55, 18));
|
|
|
|
guiElements.add(new GuiPowerBar(this, tileEntity, MekanismUtils.getResource(ResourceType.GUI, "GuiHydrogenGenerator.png"), 164, 15));
|
2014-03-08 02:00:25 +01:00
|
|
|
}
|
2012-10-28 23:18:23 +01:00
|
|
|
|
2012-11-06 16:44:14 +01:00
|
|
|
@Override
|
2013-05-20 00:43:01 +02:00
|
|
|
protected void drawGuiContainerForegroundLayer(int mouseX, int mouseY)
|
2014-03-08 02:00:25 +01:00
|
|
|
{
|
2013-08-27 00:28:55 +02:00
|
|
|
super.drawGuiContainerForegroundLayer(mouseX, mouseY);
|
2014-03-08 02:00:25 +01:00
|
|
|
|
2013-05-20 00:43:01 +02:00
|
|
|
int xAxis = (mouseX - (width - xSize) / 2);
|
|
|
|
int yAxis = (mouseY - (height - ySize) / 2);
|
2014-03-08 02:00:25 +01:00
|
|
|
|
|
|
|
fontRenderer.drawString(tileEntity.getInvName(), 45, 6, 0x404040);
|
|
|
|
fontRenderer.drawString(MekanismUtils.localize("container.inventory"), 8, (ySize - 96) + 2, 0x404040);
|
|
|
|
}
|
2012-10-28 23:18:23 +01:00
|
|
|
|
2012-11-06 16:44:14 +01:00
|
|
|
@Override
|
2014-03-08 02:00:25 +01:00
|
|
|
protected void drawGuiContainerBackgroundLayer(float partialTick, int mouseX, int mouseY)
|
|
|
|
{
|
2013-09-28 03:59:47 +02:00
|
|
|
mc.renderEngine.bindTexture(MekanismUtils.getResource(ResourceType.GUI, "GuiHydrogenGenerator.png"));
|
2014-03-08 02:00:25 +01:00
|
|
|
GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
|
|
|
|
int guiWidth = (width - xSize) / 2;
|
|
|
|
int guiHeight = (height - ySize) / 2;
|
|
|
|
drawTexturedModalRect(guiWidth, guiHeight, 0, 0, xSize, ySize);
|
2013-08-02 09:16:38 +02:00
|
|
|
|
2014-04-07 02:44:11 +02:00
|
|
|
super.drawGuiContainerBackgroundLayer(partialTick, mouseX, mouseY);
|
2014-03-08 02:00:25 +01:00
|
|
|
}
|
2012-10-28 23:18:23 +01:00
|
|
|
}
|