136 lines
4.7 KiB
Java
136 lines
4.7 KiB
Java
package mekanism.generators.client.gui;
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import mekanism.api.Object3D;
|
|
import mekanism.api.gas.EnumGas;
|
|
import mekanism.common.PacketHandler;
|
|
import mekanism.common.PacketHandler.Transmission;
|
|
import mekanism.common.network.PacketTileEntity;
|
|
import mekanism.common.util.MekanismUtils;
|
|
import mekanism.common.util.MekanismUtils.ResourceType;
|
|
import mekanism.generators.common.inventory.container.ContainerElectrolyticSeparator;
|
|
import mekanism.generators.common.tileentity.TileEntityElectrolyticSeparator;
|
|
import net.minecraft.client.gui.inventory.GuiContainer;
|
|
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 GuiElectrolyticSeparator extends GuiContainer
|
|
{
|
|
public TileEntityElectrolyticSeparator tileEntity;
|
|
|
|
public GuiElectrolyticSeparator(InventoryPlayer inventory, TileEntityElectrolyticSeparator tentity)
|
|
{
|
|
super(new ContainerElectrolyticSeparator(inventory, tentity));
|
|
tileEntity = tentity;
|
|
}
|
|
|
|
@Override
|
|
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)
|
|
{
|
|
String nameToSet = "";
|
|
|
|
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)
|
|
{
|
|
nameToSet = EnumGas.HYDROGEN.name;
|
|
}
|
|
|
|
ArrayList data = new ArrayList();
|
|
data.add((byte)0);
|
|
data.add(nameToSet);
|
|
|
|
PacketHandler.sendPacket(Transmission.SERVER, new PacketTileEntity().setParams(Object3D.get(tileEntity), data));
|
|
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)
|
|
{
|
|
nameToSet = EnumGas.OXYGEN.name;
|
|
}
|
|
else if(tileEntity.dumpType == EnumGas.OXYGEN)
|
|
{
|
|
nameToSet = EnumGas.HYDROGEN.name;
|
|
}
|
|
else if(tileEntity.dumpType == EnumGas.HYDROGEN)
|
|
{
|
|
nameToSet = EnumGas.NONE.name;
|
|
}
|
|
|
|
ArrayList data = new ArrayList();
|
|
data.add((byte)1);
|
|
data.add(nameToSet);
|
|
|
|
PacketHandler.sendPacket(Transmission.SERVER, new PacketTileEntity().setParams(Object3D.get(tileEntity), data));
|
|
mc.sndManager.playSoundFX("random.click", 1.0F, 1.0F);
|
|
}
|
|
}
|
|
|
|
@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("Output", 124, 73, 0x404040);
|
|
fontRenderer.drawString("Dump", 21, 73, 0x404040);
|
|
|
|
if(xAxis >= 165 && xAxis <= 169 && yAxis >= 17 && yAxis <= 69)
|
|
{
|
|
drawCreativeTabHoveringText(MekanismUtils.getEnergyDisplay(tileEntity.getEnergy()), xAxis, yAxis);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
protected void drawGuiContainerBackgroundLayer(float par1, int par2, int par3)
|
|
{
|
|
mc.renderEngine.bindTexture(MekanismUtils.getResource(ResourceType.GUI, "GuiElectrolyticSeparator.png"));
|
|
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 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);
|
|
|
|
int displayInt;
|
|
|
|
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);
|
|
|
|
displayInt = tileEntity.getScaledEnergyLevel(52);
|
|
drawTexturedModalRect(guiWidth + 165, guiHeight + 17 + 52 - displayInt, 176, 52 - displayInt, 4, displayInt);
|
|
}
|
|
}
|