Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package tutorial.generic;
- import cpw.mods.fml.relauncher.Side;
- import cpw.mods.fml.relauncher.SideOnly;
- import net.minecraft.client.gui.inventory.GuiContainer;
- import net.minecraft.client.resources.I18n;
- import net.minecraft.entity.player.InventoryPlayer;
- import net.minecraft.inventory.ContainerFurnace;
- import net.minecraft.tileentity.TileEntityFurnace;
- import net.minecraft.util.ResourceLocation;
- import org.lwjgl.opengl.GL11;
- @SideOnly(Side.CLIENT)
- public class GuiEnderFurnace extends GuiContainer
- {
- private static final ResourceLocation furnaceGuiTextures = new ResourceLocation("endermod:textures/gui/container/enderfurnace.png");
- private TileEntityEnderFurnace tileEnderFurnace;
- private static final String __OBFID = "CL_00000758";
- public GuiEnderFurnace(InventoryPlayer p_i1091_1_, TileEntityEnderFurnace p_i1091_2_)
- {
- super(new ContainerEnderFurnace(p_i1091_1_, p_i1091_2_));
- this.tileEnderFurnace = p_i1091_2_;
- }
- /**
- * Draw the foreground layer for the GuiContainer (everything in front of the items)
- */
- protected void drawGuiContainerForegroundLayer(int p_146979_1_, int p_146979_2_)
- {
- String s = this.tileEnderFurnace.hasCustomInventoryName() ? this.tileEnderFurnace.getInventoryName() : I18n.format(this.tileEnderFurnace.getInventoryName(), new Object[0]);
- this.fontRendererObj.drawString(s, this.xSize / 2 - this.fontRendererObj.getStringWidth(s) / 2, 6, 4210752);
- this.fontRendererObj.drawString(I18n.format("container.inventory", new Object[0]), 8, this.ySize - 96 + 2, 4210752);
- }
- @Override
- protected void drawGuiContainerBackgroundLayer(float p_146976_1_, int p_146976_2_, int p_146976_3_)
- {
- GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
- this.mc.getTextureManager().bindTexture(furnaceGuiTextures);
- 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;
- if (this.tileEnderFurnace.isBurning())
- {
- i1 = this.tileEnderFurnace.getBurnTimeRemainingScaled(13);
- this.drawTexturedModalRect(k + 56, l + 36 + 12 - i1, 176, 12 - i1, 14, i1 + 1);
- }
- i1 = this.tileEnderFurnace.getCookProgressScaled(24);
- this.drawTexturedModalRect(k + 79, l + 34, 176, 14, i1 + 1, 16);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment