| package mekanism.client.gui; |
| |
| import mekanism.common.inventory.container.ContainerElectricMachine; |
| import mekanism.common.tileentity.TileEntityElectricMachine; |
| import mekanism.common.util.MekanismUtils; |
| import net.minecraft.client.renderer.RenderHelper; |
| import net.minecraft.entity.player.InventoryPlayer; |
| |
| import org.lwjgl.opengl.GL11; |
| |
| import cpw.mods.fml.relauncher.Side; |
| import cpw.mods.fml.relauncher.SideOnly; |
| |
| @SideOnly(Side.CLIENT) |
| public class GuiElectricMachine extends GuiMekanism |
| { |
| public TileEntityElectricMachine tileEntity; |
| |
| public GuiElectricMachine(InventoryPlayer inventory, TileEntityElectricMachine tentity) |
| { |
| super(new ContainerElectricMachine(inventory, tentity)); |
| tileEntity = tentity; |
| |
| guiElements.add(new GuiRedstoneControl(this, tileEntity, tileEntity.guiLocation)); |
| guiElements.add(new GuiUpgradeManagement(this, tileEntity, tileEntity.guiLocation)); |
| guiElements.add(new GuiConfigurationTab(this, tileEntity, tileEntity.guiLocation)); |
| } |
| |
| @Override |
| protected void drawGuiContainerForegroundLayer(int mouseX, int mouseY) |
| { |
| int xAxis = (mouseX - (width - xSize) / 2); |
| int yAxis = (mouseY - (height - ySize) / 2); |
| |
| fontRenderer.drawString(tileEntity.fullName, 45, 6, 0x404040); |
| fontRenderer.drawString("Inventory", 8, (ySize - 96) + 2, 0x404040); |
| |
| if(xAxis >= 165 && xAxis <= 169 && yAxis >= 17 && yAxis <= 69) |
| { |
| GL11.glPushMatrix(); |
| drawCreativeTabHoveringText(MekanismUtils.getEnergyDisplay(tileEntity.getEnergy()), xAxis, yAxis); |
| GL11.glPopMatrix(); |
| } |
| |
| super.drawGuiContainerForegroundLayer(mouseX, mouseY); |
| } |
| |
| @Override |
| protected void drawGuiContainerBackgroundLayer(float partialTick, int mouseX, int mouseY) |
| { |
| super.drawGuiContainerBackgroundLayer(partialTick, mouseX, mouseY); |
| |
| mc.renderEngine.bindTexture(tileEntity.guiLocation); |
| GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F); |
| int guiWidth = (width - xSize) / 2; |
| int guiHeight = (height - ySize) / 2; |
| drawTexturedModalRect(guiWidth, guiHeight, 0, 0, xSize, ySize); |
| |
| int xAxis = mouseX - guiWidth; |
| int yAxis = mouseY - guiHeight; |
| |
| int displayInt; |
| |
| displayInt = tileEntity.getScaledEnergyLevel(52); |
| drawTexturedModalRect(guiWidth + 165, guiHeight + 17 + 52 - displayInt, 176, 7 + 52 - displayInt, 4, displayInt); |
| |
| displayInt = tileEntity.getScaledProgress(24); |
| drawTexturedModalRect(guiWidth + 79, guiHeight + 39, 176, 0, displayInt + 1, 7); |
| } |
| } |