package net.minecraft.client.gui; import net.minecraft.client.Minecraft; import net.minecraft.client.gui.inventory.GuiContainer; import net.minecraft.client.renderer.GlStateManager; import net.minecraft.entity.player.InventoryPlayer; import net.minecraft.inventory.ContainerHopper; import net.minecraft.inventory.IInventory; import net.minecraft.util.ResourceLocation; public class GuiHopper extends GuiContainer { private static final ResourceLocation field_147085_u = new ResourceLocation("textures/gui/container/hopper.png"); private IInventory field_147084_v; private IInventory field_147083_w; private static final String __OBFID = "CL_00000759"; public GuiHopper(InventoryPlayer p_i1092_1_, IInventory p_i1092_2_) { super(new ContainerHopper(p_i1092_1_, p_i1092_2_, Minecraft.getMinecraft().thePlayer)); this.field_147084_v = p_i1092_1_; this.field_147083_w = p_i1092_2_; this.allowUserInput = false; this.ySize = 133; } /** * Draw the foreground layer for the GuiContainer (everything in front of the items). Args : mouseX, mouseY */ protected void drawGuiContainerForegroundLayer(int mouseX, int mouseY) { this.fontRendererObj.drawString(this.field_147083_w.getDisplayName().getUnformattedText(), 8, 6, 4210752); this.fontRendererObj.drawString(this.field_147084_v.getDisplayName().getUnformattedText(), 8, this.ySize - 96 + 2, 4210752); } /** * Args : renderPartialTicks, mouseX, mouseY */ protected void drawGuiContainerBackgroundLayer(float partialTicks, int mouseX, int mouseY) { GlStateManager.color(1.0F, 1.0F, 1.0F, 1.0F); this.mc.getTextureManager().bindTexture(field_147085_u); int var4 = (this.width - this.xSize) / 2; int var5 = (this.height - this.ySize) / 2; this.drawTexturedModalRect(var4, var5, 0, 0, this.xSize, this.ySize); } }