2013-08-26 18:49:32 -04:00
|
|
|
package mekanism.generators.client.gui;
|
2012-10-28 18:18:23 -04:00
|
|
|
|
2013-08-26 18:49:32 -04:00
|
|
|
import mekanism.client.gui.GuiMekanism;
|
|
|
|
import mekanism.client.gui.GuiRedstoneControl;
|
2013-08-26 18:57:08 -04:00
|
|
|
import mekanism.common.util.MekanismUtils;
|
|
|
|
import mekanism.common.util.MekanismUtils.ResourceType;
|
2013-08-26 18:49:32 -04:00
|
|
|
import mekanism.generators.common.inventory.container.ContainerSolarGenerator;
|
2014-01-07 20:55:50 -05:00
|
|
|
import mekanism.generators.common.tile.TileEntitySolarGenerator;
|
2012-12-20 16:53:39 -05:00
|
|
|
import net.minecraft.entity.player.InventoryPlayer;
|
2012-10-28 18:18:23 -04:00
|
|
|
|
2013-08-26 18:28:55 -04:00
|
|
|
import org.lwjgl.opengl.GL11;
|
2013-04-13 10:33:37 -04:00
|
|
|
|
2013-08-26 18:28:55 -04:00
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
2012-11-25 10:45:00 -05:00
|
|
|
|
2013-04-13 10:33:37 -04:00
|
|
|
@SideOnly(Side.CLIENT)
|
2013-08-26 18:28:55 -04:00
|
|
|
public class GuiSolarGenerator extends GuiMekanism
|
2012-10-28 18:18:23 -04:00
|
|
|
{
|
2012-11-15 15:04:12 -05:00
|
|
|
public TileEntitySolarGenerator tileEntity;
|
2012-10-28 18:18:23 -04:00
|
|
|
|
2012-11-15 15:04:12 -05:00
|
|
|
public GuiSolarGenerator(InventoryPlayer inventory, TileEntitySolarGenerator tentity)
|
2012-10-28 18:18:23 -04:00
|
|
|
{
|
2012-11-15 15:04:12 -05:00
|
|
|
super(new ContainerSolarGenerator(inventory, tentity));
|
2012-10-28 18:18:23 -04:00
|
|
|
tileEntity = tentity;
|
2013-08-26 18:28:55 -04:00
|
|
|
guiElements.add(new GuiRedstoneControl(this, tileEntity, MekanismUtils.getResource(ResourceType.GUI, "GuiSolarGenerator.png")));
|
2012-10-28 18:18:23 -04:00
|
|
|
}
|
|
|
|
|
2012-11-06 10:44:14 -05:00
|
|
|
@Override
|
2013-05-19 18:43:01 -04:00
|
|
|
protected void drawGuiContainerForegroundLayer(int mouseX, int mouseY)
|
2012-10-28 18:18:23 -04:00
|
|
|
{
|
2013-08-26 18:28:55 -04:00
|
|
|
super.drawGuiContainerForegroundLayer(mouseX, mouseY);
|
|
|
|
|
2013-05-19 18:43:01 -04:00
|
|
|
int xAxis = (mouseX - (width - xSize) / 2);
|
|
|
|
int yAxis = (mouseY - (height - ySize) / 2);
|
|
|
|
|
2013-11-30 00:28:02 -05:00
|
|
|
fontRenderer.drawString(tileEntity.getInvName(), !tileEntity.fullName.contains("Advanced") ? 45 : 30, 6, 0x404040);
|
|
|
|
fontRenderer.drawString(MekanismUtils.localize("container.inventory"), 8, (ySize - 96) + 2, 0x404040);
|
2013-11-22 20:58:49 -05:00
|
|
|
fontRenderer.drawString(MekanismUtils.getEnergyDisplay(tileEntity.getEnergy()), 51, 26, 0x00CD00);
|
2013-11-30 00:28:02 -05:00
|
|
|
fontRenderer.drawString(MekanismUtils.localize("gui.solarGenerator.sun") + ": " + tileEntity.seesSun, 51, 35, 0x00CD00);
|
|
|
|
fontRenderer.drawString(MekanismUtils.localize("gui.out") + ": " + MekanismUtils.getEnergyDisplay(tileEntity.getMaxOutput()) + "/t", 51, 44, 0x00CD00);
|
2013-05-19 18:43:01 -04:00
|
|
|
|
|
|
|
if(xAxis >= 165 && xAxis <= 169 && yAxis >= 17 && yAxis <= 69)
|
|
|
|
{
|
2013-11-22 20:58:49 -05:00
|
|
|
drawCreativeTabHoveringText(MekanismUtils.getEnergyDisplay(tileEntity.getEnergy()), xAxis, yAxis);
|
2013-05-19 18:43:01 -04:00
|
|
|
}
|
2012-10-28 18:18:23 -04:00
|
|
|
}
|
|
|
|
|
2012-11-06 10:44:14 -05:00
|
|
|
@Override
|
2013-08-26 18:28:55 -04:00
|
|
|
protected void drawGuiContainerBackgroundLayer(float partialTick, int mouseX, int mouseY)
|
2012-10-28 18:18:23 -04:00
|
|
|
{
|
2013-08-26 18:28:55 -04:00
|
|
|
super.drawGuiContainerBackgroundLayer(partialTick, mouseX, mouseY);
|
|
|
|
|
2013-09-28 02:59:47 +01:00
|
|
|
mc.renderEngine.bindTexture(MekanismUtils.getResource(ResourceType.GUI, "GuiSolarGenerator.png"));
|
2012-10-28 18:18:23 -04:00
|
|
|
GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
|
2013-08-02 03:16:38 -04:00
|
|
|
int guiWidth = (width - xSize) / 2;
|
|
|
|
int guiHeight = (height - ySize) / 2;
|
2012-10-28 18:18:23 -04:00
|
|
|
drawTexturedModalRect(guiWidth, guiHeight, 0, 0, xSize, ySize);
|
2013-08-02 03:16:38 -04:00
|
|
|
|
2013-08-26 18:28:55 -04:00
|
|
|
int xAxis = mouseX - guiWidth;
|
|
|
|
int yAxis = mouseY - guiHeight;
|
2013-08-02 03:16:38 -04:00
|
|
|
|
2012-10-28 18:18:23 -04:00
|
|
|
int displayInt;
|
|
|
|
|
|
|
|
displayInt = tileEntity.getScaledEnergyLevel(52);
|
|
|
|
drawTexturedModalRect(guiWidth + 165, guiHeight + 17 + 52 - displayInt, 176, 52 - displayInt, 4, displayInt);
|
2012-11-15 15:04:12 -05:00
|
|
|
|
|
|
|
drawTexturedModalRect(guiWidth + 20, guiHeight + 37, 176, (tileEntity.seesSun ? 52 : 64), 12, 12);
|
2012-10-28 18:18:23 -04:00
|
|
|
}
|
|
|
|
}
|