2013-08-27 00:49:32 +02:00
|
|
|
package mekanism.client.gui;
|
2012-08-15 22:41:41 +02:00
|
|
|
|
2013-08-27 00:49:32 +02:00
|
|
|
import mekanism.common.inventory.container.ContainerElectricMachine;
|
|
|
|
import mekanism.common.tileentity.TileEntityElectricMachine;
|
2012-12-20 22:53:39 +01:00
|
|
|
import net.minecraft.entity.player.InventoryPlayer;
|
|
|
|
|
|
|
|
import org.lwjgl.opengl.GL11;
|
2012-08-15 22:41:41 +02:00
|
|
|
|
2013-05-20 00:43:01 +02:00
|
|
|
import universalelectricity.core.electricity.ElectricityDisplay;
|
|
|
|
import universalelectricity.core.electricity.ElectricityDisplay.ElectricUnit;
|
2013-04-13 16:33:37 +02:00
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
|
|
|
|
|
|
|
@SideOnly(Side.CLIENT)
|
2013-08-27 00:28:55 +02:00
|
|
|
public class GuiElectricMachine extends GuiMekanism
|
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;
|
2013-08-26 02:54:34 +02:00
|
|
|
|
2013-08-27 00:28:55 +02:00
|
|
|
guiElements.add(new GuiRedstoneControl(this, tileEntity, tileEntity.guiLocation));
|
|
|
|
guiElements.add(new GuiUpgradeManagement(this, tileEntity, tileEntity.guiLocation));
|
2013-10-30 20:22:43 +01:00
|
|
|
guiElements.add(new GuiConfigurationTab(this, tileEntity, tileEntity.guiLocation));
|
2012-08-15 22:41:41 +02: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)
|
2012-08-15 22:41:41 +02:00
|
|
|
{
|
2013-08-27 00:28:55 +02:00
|
|
|
super.drawGuiContainerForegroundLayer(mouseX, mouseY);
|
|
|
|
|
2013-05-20 00:43:01 +02:00
|
|
|
int xAxis = (mouseX - (width - xSize) / 2);
|
|
|
|
int yAxis = (mouseY - (height - ySize) / 2);
|
|
|
|
|
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);
|
2013-05-20 00:43:01 +02:00
|
|
|
|
|
|
|
if(xAxis >= 165 && xAxis <= 169 && yAxis >= 17 && yAxis <= 69)
|
|
|
|
{
|
2013-07-31 22:44:53 +02:00
|
|
|
drawCreativeTabHoveringText(ElectricityDisplay.getDisplayShort(tileEntity.getEnergyStored(), ElectricUnit.JOULES), xAxis, yAxis);
|
2013-05-20 00:43:01 +02:00
|
|
|
}
|
2012-08-15 22:41:41 +02:00
|
|
|
}
|
|
|
|
|
2012-11-06 16:44:14 +01:00
|
|
|
@Override
|
2013-08-27 00:28:55 +02:00
|
|
|
protected void drawGuiContainerBackgroundLayer(float partialTick, int mouseX, int mouseY)
|
2012-08-15 22:41:41 +02:00
|
|
|
{
|
2013-08-27 00:28:55 +02:00
|
|
|
super.drawGuiContainerBackgroundLayer(partialTick, mouseX, mouseY);
|
|
|
|
|
2013-09-28 03:59:47 +02:00
|
|
|
mc.renderEngine.bindTexture(tileEntity.guiLocation);
|
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
|
|
|
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
|
|
|
|
2013-08-27 00:28:55 +02:00
|
|
|
int xAxis = mouseX - guiWidth;
|
|
|
|
int yAxis = mouseY - guiHeight;
|
2013-08-02 09:16:38 +02:00
|
|
|
|
2012-10-03 21:12:17 +02:00
|
|
|
int displayInt;
|
2012-10-02 20:39:40 +02:00
|
|
|
|
2012-10-23 15:23:23 +02:00
|
|
|
displayInt = tileEntity.getScaledEnergyLevel(52);
|
2013-08-26 02:54:34 +02:00
|
|
|
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);
|
2013-08-26 02:54:34 +02:00
|
|
|
drawTexturedModalRect(guiWidth + 79, guiHeight + 39, 176, 0, displayInt + 1, 7);
|
2012-08-15 22:41:41 +02:00
|
|
|
}
|
2013-07-07 03:33:08 +02:00
|
|
|
}
|