2013-08-27 00:49:32 +02:00
|
|
|
package mekanism.client.gui;
|
2012-08-15 22:41:41 +02:00
|
|
|
|
2014-01-10 23:42:53 +01:00
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
import mekanism.api.ListUtils;
|
|
|
|
import mekanism.client.gui.GuiEnergyInfo.IInfoHandler;
|
2013-08-27 00:49:32 +02:00
|
|
|
import mekanism.common.inventory.container.ContainerElectricMachine;
|
2014-01-08 02:55:50 +01:00
|
|
|
import mekanism.common.tile.TileEntityElectricMachine;
|
2013-11-23 02:58:49 +01:00
|
|
|
import mekanism.common.util.MekanismUtils;
|
2012-12-20 22:53:39 +01:00
|
|
|
import net.minecraft.entity.player.InventoryPlayer;
|
|
|
|
|
|
|
|
import org.lwjgl.opengl.GL11;
|
2012-08-15 22:41:41 +02:00
|
|
|
|
2013-04-13 16:33:37 +02:00
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
|
|
|
|
|
|
|
@SideOnly(Side.CLIENT)
|
2013-08-27 00:28:55 +02:00
|
|
|
public class GuiElectricMachine extends GuiMekanism
|
2012-08-15 22:41:41 +02:00
|
|
|
{
|
2012-10-17 20:46:27 +02:00
|
|
|
public TileEntityElectricMachine tileEntity;
|
2012-08-15 22:41:41 +02:00
|
|
|
|
2012-10-17 20:46:27 +02:00
|
|
|
public GuiElectricMachine(InventoryPlayer inventory, TileEntityElectricMachine tentity)
|
2012-08-15 22:41:41 +02:00
|
|
|
{
|
2013-11-30 01:11:07 +01:00
|
|
|
super(tentity, new ContainerElectricMachine(inventory, tentity));
|
2012-10-03 21:12:17 +02:00
|
|
|
tileEntity = tentity;
|
2013-08-26 02:54:34 +02:00
|
|
|
|
2013-08-27 00:28:55 +02:00
|
|
|
guiElements.add(new GuiRedstoneControl(this, tileEntity, tileEntity.guiLocation));
|
|
|
|
guiElements.add(new GuiUpgradeManagement(this, tileEntity, tileEntity.guiLocation));
|
2013-10-30 20:22:43 +01:00
|
|
|
guiElements.add(new GuiConfigurationTab(this, tileEntity, tileEntity.guiLocation));
|
2014-01-10 23:42:53 +01:00
|
|
|
guiElements.add(new GuiEnergyInfo(new IInfoHandler() {
|
|
|
|
@Override
|
|
|
|
public List<String> getInfo()
|
|
|
|
{
|
|
|
|
String multiplier = MekanismUtils.getEnergyDisplay(MekanismUtils.getEnergyPerTick(tileEntity.getSpeedMultiplier(), tileEntity.getEnergyMultiplier(), tileEntity.ENERGY_PER_TICK));
|
|
|
|
return ListUtils.asList("Using: " + multiplier + "/t", "Needed: " + MekanismUtils.getEnergyDisplay(tileEntity.getMaxEnergy()-tileEntity.getEnergy()));
|
|
|
|
}
|
|
|
|
}, this, tileEntity, tileEntity.guiLocation));
|
2012-08-15 22:41:41 +02:00
|
|
|
}
|
|
|
|
|
2012-11-06 16:44:14 +01:00
|
|
|
@Override
|
2013-05-20 00:43:01 +02:00
|
|
|
protected void drawGuiContainerForegroundLayer(int mouseX, int mouseY)
|
2013-11-27 02:11:26 +01:00
|
|
|
{
|
2013-05-20 00:43:01 +02:00
|
|
|
int xAxis = (mouseX - (width - xSize) / 2);
|
|
|
|
int yAxis = (mouseY - (height - ySize) / 2);
|
|
|
|
|
2013-11-30 18:48:22 +01:00
|
|
|
fontRenderer.drawString(tileEntity.getInvName(), 45, 6, 0x404040);
|
|
|
|
fontRenderer.drawString(MekanismUtils.localize("container.inventory"), 8, (ySize - 96) + 2, 0x404040);
|
2013-05-20 00:43:01 +02:00
|
|
|
|
|
|
|
if(xAxis >= 165 && xAxis <= 169 && yAxis >= 17 && yAxis <= 69)
|
|
|
|
{
|
2013-11-23 02:58:49 +01:00
|
|
|
drawCreativeTabHoveringText(MekanismUtils.getEnergyDisplay(tileEntity.getEnergy()), xAxis, yAxis);
|
2013-05-20 00:43:01 +02:00
|
|
|
}
|
2013-11-27 02:11:26 +01:00
|
|
|
|
|
|
|
super.drawGuiContainerForegroundLayer(mouseX, mouseY);
|
2012-08-15 22:41:41 +02:00
|
|
|
}
|
|
|
|
|
2012-11-06 16:44:14 +01:00
|
|
|
@Override
|
2013-08-27 00:28:55 +02:00
|
|
|
protected void drawGuiContainerBackgroundLayer(float partialTick, int mouseX, int mouseY)
|
2012-08-15 22:41:41 +02:00
|
|
|
{
|
2013-08-27 00:28:55 +02:00
|
|
|
super.drawGuiContainerBackgroundLayer(partialTick, mouseX, mouseY);
|
|
|
|
|
2013-09-28 03:59:47 +02:00
|
|
|
mc.renderEngine.bindTexture(tileEntity.guiLocation);
|
2012-08-15 22:41:41 +02:00
|
|
|
GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
|
2012-10-03 21:12:17 +02:00
|
|
|
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
|
|
|
|
2013-08-27 00:28:55 +02:00
|
|
|
int xAxis = mouseX - guiWidth;
|
|
|
|
int yAxis = mouseY - guiHeight;
|
2013-08-02 09:16:38 +02:00
|
|
|
|
2012-10-03 21:12:17 +02:00
|
|
|
int displayInt;
|
2012-10-02 20:39:40 +02:00
|
|
|
|
2012-10-23 15:23:23 +02:00
|
|
|
displayInt = tileEntity.getScaledEnergyLevel(52);
|
2013-08-26 02:54:34 +02:00
|
|
|
drawTexturedModalRect(guiWidth + 165, guiHeight + 17 + 52 - displayInt, 176, 7 + 52 - displayInt, 4, displayInt);
|
2012-08-15 22:41:41 +02:00
|
|
|
|
2012-10-03 21:12:17 +02:00
|
|
|
displayInt = tileEntity.getScaledProgress(24);
|
2013-08-26 02:54:34 +02:00
|
|
|
drawTexturedModalRect(guiWidth + 79, guiHeight + 39, 176, 0, displayInt + 1, 7);
|
2012-08-15 22:41:41 +02:00
|
|
|
}
|
2013-07-07 03:33:08 +02:00
|
|
|
}
|