2013-04-13 02:25:21 +02:00
|
|
|
package mekanism.client;
|
|
|
|
|
|
|
|
import mekanism.api.EnumColor;
|
2013-04-23 21:36:43 +02:00
|
|
|
import mekanism.api.IEnergizedItem;
|
2013-06-13 23:37:30 +02:00
|
|
|
import mekanism.api.Object3D;
|
2013-04-13 02:25:21 +02:00
|
|
|
import mekanism.common.ContainerElectricChest;
|
|
|
|
import mekanism.common.IElectricChest;
|
|
|
|
import mekanism.common.Mekanism;
|
2013-07-20 18:10:14 +02:00
|
|
|
import mekanism.common.MekanismUtils;
|
|
|
|
import mekanism.common.MekanismUtils.ResourceType;
|
2013-04-13 02:25:21 +02:00
|
|
|
import mekanism.common.PacketHandler;
|
2013-06-13 23:37:30 +02:00
|
|
|
import mekanism.common.PacketHandler.Transmission;
|
2013-04-13 02:25:21 +02:00
|
|
|
import mekanism.common.TileEntityElectricChest;
|
2013-06-13 23:37:30 +02:00
|
|
|
import mekanism.common.network.PacketElectricChest;
|
|
|
|
import mekanism.common.network.PacketElectricChest.ElectricChestPacketType;
|
2013-04-13 02:25:21 +02:00
|
|
|
import net.minecraft.client.gui.GuiButton;
|
|
|
|
import net.minecraft.client.gui.inventory.GuiContainer;
|
|
|
|
import net.minecraft.entity.player.InventoryPlayer;
|
|
|
|
import net.minecraft.inventory.IInventory;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
|
2013-04-23 21:36:43 +02:00
|
|
|
import org.lwjgl.opengl.GL11;
|
|
|
|
|
2013-07-31 23:00:30 +02:00
|
|
|
import universalelectricity.core.electricity.ElectricityDisplay;
|
|
|
|
import universalelectricity.core.electricity.ElectricityDisplay.ElectricUnit;
|
|
|
|
|
2013-04-23 21:36:43 +02:00
|
|
|
import cpw.mods.fml.client.FMLClientHandler;
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
|
|
|
|
2013-04-13 16:33:37 +02:00
|
|
|
@SideOnly(Side.CLIENT)
|
2013-04-13 02:25:21 +02:00
|
|
|
public class GuiElectricChest extends GuiContainer
|
|
|
|
{
|
|
|
|
public TileEntityElectricChest tileEntity;
|
|
|
|
public IInventory itemInventory;
|
|
|
|
public boolean isBlock;
|
|
|
|
|
|
|
|
public GuiElectricChest(InventoryPlayer inventory, TileEntityElectricChest tentity)
|
|
|
|
{
|
|
|
|
super(new ContainerElectricChest(inventory, tentity, null, true));
|
2013-04-19 21:43:00 +02:00
|
|
|
|
2013-04-13 02:25:21 +02:00
|
|
|
xSize+=26;
|
|
|
|
ySize+=64;
|
|
|
|
tileEntity = tentity;
|
|
|
|
isBlock = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public GuiElectricChest(InventoryPlayer inventory, IInventory inv)
|
|
|
|
{
|
|
|
|
super(new ContainerElectricChest(inventory, null, inv, false));
|
2013-04-19 21:43:00 +02:00
|
|
|
|
2013-04-13 02:25:21 +02:00
|
|
|
xSize+=26;
|
|
|
|
ySize+=64;
|
|
|
|
itemInventory = inv;
|
|
|
|
isBlock = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onGuiClosed()
|
|
|
|
{
|
|
|
|
super.onGuiClosed();
|
|
|
|
|
|
|
|
if(!isBlock)
|
|
|
|
{
|
|
|
|
mc.sndManager.playSoundFX("random.chestclosed", 1.0F, 1.0F);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void initGui()
|
|
|
|
{
|
|
|
|
super.initGui();
|
|
|
|
|
|
|
|
int guiWidth = (width - xSize) / 2;
|
|
|
|
int guiHeight = (height - ySize) / 2;
|
|
|
|
|
|
|
|
buttonList.clear();
|
|
|
|
buttonList.add(new GuiButton(0, guiWidth + 93, guiHeight + 4, 76, 20, "Edit Password"));
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void actionPerformed(GuiButton guibutton)
|
|
|
|
{
|
|
|
|
if(guibutton.id == 0)
|
|
|
|
{
|
|
|
|
if(isBlock)
|
|
|
|
{
|
|
|
|
mc.thePlayer.openGui(Mekanism.instance, 20, mc.theWorld, tileEntity.xCoord, tileEntity.yCoord, tileEntity.zCoord);
|
|
|
|
}
|
|
|
|
else {
|
2013-04-19 21:43:00 +02:00
|
|
|
FMLClientHandler.instance().displayGuiScreen(mc.thePlayer, new GuiPasswordModify(mc.thePlayer.getCurrentEquippedItem()));
|
2013-04-13 02:25:21 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2013-07-31 23:00:30 +02:00
|
|
|
protected void drawGuiContainerForegroundLayer(int mouseX, int mouseY)
|
2013-04-13 02:25:21 +02:00
|
|
|
{
|
2013-07-31 23:00:30 +02:00
|
|
|
int xAxis = (mouseX - (width - xSize) / 2);
|
|
|
|
int yAxis = (mouseY - (height - ySize) / 2);
|
|
|
|
|
2013-04-13 02:25:21 +02:00
|
|
|
fontRenderer.drawString("Electric Chest", 8, 6, 0x404040);
|
|
|
|
fontRenderer.drawString(getLocked() ? EnumColor.DARK_RED + "Locked" : EnumColor.BRIGHT_GREEN + "Unlocked", 97, 137, 0x404040);
|
|
|
|
fontRenderer.drawString("Inventory", 8, (ySize - 96) + 2, 0x404040);
|
2013-07-31 23:00:30 +02:00
|
|
|
|
|
|
|
if(xAxis >= 180 && xAxis <= 184 && yAxis >= 32 && yAxis <= 84)
|
|
|
|
{
|
|
|
|
drawCreativeTabHoveringText(ElectricityDisplay.getDisplayShort((float)(getEnergy()*Mekanism.TO_UE), ElectricUnit.JOULES), xAxis, yAxis);
|
|
|
|
}
|
2013-04-13 02:25:21 +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 <= 197 && yAxis >= 88 && yAxis <= 106)
|
|
|
|
{
|
|
|
|
mc.sndManager.playSoundFX("random.click", 1.0F, 1.0F);
|
|
|
|
|
2013-06-13 23:37:30 +02:00
|
|
|
if(isBlock)
|
2013-04-13 02:25:21 +02:00
|
|
|
{
|
2013-06-15 00:25:09 +02:00
|
|
|
PacketHandler.sendPacket(Transmission.SERVER, new PacketElectricChest().setParams(ElectricChestPacketType.LOCK, !getLocked(), true, Object3D.get(tileEntity)));
|
2013-06-13 23:37:30 +02:00
|
|
|
}
|
|
|
|
else {
|
2013-06-15 00:25:09 +02:00
|
|
|
PacketHandler.sendPacket(Transmission.SERVER, new PacketElectricChest().setParams(ElectricChestPacketType.LOCK, !getLocked(), false));
|
2013-06-13 23:37:30 +02:00
|
|
|
|
2013-04-19 21:43:00 +02:00
|
|
|
ItemStack stack = mc.thePlayer.getCurrentEquippedItem();
|
2013-04-13 02:25:21 +02:00
|
|
|
((IElectricChest)stack.getItem()).setLocked(stack, !getLocked());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void drawGuiContainerBackgroundLayer(float par1, int par2, int par3)
|
|
|
|
{
|
2013-07-20 18:10:14 +02:00
|
|
|
mc.renderEngine.func_110577_a(MekanismUtils.getResource(ResourceType.GUI, "GuiElectricChest.png"));
|
2013-04-13 02:25:21 +02:00
|
|
|
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 xAxis = (par2 - (width - xSize) / 2);
|
|
|
|
int yAxis = (par3 - (height - ySize) / 2);
|
|
|
|
|
|
|
|
if(xAxis >= 179 && xAxis <= 197 && yAxis >= 88 && yAxis <= 106)
|
|
|
|
{
|
|
|
|
drawTexturedModalRect(guiWidth + 179, guiHeight + 88, 176 + 26, 52, 18, 18);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
drawTexturedModalRect(guiWidth + 179, guiHeight + 88, 176 + 26, 70, 18, 18);
|
|
|
|
}
|
|
|
|
|
|
|
|
int displayInt = getScale();
|
|
|
|
drawTexturedModalRect(guiWidth + 180, guiHeight + 32 + 52 - displayInt, 176 + 26, 52 - displayInt, 4, displayInt);
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean getLocked()
|
|
|
|
{
|
|
|
|
if(isBlock)
|
|
|
|
{
|
|
|
|
return tileEntity.locked;
|
|
|
|
}
|
|
|
|
else {
|
2013-04-19 21:43:00 +02:00
|
|
|
ItemStack stack = mc.thePlayer.getCurrentEquippedItem();
|
2013-04-13 02:25:21 +02:00
|
|
|
return ((IElectricChest)stack.getItem()).getLocked(stack);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getScale()
|
|
|
|
{
|
|
|
|
if(isBlock)
|
|
|
|
{
|
|
|
|
return tileEntity.getScaledEnergyLevel(52);
|
|
|
|
}
|
|
|
|
else {
|
2013-04-19 21:43:00 +02:00
|
|
|
ItemStack stack = mc.thePlayer.getCurrentEquippedItem();
|
2013-04-23 21:36:43 +02:00
|
|
|
return (int)(((IEnergizedItem)stack.getItem()).getEnergy(stack)*52 / ((IEnergizedItem)stack.getItem()).getMaxEnergy(stack));
|
2013-04-13 02:25:21 +02:00
|
|
|
}
|
|
|
|
}
|
2013-07-31 23:00:30 +02:00
|
|
|
|
|
|
|
public double getEnergy()
|
|
|
|
{
|
|
|
|
if(isBlock)
|
|
|
|
{
|
|
|
|
return tileEntity.getEnergy();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
ItemStack stack = mc.thePlayer.getCurrentEquippedItem();
|
|
|
|
return ((IEnergizedItem)stack.getItem()).getEnergy(stack);
|
|
|
|
}
|
|
|
|
}
|
2013-04-13 02:25:21 +02:00
|
|
|
}
|