2012-12-19 21:23:55 +01:00
|
|
|
package mekanism.client;
|
|
|
|
|
2013-07-07 03:33:08 +02:00
|
|
|
import mekanism.api.Object3D;
|
2013-03-20 18:58:36 +01:00
|
|
|
import mekanism.common.ContainerFactory;
|
2013-03-25 17:00:45 +01:00
|
|
|
import mekanism.common.IFactory.RecipeType;
|
2013-07-07 03:33:08 +02:00
|
|
|
import mekanism.common.PacketHandler;
|
|
|
|
import mekanism.common.PacketHandler.Transmission;
|
2013-04-01 01:12:10 +02:00
|
|
|
import mekanism.common.Tier.FactoryTier;
|
2013-07-07 03:33:08 +02:00
|
|
|
import mekanism.common.TileEntityFactory;
|
|
|
|
import mekanism.common.network.PacketRemoveUpgrade;
|
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-12-19 21:23:55 +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)
|
2013-03-20 16:14:26 +01:00
|
|
|
public class GuiFactory extends GuiContainer
|
2012-12-19 21:23:55 +01:00
|
|
|
{
|
2013-03-20 16:14:26 +01:00
|
|
|
public TileEntityFactory tileEntity;
|
2013-08-02 09:16:38 +02:00
|
|
|
|
|
|
|
public GuiRedstoneControl redstoneControl;
|
2012-12-19 21:23:55 +01:00
|
|
|
|
2013-03-20 16:14:26 +01:00
|
|
|
public GuiFactory(InventoryPlayer inventory, TileEntityFactory tentity)
|
2012-12-19 21:23:55 +01:00
|
|
|
{
|
2013-03-20 18:58:36 +01:00
|
|
|
super(new ContainerFactory(inventory, tentity));
|
2013-02-14 19:26:13 +01:00
|
|
|
xSize+=26;
|
2012-12-19 21:23:55 +01:00
|
|
|
tileEntity = tentity;
|
2013-08-02 09:16:38 +02:00
|
|
|
redstoneControl = new GuiRedstoneControl(this, tileEntity, tileEntity.tier.guiLocation);
|
2012-12-19 21:23:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2013-05-20 00:43:01 +02:00
|
|
|
protected void drawGuiContainerForegroundLayer(int mouseX, int mouseY)
|
2012-12-19 21:23:55 +01:00
|
|
|
{
|
2013-05-20 00:43:01 +02:00
|
|
|
int xAxis = (mouseX - (width - xSize) / 2);
|
|
|
|
int yAxis = (mouseY - (height - ySize) / 2);
|
|
|
|
|
2013-03-20 16:14:26 +01:00
|
|
|
fontRenderer.drawString(tileEntity.fullName, 48, 4, 0x404040);
|
2012-12-19 21:23:55 +01:00
|
|
|
fontRenderer.drawString("Inventory", 8, (ySize - 93) + 2, 0x404040);
|
2013-03-20 16:14:26 +01:00
|
|
|
fontRenderer.drawString(RecipeType.values()[tileEntity.recipeType].getName(), 124, (ySize - 93) + 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
|
|
|
}
|
2013-07-07 03:33:08 +02:00
|
|
|
|
|
|
|
if(xAxis >= 179 && xAxis <= 198 && yAxis >= 47 && yAxis <= 54)
|
|
|
|
{
|
|
|
|
drawCreativeTabHoveringText("Remove speed upgrade", xAxis, yAxis);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(xAxis >= 179 && xAxis <= 198 && yAxis >= 57 && yAxis <= 64)
|
|
|
|
{
|
|
|
|
drawCreativeTabHoveringText("Remove energy upgrade", xAxis, yAxis);
|
|
|
|
}
|
2013-08-02 09:16:38 +02:00
|
|
|
|
|
|
|
redstoneControl.renderForeground(xAxis, yAxis);
|
2012-12-19 21:23:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2013-08-02 09:16:38 +02:00
|
|
|
protected void drawGuiContainerBackgroundLayer(float par1, int mouseX, int mouseY)
|
2012-12-19 21:23:55 +01:00
|
|
|
{
|
2013-07-20 18:10:14 +02:00
|
|
|
mc.renderEngine.func_110577_a(tileEntity.tier.guiLocation);
|
2012-12-19 21:23:55 +01: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);
|
|
|
|
|
2013-08-02 09:16:38 +02:00
|
|
|
int xAxis = (mouseX - (width - xSize) / 2);
|
|
|
|
int yAxis = (mouseY - (height - ySize) / 2);
|
|
|
|
|
2012-12-19 21:23:55 +01:00
|
|
|
int displayInt;
|
|
|
|
|
|
|
|
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);
|
|
|
|
drawTexturedModalRect(guiWidth + 180, guiHeight + 30, 176 + 26, 72, 10, displayInt);
|
2012-12-19 21:23:55 +01:00
|
|
|
|
2013-04-28 21:23:08 +02:00
|
|
|
displayInt = tileEntity.getScaledRecipeProgress(15);
|
|
|
|
drawTexturedModalRect(guiWidth + 181, guiHeight + 94, 176 + 26, 86, 10, displayInt);
|
|
|
|
|
2013-03-20 16:14:26 +01:00
|
|
|
if(tileEntity.tier == FactoryTier.BASIC)
|
2012-12-19 21:23:55 +01:00
|
|
|
{
|
|
|
|
for(int i = 0; i < tileEntity.tier.processes; i++)
|
|
|
|
{
|
2013-08-02 09:16:38 +02:00
|
|
|
int xPos = 59 + (i*38);
|
2012-12-19 21:23:55 +01:00
|
|
|
|
|
|
|
displayInt = tileEntity.getScaledProgress(20, i);
|
2013-08-02 09:16:38 +02:00
|
|
|
drawTexturedModalRect(guiWidth + xPos, guiHeight + 33, 176 + 26, 52, 8, displayInt);
|
2012-12-19 21:23:55 +01:00
|
|
|
}
|
|
|
|
}
|
2013-03-20 16:14:26 +01:00
|
|
|
else if(tileEntity.tier == FactoryTier.ADVANCED)
|
2012-12-19 21:23:55 +01:00
|
|
|
{
|
|
|
|
for(int i = 0; i < tileEntity.tier.processes; i++)
|
|
|
|
{
|
2013-08-02 09:16:38 +02:00
|
|
|
int xPos = 39 + (i*26);
|
2012-12-19 21:23:55 +01:00
|
|
|
|
|
|
|
displayInt = tileEntity.getScaledProgress(20, i);
|
2013-08-02 09:16:38 +02:00
|
|
|
drawTexturedModalRect(guiWidth + xPos, guiHeight + 33, 176 + 26, 52, 8, displayInt);
|
2012-12-19 21:23:55 +01:00
|
|
|
}
|
|
|
|
}
|
2013-03-20 16:14:26 +01:00
|
|
|
else if(tileEntity.tier == FactoryTier.ELITE)
|
2012-12-19 21:23:55 +01:00
|
|
|
{
|
|
|
|
for(int i = 0; i < tileEntity.tier.processes; i++)
|
|
|
|
{
|
2013-08-02 09:16:38 +02:00
|
|
|
int xPos = 33 + (i*19);
|
2012-12-19 21:23:55 +01:00
|
|
|
|
|
|
|
displayInt = tileEntity.getScaledProgress(20, i);
|
2013-08-02 09:16:38 +02:00
|
|
|
drawTexturedModalRect(guiWidth + xPos, guiHeight + 33, 176 + 26, 52, 8, displayInt);
|
2012-12-19 21:23:55 +01:00
|
|
|
}
|
|
|
|
}
|
2013-08-02 09:16:38 +02:00
|
|
|
|
|
|
|
redstoneControl.renderBackground(xAxis, yAxis, guiWidth, guiHeight);
|
2012-12-19 21:23:55 +01:00
|
|
|
}
|
2013-07-07 03:33:08 +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);
|
|
|
|
|
2013-08-02 09:16:38 +02:00
|
|
|
redstoneControl.mouseClicked(xAxis, yAxis);
|
|
|
|
|
2013-07-07 03:33:08 +02:00
|
|
|
if(xAxis >= 179 && xAxis <= 198 && yAxis >= 47 && yAxis <= 54)
|
|
|
|
{
|
|
|
|
mc.sndManager.playSoundFX("random.click", 1.0F, 1.0F);
|
|
|
|
PacketHandler.sendPacket(Transmission.SERVER, new PacketRemoveUpgrade().setParams(Object3D.get(tileEntity), (byte)0));
|
|
|
|
}
|
|
|
|
|
|
|
|
if(xAxis >= 179 && xAxis <= 198 && yAxis >= 57 && yAxis <= 64)
|
|
|
|
{
|
|
|
|
mc.sndManager.playSoundFX("random.click", 1.0F, 1.0F);
|
|
|
|
PacketHandler.sendPacket(Transmission.SERVER, new PacketRemoveUpgrade().setParams(Object3D.get(tileEntity), (byte)1));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-12-19 21:23:55 +01:00
|
|
|
}
|