| package mekanism.client.gui; |
| |
| import mekanism.common.inventory.container.ContainerGasTank; |
| import mekanism.common.tileentity.TileEntityGasTank; |
| import mekanism.common.util.MekanismUtils; |
| import mekanism.common.util.MekanismUtils.ResourceType; |
| import net.minecraft.entity.player.InventoryPlayer; |
| import net.minecraft.util.StatCollector; |
| |
| import org.lwjgl.opengl.GL11; |
| |
| import cpw.mods.fml.relauncher.Side; |
| import cpw.mods.fml.relauncher.SideOnly; |
| |
| @SideOnly(Side.CLIENT) |
| public class GuiGasTank extends GuiMekanism |
| { |
| public TileEntityGasTank tileEntity; |
| |
| public GuiGasTank(InventoryPlayer inventory, TileEntityGasTank tentity) |
| { |
| super(new ContainerGasTank(inventory, tentity)); |
| tileEntity = tentity; |
| guiElements.add(new GuiRedstoneControl(this, tileEntity, MekanismUtils.getResource(ResourceType.GUI, "GuiGasTank.png"))); |
| } |
| |
| @Override |
| protected void drawGuiContainerForegroundLayer(int mouseX, int mouseY) |
| { |
| super.drawGuiContainerForegroundLayer(mouseX, mouseY); |
| |
| int xAxis = (mouseX - (width - xSize) / 2); |
| int yAxis = (mouseY - (height - ySize) / 2); |
| |
| String capacityInfo = tileEntity.gasStored + "/" + tileEntity.MAX_GAS; |
| |
| fontRenderer.drawString("Gas Tank", 43, 6, 0x404040); |
| fontRenderer.drawString(capacityInfo, 45, 40, 0x404040); |
| fontRenderer.drawString("Gas: " + tileEntity.gasType.name, 45, 49, 0x404040); |
| fontRenderer.drawString(StatCollector.translateToLocal("container.inventory"), 8, ySize - 96 + 2, 0x404040); |
| } |
| |
| @Override |
| protected void drawGuiContainerBackgroundLayer(float partialTick, int mouseX, int mouseY) |
| { |
| super.drawGuiContainerBackgroundLayer(partialTick, mouseX, mouseY); |
| |
| mc.renderEngine.bindTexture(MekanismUtils.getResource(ResourceType.GUI, "GuiGasTank.png")); |
| 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 = mouseX - guiWidth; |
| int yAxis = mouseY - guiHeight; |
| |
| int scale = (int)(((double)tileEntity.gasStored / tileEntity.MAX_GAS) * 72); |
| drawTexturedModalRect(guiWidth + 65, guiHeight + 17, 176, 0, scale, 20); |
| } |
| } |