| package mekanism.client; |
| |
| import mekanism.api.Object3D; |
| import mekanism.common.ContainerAdvancedElectricMachine; |
| import mekanism.common.PacketHandler; |
| import mekanism.common.TileEntityAdvancedElectricMachine; |
| import mekanism.common.PacketHandler.Transmission; |
| import mekanism.common.network.PacketRemoveUpgrade; |
| import net.minecraft.client.gui.inventory.GuiContainer; |
| import net.minecraft.entity.player.InventoryPlayer; |
| |
| import org.lwjgl.opengl.GL11; |
| |
| import universalelectricity.core.electricity.ElectricityDisplay; |
| import universalelectricity.core.electricity.ElectricityDisplay.ElectricUnit; |
| import cpw.mods.fml.relauncher.Side; |
| import cpw.mods.fml.relauncher.SideOnly; |
| |
| @SideOnly(Side.CLIENT) |
| public class GuiAdvancedElectricMachine extends GuiContainer |
| { |
| public TileEntityAdvancedElectricMachine tileEntity; |
| |
| public GuiAdvancedElectricMachine(InventoryPlayer inventory, TileEntityAdvancedElectricMachine tentity) |
| { |
| super(new ContainerAdvancedElectricMachine(inventory, tentity)); |
| xSize+=26; |
| tileEntity = tentity; |
| } |
| |
| @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); |
| fontRenderer.drawString("S:" + (tileEntity.speedMultiplier+1) + "x", 179, 47, 0x404040); |
| fontRenderer.drawString("E:" + (tileEntity.energyMultiplier+1) + "x", 179, 57, 0x404040); |
| |
| if(xAxis >= 165 && xAxis <= 169 && yAxis >= 17 && yAxis <= 69) |
| { |
| drawCreativeTabHoveringText(ElectricityDisplay.getDisplayShort((float)tileEntity.electricityStored, ElectricUnit.JOULES), xAxis, yAxis); |
| } |
| |
| if(xAxis >= 179 && xAxis <= 198 && yAxis >= 47 && yAxis <= 54) |
| { |
| drawCreativeTabHoveringText("Remove speed upgrade", xAxis, yAxis); |
| } |
| |
| if(xAxis >= 179 && xAxis <= 198 && yAxis >= 57 && yAxis <= 64) |
| { |
| drawCreativeTabHoveringText("Remove energy upgrade", xAxis, yAxis); |
| } |
| } |
| |
| @Override |
| protected void drawGuiContainerBackgroundLayer(float par1, int par2, int par3) |
| { |
| mc.renderEngine.func_110577_a(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 displayInt; |
| |
| displayInt = tileEntity.getScaledEnergyLevel(52); |
| drawTexturedModalRect(guiWidth + 165, guiHeight + 17 + 52 - displayInt, 176 + 26, 19 + 52 - displayInt, 4, displayInt); |
| |
| displayInt = tileEntity.getScaledSecondaryEnergyLevel(12); |
| drawTexturedModalRect(guiWidth + 61, guiHeight + 37 + 12 - displayInt, 176 + 26, 7 + 12 - displayInt, 5, displayInt); |
| |
| displayInt = tileEntity.getScaledProgress(24); |
| drawTexturedModalRect(guiWidth + 79, guiHeight + 39, 176 + 26, 0, displayInt + 1, 7); |
| |
| displayInt = tileEntity.getScaledUpgradeProgress(14); |
| drawTexturedModalRect(guiWidth + 180, guiHeight + 30, 176 + 26, 71, 10, displayInt); |
| } |
| |
| @Override |
| protected void mouseClicked(int mouseX, int mouseY, int button) |
| { |
| super.mouseClicked(mouseX, mouseY, button); |
| |
| if(button == 0) |
| { |
| int xAxis = (mouseX - (width - xSize) / 2); |
| int yAxis = (mouseY - (height - ySize) / 2); |
| |
| if(xAxis >= 179 && xAxis <= 198 && yAxis >= 47 && yAxis <= 54) |
| { |
| mc.sndManager.playSoundFX("random.click", 1.0F, 1.0F); |
| PacketHandler.sendPacket(Transmission.SERVER, new PacketRemoveUpgrade().setParams(Object3D.get(tileEntity), (byte)0)); |
| } |
| |
| if(xAxis >= 179 && xAxis <= 198 && yAxis >= 57 && yAxis <= 64) |
| { |
| mc.sndManager.playSoundFX("random.click", 1.0F, 1.0F); |
| PacketHandler.sendPacket(Transmission.SERVER, new PacketRemoveUpgrade().setParams(Object3D.get(tileEntity), (byte)1)); |
| } |
| } |
| } |
| } |