2012-12-20 22:53:39 +01:00
|
|
|
package mekanism.client;
|
|
|
|
|
2013-02-27 02:21:30 +01:00
|
|
|
import java.util.ArrayList;
|
|
|
|
|
2013-06-13 23:37:30 +02:00
|
|
|
import mekanism.api.Object3D;
|
2012-12-20 22:53:39 +01:00
|
|
|
import mekanism.common.ContainerMetallurgicInfuser;
|
2013-07-20 18:10:14 +02:00
|
|
|
import mekanism.common.MekanismUtils;
|
2012-12-20 22:53:39 +01:00
|
|
|
import mekanism.common.PacketHandler;
|
2013-07-20 18:10:14 +02:00
|
|
|
import mekanism.common.MekanismUtils.ResourceType;
|
2013-06-13 23:37:30 +02:00
|
|
|
import mekanism.common.PacketHandler.Transmission;
|
2013-06-29 01:43:45 +02:00
|
|
|
import mekanism.common.TileEntityMetallurgicInfuser;
|
2013-06-13 23:37:30 +02:00
|
|
|
import mekanism.common.network.PacketTileEntity;
|
2012-12-20 22:53:39 +01:00
|
|
|
import net.minecraft.client.gui.inventory.GuiContainer;
|
|
|
|
import net.minecraft.entity.player.InventoryPlayer;
|
2013-07-20 18:10:14 +02:00
|
|
|
import net.minecraft.util.ResourceLocation;
|
2012-12-20 22:53:39 +01:00
|
|
|
|
|
|
|
import org.lwjgl.opengl.GL11;
|
|
|
|
|
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-12-20 22:53:39 +01:00
|
|
|
public class GuiMetallurgicInfuser extends GuiContainer
|
|
|
|
{
|
|
|
|
public TileEntityMetallurgicInfuser tileEntity;
|
|
|
|
|
|
|
|
private int guiWidth;
|
|
|
|
private int guiHeight;
|
|
|
|
|
|
|
|
public GuiMetallurgicInfuser(InventoryPlayer inventory, TileEntityMetallurgicInfuser tentity)
|
|
|
|
{
|
|
|
|
super(new ContainerMetallurgicInfuser(inventory, tentity));
|
2013-02-14 19:26:13 +01:00
|
|
|
xSize+=26;
|
2012-12-20 22:53:39 +01:00
|
|
|
tileEntity = tentity;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void mouseClicked(int x, int y, int button)
|
|
|
|
{
|
|
|
|
super.mouseClicked(x, y, button);
|
|
|
|
|
2013-04-13 02:25:21 +02:00
|
|
|
if(button == 0)
|
2012-12-20 22:53:39 +01:00
|
|
|
{
|
2013-04-13 02:25:21 +02:00
|
|
|
int xAxis = (x - (width - xSize) / 2);
|
|
|
|
int yAxis = (y - (height - ySize) / 2);
|
2013-02-27 02:21:30 +01:00
|
|
|
|
2013-04-13 02:25:21 +02:00
|
|
|
if(xAxis > 148 && xAxis < 168 && yAxis > 73 && yAxis < 82)
|
|
|
|
{
|
|
|
|
ArrayList data = new ArrayList();
|
|
|
|
data.add(0);
|
|
|
|
|
2013-06-15 00:25:09 +02:00
|
|
|
PacketHandler.sendPacket(Transmission.SERVER, new PacketTileEntity().setParams(Object3D.get(tileEntity), data));
|
2013-04-13 02:25:21 +02:00
|
|
|
mc.sndManager.playSoundFX("random.click", 1.0F, 1.0F);
|
|
|
|
}
|
2012-12-20 22:53:39 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2013-05-20 00:43:01 +02:00
|
|
|
protected void drawGuiContainerForegroundLayer(int mouseX, int mouseY)
|
2012-12-20 22:53:39 +01:00
|
|
|
{
|
2013-05-20 00:43:01 +02:00
|
|
|
int xAxis = (mouseX - (width - xSize) / 2);
|
|
|
|
int yAxis = (mouseY - (height - ySize) / 2);
|
|
|
|
|
2012-12-20 22:53:39 +01:00
|
|
|
fontRenderer.drawString(tileEntity.fullName, 45, 6, 0x404040);
|
2013-02-14 19:26:13 +01: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-27 00:16:21 +02:00
|
|
|
drawCreativeTabHoveringText(ElectricityDisplay.getDisplayShort((float)tileEntity.electricityStored, ElectricUnit.JOULES), xAxis, yAxis);
|
2013-05-20 00:43:01 +02:00
|
|
|
}
|
2012-12-20 22:53:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@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, "GuiMetallurgicInfuser.png"));
|
2012-12-20 22:53:39 +01:00
|
|
|
GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
|
|
|
|
guiWidth = (width - xSize) / 2;
|
|
|
|
guiHeight = (height - ySize) / 2;
|
|
|
|
drawTexturedModalRect(guiWidth, guiHeight, 0, 0, xSize, ySize);
|
|
|
|
|
|
|
|
int displayInt;
|
|
|
|
|
|
|
|
displayInt = tileEntity.getScaledProgress(32);
|
2013-06-02 03:33:19 +02:00
|
|
|
drawTexturedModalRect(guiWidth + 72, guiHeight + 47, 176 + 26, 52, displayInt + 1, 8);
|
2012-12-20 22:53:39 +01:00
|
|
|
|
|
|
|
displayInt = tileEntity.getScaledEnergyLevel(52);
|
2013-02-14 19:26:13 +01:00
|
|
|
drawTexturedModalRect(guiWidth + 165, guiHeight + 17 + 52 - displayInt, 176 + 26, 52 - displayInt, 4, displayInt);
|
|
|
|
|
|
|
|
displayInt = tileEntity.getScaledUpgradeProgress(14);
|
2013-06-02 03:33:19 +02:00
|
|
|
drawTexturedModalRect(guiWidth + 180, guiHeight + 30, 176 + 26, 60, 10, displayInt);
|
|
|
|
|
|
|
|
if(tileEntity.type != null)
|
|
|
|
{
|
|
|
|
displayInt = tileEntity.getScaledInfuseLevel(52);
|
2013-07-20 18:10:14 +02:00
|
|
|
mc.renderEngine.func_110577_a(tileEntity.type.texture);
|
2013-06-02 03:33:19 +02:00
|
|
|
drawTexturedModalRect(guiWidth + 7, guiHeight + 17 + 52 - displayInt, tileEntity.type.texX, tileEntity.type.texY + 52 - displayInt, 4, displayInt);
|
|
|
|
}
|
2012-12-20 22:53:39 +01:00
|
|
|
}
|
|
|
|
}
|