2012-11-25 16:45:00 +01:00
|
|
|
package mekanism.generators.client;
|
2012-10-28 23:18:23 +01:00
|
|
|
|
|
|
|
import org.lwjgl.opengl.GL11;
|
|
|
|
|
2012-11-25 16:45:00 +01:00
|
|
|
import universalelectricity.core.electricity.ElectricInfo;
|
|
|
|
import universalelectricity.core.electricity.ElectricInfo.ElectricUnit;
|
|
|
|
|
2012-11-05 20:29:04 +01:00
|
|
|
import mekanism.common.MekanismUtils;
|
2012-11-25 16:45:00 +01:00
|
|
|
import mekanism.generators.common.ContainerHydrogenGenerator;
|
|
|
|
import mekanism.generators.common.TileEntityHydrogenGenerator;
|
2012-10-28 23:18:23 +01:00
|
|
|
import net.minecraft.src.*;
|
|
|
|
|
2012-11-15 21:04:12 +01:00
|
|
|
public class GuiHydrogenGenerator extends GuiContainer
|
2012-10-28 23:18:23 +01:00
|
|
|
{
|
2012-11-15 21:04:12 +01:00
|
|
|
public TileEntityHydrogenGenerator tileEntity;
|
2012-10-28 23:18:23 +01:00
|
|
|
|
2012-10-30 02:13:40 +01:00
|
|
|
private int guiWidth;
|
|
|
|
private int guiHeight;
|
|
|
|
|
2012-11-15 21:04:12 +01:00
|
|
|
public GuiHydrogenGenerator(InventoryPlayer inventory, TileEntityHydrogenGenerator tentity)
|
2012-10-28 23:18:23 +01:00
|
|
|
{
|
2012-11-15 21:04:12 +01:00
|
|
|
super(new ContainerHydrogenGenerator(inventory, tentity));
|
2012-10-28 23:18:23 +01:00
|
|
|
tileEntity = tentity;
|
|
|
|
}
|
|
|
|
|
2012-11-06 16:44:14 +01:00
|
|
|
@Override
|
2012-10-28 23:18:23 +01:00
|
|
|
protected void drawGuiContainerForegroundLayer(int par1, int par2)
|
|
|
|
{
|
|
|
|
fontRenderer.drawString(tileEntity.fullName, 45, 6, 0x404040);
|
|
|
|
fontRenderer.drawString("Inventory", 8, (ySize - 96) + 2, 0x404040);
|
2012-11-25 16:45:00 +01:00
|
|
|
fontRenderer.drawString(ElectricInfo.getDisplayShort(tileEntity.electricityStored, ElectricUnit.JOULES) + "/" + ElectricInfo.getDisplayShort(tileEntity.MAX_ELECTRICITY, ElectricUnit.JOULES), 51, 26, 0x404040);
|
2012-11-15 21:04:12 +01:00
|
|
|
fontRenderer.drawString("Hydrogen: " + tileEntity.hydrogenStored, 51, 35, 0x404040);
|
2012-11-25 16:45:00 +01:00
|
|
|
fontRenderer.drawString("Out: " + tileEntity.output + "w", 51, 44, 0x404040);
|
2012-10-28 23:18:23 +01:00
|
|
|
}
|
|
|
|
|
2012-11-06 16:44:14 +01:00
|
|
|
@Override
|
2012-10-28 23:18:23 +01:00
|
|
|
protected void drawGuiContainerBackgroundLayer(float par1, int par2, int par3)
|
|
|
|
{
|
2012-11-15 21:04:12 +01:00
|
|
|
int texture = mc.renderEngine.getTexture("/resources/mekanism/gui/GuiHydrogenGenerator.png");
|
2012-10-28 23:18:23 +01:00
|
|
|
GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
|
|
|
|
mc.renderEngine.bindTexture(texture);
|
2012-10-30 02:13:40 +01:00
|
|
|
guiWidth = (width - xSize) / 2;
|
|
|
|
guiHeight = (height - ySize) / 2;
|
2012-10-28 23:18:23 +01:00
|
|
|
drawTexturedModalRect(guiWidth, guiHeight, 0, 0, xSize, ySize);
|
|
|
|
int displayInt;
|
|
|
|
|
2012-11-15 21:04:12 +01:00
|
|
|
displayInt = tileEntity.getScaledHydrogenLevel(52);
|
2012-10-28 23:18:23 +01:00
|
|
|
drawTexturedModalRect(guiWidth + 7, guiHeight + 17 + 52 - displayInt, 176, 52 + 52 - displayInt, 4, displayInt);
|
|
|
|
|
|
|
|
displayInt = tileEntity.getScaledEnergyLevel(52);
|
|
|
|
drawTexturedModalRect(guiWidth + 165, guiHeight + 17 + 52 - displayInt, 176, 52 - displayInt, 4, displayInt);
|
|
|
|
}
|
|
|
|
}
|