2012-11-25 16:45:00 +01:00
|
|
|
package mekanism.generators.client;
|
2012-10-28 23:18:23 +01:00
|
|
|
|
2013-02-27 02:21:30 +01:00
|
|
|
import java.util.ArrayList;
|
|
|
|
|
2012-11-23 03:22:11 +01:00
|
|
|
import mekanism.api.EnumGas;
|
2013-06-13 23:37:30 +02:00
|
|
|
import mekanism.api.Object3D;
|
2012-11-23 03:22:11 +01:00
|
|
|
import mekanism.common.PacketHandler;
|
2013-06-13 23:37:30 +02:00
|
|
|
import mekanism.common.PacketHandler.Transmission;
|
|
|
|
import mekanism.common.network.PacketTileEntity;
|
2012-11-25 16:45:00 +01:00
|
|
|
import mekanism.generators.common.ContainerElectrolyticSeparator;
|
|
|
|
import mekanism.generators.common.TileEntityElectrolyticSeparator;
|
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-10-28 23:18:23 +01: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-11-15 21:04:12 +01:00
|
|
|
public class GuiElectrolyticSeparator extends GuiContainer
|
2012-10-28 23:18:23 +01:00
|
|
|
{
|
2012-11-15 21:04:12 +01:00
|
|
|
public TileEntityElectrolyticSeparator tileEntity;
|
2012-10-28 23:18:23 +01:00
|
|
|
|
2012-10-30 02:13:40 +01:00
|
|
|
private int guiWidth;
|
|
|
|
private int guiHeight;
|
|
|
|
|
2012-11-15 21:04:12 +01:00
|
|
|
public GuiElectrolyticSeparator(InventoryPlayer inventory, TileEntityElectrolyticSeparator tentity)
|
2012-10-28 23:18:23 +01:00
|
|
|
{
|
2012-11-15 21:04:12 +01:00
|
|
|
super(new ContainerElectrolyticSeparator(inventory, tentity));
|
2012-10-28 23:18:23 +01:00
|
|
|
tileEntity = tentity;
|
|
|
|
}
|
2012-11-23 03:22:11 +01:00
|
|
|
|
|
|
|
@Override
|
2012-12-19 21:23:55 +01:00
|
|
|
protected void mouseClicked(int x, int y, int button)
|
|
|
|
{
|
|
|
|
super.mouseClicked(x, y, button);
|
|
|
|
|
|
|
|
int xAxis = (x - (width - xSize) / 2);
|
|
|
|
int yAxis = (y - (height - ySize) / 2);
|
|
|
|
|
|
|
|
if(xAxis > 160 && xAxis < 169 && yAxis > 73 && yAxis < 82)
|
2012-11-23 03:22:11 +01:00
|
|
|
{
|
2012-12-21 14:30:40 +01:00
|
|
|
String nameToSet = "";
|
|
|
|
|
2013-01-12 15:52:41 +01:00
|
|
|
if(tileEntity.outputType == EnumGas.HYDROGEN)
|
|
|
|
{
|
|
|
|
nameToSet = EnumGas.OXYGEN.name;
|
|
|
|
}
|
|
|
|
else if(tileEntity.outputType == EnumGas.OXYGEN)
|
|
|
|
{
|
|
|
|
nameToSet = EnumGas.NONE.name;
|
|
|
|
}
|
|
|
|
else if(tileEntity.outputType == EnumGas.NONE)
|
2012-11-23 03:22:11 +01:00
|
|
|
{
|
2012-12-21 14:30:40 +01:00
|
|
|
nameToSet = EnumGas.HYDROGEN.name;
|
2012-11-23 03:22:11 +01:00
|
|
|
}
|
2013-01-12 15:52:41 +01:00
|
|
|
|
2013-02-27 02:21:30 +01:00
|
|
|
ArrayList data = new ArrayList();
|
|
|
|
data.add((byte)0);
|
|
|
|
data.add(nameToSet);
|
|
|
|
|
2013-06-15 00:25:09 +02:00
|
|
|
PacketHandler.sendPacket(Transmission.SERVER, new PacketTileEntity().setParams(Object3D.get(tileEntity), data));
|
2013-01-12 15:52:41 +01:00
|
|
|
mc.sndManager.playSoundFX("random.click", 1.0F, 1.0F);
|
|
|
|
}
|
|
|
|
else if(xAxis > 8 && xAxis < 17 && yAxis > 73 && yAxis < 82)
|
|
|
|
{
|
|
|
|
String nameToSet = "";
|
|
|
|
|
|
|
|
if(tileEntity.dumpType == EnumGas.NONE)
|
2012-11-23 03:22:11 +01:00
|
|
|
{
|
2012-12-21 14:30:40 +01:00
|
|
|
nameToSet = EnumGas.OXYGEN.name;
|
2012-11-23 03:22:11 +01:00
|
|
|
}
|
2013-01-12 15:52:41 +01:00
|
|
|
else if(tileEntity.dumpType == EnumGas.OXYGEN)
|
|
|
|
{
|
|
|
|
nameToSet = EnumGas.HYDROGEN.name;
|
|
|
|
}
|
|
|
|
else if(tileEntity.dumpType == EnumGas.HYDROGEN)
|
|
|
|
{
|
|
|
|
nameToSet = EnumGas.NONE.name;
|
|
|
|
}
|
2012-11-23 03:22:11 +01:00
|
|
|
|
2013-02-27 02:21:30 +01:00
|
|
|
ArrayList data = new ArrayList();
|
|
|
|
data.add((byte)1);
|
|
|
|
data.add(nameToSet);
|
|
|
|
|
2013-06-15 00:25:09 +02:00
|
|
|
PacketHandler.sendPacket(Transmission.SERVER, new PacketTileEntity().setParams(Object3D.get(tileEntity), data));
|
2012-12-19 21:23:55 +01:00
|
|
|
mc.sndManager.playSoundFX("random.click", 1.0F, 1.0F);
|
2012-11-23 03:22:11 +01:00
|
|
|
}
|
2012-12-19 21:23:55 +01:00
|
|
|
}
|
2012-10-28 23:18:23 +01: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-10-28 23:18:23 +01:00
|
|
|
{
|
2013-05-20 00:43:01 +02:00
|
|
|
int xAxis = (mouseX - (width - xSize) / 2);
|
|
|
|
int yAxis = (mouseY - (height - ySize) / 2);
|
|
|
|
|
2012-10-28 23:18:23 +01:00
|
|
|
fontRenderer.drawString(tileEntity.fullName, 45, 6, 0x404040);
|
2012-12-19 21:23:55 +01:00
|
|
|
fontRenderer.drawString("Output", 124, 73, 0x404040);
|
2013-01-12 15:52:41 +01:00
|
|
|
fontRenderer.drawString("Dump", 21, 73, 0x404040);
|
2013-05-20 00:43:01 +02:00
|
|
|
|
|
|
|
if(xAxis >= 165 && xAxis <= 169 && yAxis >= 17 && yAxis <= 69)
|
|
|
|
{
|
|
|
|
drawCreativeTabHoveringText(ElectricityDisplay.getDisplayShort(tileEntity.electricityStored, ElectricUnit.JOULES), xAxis, yAxis);
|
|
|
|
}
|
2012-10-28 23:18:23 +01:00
|
|
|
}
|
|
|
|
|
2012-11-06 16:44:14 +01:00
|
|
|
@Override
|
2012-10-28 23:18:23 +01:00
|
|
|
protected void drawGuiContainerBackgroundLayer(float par1, int par2, int par3)
|
|
|
|
{
|
2013-03-25 17:00:45 +01:00
|
|
|
mc.renderEngine.bindTexture("/mods/mekanism/gui/GuiElectrolyticSeparator.png");
|
2012-10-28 23:18:23 +01:00
|
|
|
GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
|
2012-10-30 02:13:40 +01:00
|
|
|
guiWidth = (width - xSize) / 2;
|
|
|
|
guiHeight = (height - ySize) / 2;
|
2012-10-28 23:18:23 +01:00
|
|
|
drawTexturedModalRect(guiWidth, guiHeight, 0, 0, xSize, ySize);
|
2012-12-19 21:23:55 +01:00
|
|
|
|
2013-01-12 15:52:41 +01:00
|
|
|
int outputDisplay = tileEntity.outputType == EnumGas.OXYGEN ? 82 : (tileEntity.outputType == EnumGas.HYDROGEN ? 90 : 98);
|
|
|
|
drawTexturedModalRect(guiWidth + 160, guiHeight + 73, 176, outputDisplay, 8, 8);
|
|
|
|
|
|
|
|
int dumpDisplay = tileEntity.dumpType == EnumGas.OXYGEN ? 82 : (tileEntity.dumpType == EnumGas.HYDROGEN ? 90 : 98);
|
|
|
|
drawTexturedModalRect(guiWidth + 8, guiHeight + 73, 176, dumpDisplay, 8, 8);
|
2012-12-19 21:23:55 +01:00
|
|
|
|
2012-10-28 23:18:23 +01:00
|
|
|
int displayInt;
|
|
|
|
|
2012-11-15 21:04:12 +01:00
|
|
|
displayInt = tileEntity.getScaledWaterLevel(52);
|
|
|
|
drawTexturedModalRect(guiWidth + 7, guiHeight + 17 + 52 - displayInt, 176 + 4, 52 - displayInt, 4, displayInt);
|
|
|
|
|
|
|
|
displayInt = tileEntity.getScaledHydrogenLevel(30);
|
|
|
|
drawTexturedModalRect(guiWidth + 65, guiHeight + 17 + 30 - displayInt, 176, 52 + 30 - displayInt, 4, displayInt);
|
|
|
|
|
|
|
|
displayInt = tileEntity.getScaledOxygenLevel(30);
|
|
|
|
drawTexturedModalRect(guiWidth + 107, guiHeight + 17 + 30 - displayInt, 176 + 4, 52 + 30 - displayInt, 4, displayInt);
|
2012-10-28 23:18:23 +01:00
|
|
|
|
|
|
|
displayInt = tileEntity.getScaledEnergyLevel(52);
|
|
|
|
drawTexturedModalRect(guiWidth + 165, guiHeight + 17 + 52 - displayInt, 176, 52 - displayInt, 4, displayInt);
|
|
|
|
}
|
|
|
|
}
|