package net.minecraft.client.gui.inventory; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; import net.minecraft.entity.player.InventoryPlayer; import net.minecraft.inventory.ContainerBrewingStand; import net.minecraft.tileentity.TileEntityBrewingStand; import net.minecraft.util.StatCollector; import org.lwjgl.opengl.GL11; @SideOnly(Side.CLIENT) public class GuiBrewingStand extends GuiContainer { private TileEntityBrewingStand brewingStand; public GuiBrewingStand(InventoryPlayer par1InventoryPlayer, TileEntityBrewingStand par2TileEntityBrewingStand) { super(new ContainerBrewingStand(par1InventoryPlayer, par2TileEntityBrewingStand)); this.brewingStand = par2TileEntityBrewingStand; } /** * Draw the foreground layer for the GuiContainer (everything in front of the items) */ protected void drawGuiContainerForegroundLayer(int par1, int par2) { String s = this.brewingStand.isInvNameLocalized() ? this.brewingStand.getInvName() : StatCollector.translateToLocal(this.brewingStand.getInvName()); this.fontRenderer.drawString(s, this.xSize / 2 - this.fontRenderer.getStringWidth(s) / 2, 6, 4210752); this.fontRenderer.drawString(StatCollector.translateToLocal("container.inventory"), 8, this.ySize - 96 + 2, 4210752); } /** * Draw the background layer for the GuiContainer (everything behind the items) */ protected void drawGuiContainerBackgroundLayer(float par1, int par2, int par3) { GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F); this.mc.renderEngine.bindTexture("/gui/alchemy.png"); int k = (this.width - this.xSize) / 2; int l = (this.height - this.ySize) / 2; this.drawTexturedModalRect(k, l, 0, 0, this.xSize, this.ySize); int i1 = this.brewingStand.getBrewTime(); if (i1 > 0) { int j1 = (int)(28.0F * (1.0F - (float)i1 / 400.0F)); if (j1 > 0) { this.drawTexturedModalRect(k + 97, l + 16, 176, 0, 9, j1); } int k1 = i1 / 2 % 7; switch (k1) { case 0: j1 = 29; break; case 1: j1 = 24; break; case 2: j1 = 20; break; case 3: j1 = 16; break; case 4: j1 = 11; break; case 5: j1 = 6; break; case 6: j1 = 0; } if (j1 > 0) { this.drawTexturedModalRect(k + 65, l + 14 + 29 - j1, 185, 29 - j1, 12, j1); } } } }