2012-11-25 16:45:00 +01:00
|
|
|
package mekanism.generators.client;
|
2012-11-21 16:14:35 +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-21 16:14:35 +01:00
|
|
|
import mekanism.common.MekanismUtils;
|
2012-11-25 16:45:00 +01:00
|
|
|
import mekanism.generators.common.ContainerBioGenerator;
|
|
|
|
import mekanism.generators.common.TileEntityBioGenerator;
|
2012-11-21 16:14:35 +01:00
|
|
|
import net.minecraft.src.*;
|
|
|
|
|
|
|
|
public class GuiBioGenerator extends GuiContainer
|
|
|
|
{
|
|
|
|
public TileEntityBioGenerator tileEntity;
|
|
|
|
|
|
|
|
private int guiWidth;
|
|
|
|
private int guiHeight;
|
|
|
|
|
|
|
|
public GuiBioGenerator(InventoryPlayer inventory, TileEntityBioGenerator tentity)
|
|
|
|
{
|
|
|
|
super(new ContainerBioGenerator(inventory, tentity));
|
|
|
|
tileEntity = tentity;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void drawGuiContainerForegroundLayer(int par1, int par2)
|
|
|
|
{
|
|
|
|
fontRenderer.drawString(tileEntity.fullName, 45, 6, 0x404040);
|
|
|
|
fontRenderer.drawString("Inventory", 8, (ySize - 96) + 2, 0x404040);
|
2012-11-29 20:56:38 +01:00
|
|
|
fontRenderer.drawString(ElectricInfo.getDisplayShort(tileEntity.electricityStored, ElectricUnit.JOULES), 51, 26, 0x404040);
|
2012-11-21 16:14:35 +01:00
|
|
|
fontRenderer.drawString("BioFuel: " + tileEntity.bioFuelSlot.liquidStored, 51, 35, 0x404040);
|
2012-11-25 16:45:00 +01:00
|
|
|
fontRenderer.drawString("Out: " + tileEntity.output + "w", 51, 44, 0x404040);
|
2012-11-21 16:14:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void drawGuiContainerBackgroundLayer(float par1, int par2, int par3)
|
|
|
|
{
|
|
|
|
int texture = mc.renderEngine.getTexture("/resources/mekanism/gui/GuiBioGenerator.png");
|
|
|
|
GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
|
|
|
|
mc.renderEngine.bindTexture(texture);
|
|
|
|
guiWidth = (width - xSize) / 2;
|
|
|
|
guiHeight = (height - ySize) / 2;
|
|
|
|
drawTexturedModalRect(guiWidth, guiHeight, 0, 0, xSize, ySize);
|
|
|
|
int displayInt;
|
|
|
|
|
|
|
|
displayInt = tileEntity.getScaledFuelLevel(52);
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|