2012-11-05 20:29:04 +01:00
|
|
|
package mekanism.client;
|
2012-08-15 22:41:41 +02:00
|
|
|
|
|
|
|
import org.lwjgl.opengl.GL11;
|
2012-11-05 20:29:04 +01:00
|
|
|
|
|
|
|
import mekanism.common.ContainerAdvancedElectricMachine;
|
|
|
|
import mekanism.common.TileEntityAdvancedElectricMachine;
|
2012-08-15 22:41:41 +02:00
|
|
|
import net.minecraft.src.*;
|
|
|
|
|
2012-10-17 20:46:27 +02:00
|
|
|
public class GuiAdvancedElectricMachine extends GuiContainer
|
2012-08-15 22:41:41 +02:00
|
|
|
{
|
2012-10-17 20:46:27 +02:00
|
|
|
public TileEntityAdvancedElectricMachine tileEntity;
|
2012-08-15 22:41:41 +02:00
|
|
|
|
2012-10-17 20:46:27 +02:00
|
|
|
public GuiAdvancedElectricMachine(InventoryPlayer inventory, TileEntityAdvancedElectricMachine tentity)
|
2012-08-15 22:41:41 +02:00
|
|
|
{
|
2012-10-03 21:12:17 +02:00
|
|
|
super(new ContainerAdvancedElectricMachine(inventory, tentity));
|
|
|
|
tileEntity = tentity;
|
2012-08-15 22:41:41 +02:00
|
|
|
}
|
|
|
|
|
2012-11-06 16:44:14 +01:00
|
|
|
@Override
|
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);
|
|
|
|
}
|
|
|
|
|
2012-11-06 16:44:14 +01:00
|
|
|
@Override
|
2012-08-15 22:41:41 +02:00
|
|
|
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, 19 + 52 - displayInt, 4, displayInt);
|
|
|
|
|
|
|
|
displayInt = tileEntity.getScaledSecondaryEnergyLevel(12);
|
|
|
|
drawTexturedModalRect(guiWidth + 61, guiHeight + 37 + 12 - displayInt, 176, 7 + 12 - displayInt, 5, 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
|
|
|
}
|
|
|
|
}
|