Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.xenocorpse.wulfenite.gui;
- import org.lwjgl.opengl.GL11;
- import com.xenocorpse.wulfenite.inventory.ContainerGrinder;
- import com.xenocorpse.wulfenite.tileentities.TileEntityGrinder;
- import net.minecraft.client.gui.inventory.GuiContainer;
- import net.minecraft.client.resources.I18n;
- import net.minecraft.entity.player.InventoryPlayer;
- import net.minecraft.util.ResourceLocation;
- import net.minecraftforge.fml.relauncher.SideOnly;
- import net.minecraftforge.fml.relauncher.Side;
- @SideOnly(Side.CLIENT)
- public class GrinderGui extends GuiContainer{
- private static final ResourceLocation furnaceGuiTextures = new ResourceLocation("textures/gui/container/furnace.png");
- private TileEntityGrinder tileFurnace;
- public GrinderGui(InventoryPlayer invPlayer, TileEntityGrinder tile) {
- super(new ContainerGrinder(invPlayer, tile));
- this.tileFurnace = tile;
- }
- protected void drawGuiContainerForegroundLayer(int par1, int par2){
- String string = this.tileFurnace.hasCustomName() ? this.tileFurnace.getName() : I18n.format(this.tileFurnace.getName(), new Object[0]);
- this.fontRendererObj.drawString(string, this.xSize / 2 - this.fontRendererObj.getStringWidth(string), 6, 4210752);
- this.fontRendererObj.drawString(I18n.format("container.inventory", new Object[0]), 8, this.ySize - 94, 4210752);
- }
- @Override
- protected void drawGuiContainerBackgroundLayer(float var1, int var2, int var3) {
- 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.tileFurnace.isBurning())
- {
- i1 = this.tileFurnace.getBurnTimeRemainingScaled(12);
- this.drawTexturedModalRect(k + 56, l + 36 + 12 - i1, 176, 12 - i1, 14, i1 + 2);
- }
- i1 = this.tileFurnace.getCookProgressScaled(24);
- this.drawTexturedModalRect(k + 79, l + 34, 176, 14, i1 + 1, 16);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment