2012-11-05 20:29:04 +01:00
|
|
|
package mekanism.client;
|
2012-08-15 22:41:41 +02:00
|
|
|
|
2013-07-07 03:33:08 +02:00
|
|
|
import mekanism.api.Object3D;
|
2012-11-05 20:29:04 +01:00
|
|
|
import mekanism.common.ContainerElectricMachine;
|
2013-07-07 03:33:08 +02:00
|
|
|
import mekanism.common.PacketHandler;
|
2012-11-05 20:29:04 +01:00
|
|
|
import mekanism.common.TileEntityElectricMachine;
|
2013-07-07 03:33:08 +02:00
|
|
|
import mekanism.common.PacketHandler.Transmission;
|
|
|
|
import mekanism.common.network.PacketRemoveUpgrade;
|
2012-12-20 22:53:39 +01:00
|
|
|
import net.minecraft.client.gui.inventory.GuiContainer;
|
|
|
|
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)
|
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));
|
2013-02-14 19:26:13 +01:00
|
|
|
xSize+=26;
|
2012-10-03 21:12:17 +02:00
|
|
|
tileEntity = tentity;
|
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-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-02-22 04:03:54 +01:00
|
|
|
fontRenderer.drawString("S:" + (tileEntity.speedMultiplier+1) + "x", 179, 47, 0x404040);
|
|
|
|
fontRenderer.drawString("E:" + (tileEntity.energyMultiplier+1) + "x", 179, 57, 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
|
|
|
}
|
2013-07-07 03:33:08 +02:00
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
2012-08-15 22:41:41 +02:00
|
|
|
}
|
|
|
|
|
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)
|
|
|
|
{
|
2013-07-20 18:10:14 +02:00
|
|
|
mc.renderEngine.func_110577_a(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);
|
|
|
|
int displayInt;
|
2012-10-02 20:39:40 +02:00
|
|
|
|
2012-10-23 15:23:23 +02:00
|
|
|
displayInt = tileEntity.getScaledEnergyLevel(52);
|
2013-02-14 19:26:13 +01:00
|
|
|
drawTexturedModalRect(guiWidth + 165, guiHeight + 17 + 52 - displayInt, 176 + 26, 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-02-14 19:26:13 +01:00
|
|
|
drawTexturedModalRect(guiWidth + 79, guiHeight + 39, 176 + 26, 0, displayInt + 1, 7);
|
|
|
|
|
|
|
|
displayInt = tileEntity.getScaledUpgradeProgress(14);
|
|
|
|
drawTexturedModalRect(guiWidth + 180, guiHeight + 30, 176 + 26, 59, 10, displayInt);
|
2012-08-15 22:41:41 +02:00
|
|
|
}
|
2013-07-07 03:33:08 +02:00
|
|
|
|
|
|
|
@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));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|