2012-11-25 16:45:00 +01:00
|
|
|
package mekanism.generators.client;
|
2012-10-28 23:18:23 +01:00
|
|
|
|
|
|
|
import org.lwjgl.opengl.GL11;
|
|
|
|
|
2012-12-19 21:23:55 +01:00
|
|
|
import cpw.mods.fml.client.FMLClientHandler;
|
|
|
|
|
2012-11-23 03:22:11 +01:00
|
|
|
import mekanism.api.EnumGas;
|
2012-11-05 20:29:04 +01:00
|
|
|
import mekanism.common.MekanismUtils;
|
2012-11-23 03:22:11 +01:00
|
|
|
import mekanism.common.PacketHandler;
|
2012-11-25 16:45:00 +01:00
|
|
|
import mekanism.generators.common.ContainerElectrolyticSeparator;
|
|
|
|
import mekanism.generators.common.ContainerHeatGenerator;
|
|
|
|
import mekanism.generators.common.TileEntityElectrolyticSeparator;
|
2012-10-28 23:18:23 +01:00
|
|
|
import net.minecraft.src.*;
|
|
|
|
|
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
|
|
|
{
|
|
|
|
if(tileEntity.outputType == EnumGas.OXYGEN)
|
|
|
|
{
|
|
|
|
tileEntity.outputType = EnumGas.HYDROGEN;
|
|
|
|
}
|
|
|
|
else if(tileEntity.outputType == EnumGas.HYDROGEN)
|
|
|
|
{
|
|
|
|
tileEntity.outputType = EnumGas.OXYGEN;
|
|
|
|
}
|
|
|
|
|
|
|
|
PacketHandler.sendTileEntityPacketToServer(tileEntity, tileEntity.outputType.name);
|
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
|
2012-10-28 23:18:23 +01:00
|
|
|
protected void drawGuiContainerForegroundLayer(int par1, int par2)
|
|
|
|
{
|
|
|
|
fontRenderer.drawString(tileEntity.fullName, 45, 6, 0x404040);
|
|
|
|
fontRenderer.drawString("Inventory", 8, (ySize - 96) + 2, 0x404040);
|
2012-12-19 21:23:55 +01:00
|
|
|
fontRenderer.drawString("Output", 124, 73, 0x404040);
|
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)
|
|
|
|
{
|
2012-11-15 21:04:12 +01:00
|
|
|
int texture = mc.renderEngine.getTexture("/resources/mekanism/gui/GuiElectrolyticSeparator.png");
|
2012-10-28 23:18:23 +01:00
|
|
|
GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
|
|
|
|
mc.renderEngine.bindTexture(texture);
|
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
|
|
|
|
|
|
|
drawTexturedModalRect(guiWidth + 160, guiHeight + 73, 176, (tileEntity.outputType == EnumGas.OXYGEN ? 82 : 90), 8, 8);
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|