2012-08-15 22:41:41 +02:00
|
|
|
package net.uberkat.obsidian.client;
|
|
|
|
|
|
|
|
import org.lwjgl.opengl.GL11;
|
|
|
|
import net.minecraft.src.*;
|
2012-10-02 20:39:40 +02:00
|
|
|
import net.uberkat.obsidian.common.ContainerElectricMachine;
|
2012-10-17 20:46:27 +02:00
|
|
|
import net.uberkat.obsidian.common.TileEntityElectricMachine;
|
2012-08-15 22:41:41 +02:00
|
|
|
|
2012-10-17 20:46:27 +02:00
|
|
|
public class GuiElectricMachine extends GuiContainer
|
2012-08-15 22:41:41 +02:00
|
|
|
{
|
2012-10-17 20:46:27 +02:00
|
|
|
public TileEntityElectricMachine tileEntity;
|
2012-08-15 22:41:41 +02:00
|
|
|
|
2012-10-17 20:46:27 +02:00
|
|
|
public GuiElectricMachine(InventoryPlayer inventory, TileEntityElectricMachine tentity)
|
2012-08-15 22:41:41 +02:00
|
|
|
{
|
2012-10-03 21:12:17 +02:00
|
|
|
super(new ContainerElectricMachine(inventory, tentity));
|
|
|
|
tileEntity = tentity;
|
2012-08-15 22:41:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Draw the foreground layer for the GuiContainer (everythin in front of the items)
|
|
|
|
*/
|
2012-10-28 23:18:23 +01:00
|
|
|
protected void drawGuiContainerForegroundLayer(int par1, int par2)
|
2012-08-15 22:41:41 +02:00
|
|
|
{
|
2012-10-17 20:46:27 +02:00
|
|
|
fontRenderer.drawString(tileEntity.fullName, 45, 6, 0x404040);
|
2012-08-15 22:41:41 +02:00
|
|
|
fontRenderer.drawString("Inventory", 8, (ySize - 96) + 2, 0x404040);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Draw the background layer for the GuiContainer (everything behind the items)
|
|
|
|
*/
|
|
|
|
protected void drawGuiContainerBackgroundLayer(float par1, int par2, int par3)
|
|
|
|
{
|
2012-10-17 20:46:27 +02:00
|
|
|
int texture = mc.renderEngine.getTexture(tileEntity.guiTexturePath);
|
2012-08-15 22:41:41 +02:00
|
|
|
GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
|
2012-10-03 21:12:17 +02:00
|
|
|
mc.renderEngine.bindTexture(texture);
|
|
|
|
int guiWidth = (width - xSize) / 2;
|
|
|
|
int guiHeight = (height - ySize) / 2;
|
|
|
|
drawTexturedModalRect(guiWidth, guiHeight, 0, 0, xSize, ySize);
|
|
|
|
int displayInt;
|
2012-10-02 20:39:40 +02:00
|
|
|
|
2012-10-23 15:23:23 +02:00
|
|
|
displayInt = tileEntity.getScaledEnergyLevel(52);
|
|
|
|
drawTexturedModalRect(guiWidth + 165, guiHeight + 17 + 52 - displayInt, 176, 7 + 52 - displayInt, 4, displayInt);
|
2012-08-15 22:41:41 +02:00
|
|
|
|
2012-10-03 21:12:17 +02:00
|
|
|
displayInt = tileEntity.getScaledProgress(24);
|
2012-10-23 15:23:23 +02:00
|
|
|
drawTexturedModalRect(guiWidth + 79, guiHeight + 39, 176, 0, displayInt + 1, 7);
|
2012-08-15 22:41:41 +02:00
|
|
|
}
|
|
|
|
}
|