You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			47 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Java
		
	
			
		
		
	
	
			47 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Java
		
	
package net.minecraft.client.gui;
 | 
						|
 | 
						|
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.ContainerHopper;
 | 
						|
import net.minecraft.inventory.IInventory;
 | 
						|
import net.minecraft.util.ResourceLocation;
 | 
						|
import org.lwjgl.opengl.GL11;
 | 
						|
 | 
						|
@SideOnly(Side.CLIENT)
 | 
						|
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_));
 | 
						|
        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)
 | 
						|
     */
 | 
						|
    protected void drawGuiContainerForegroundLayer(int mouseX, int mouseY)
 | 
						|
    {
 | 
						|
        this.fontRendererObj.drawString(this.field_147083_w.hasCustomInventoryName() ? this.field_147083_w.getInventoryName() : I18n.format(this.field_147083_w.getInventoryName(), new Object[0]), 8, 6, 4210752);
 | 
						|
        this.fontRendererObj.drawString(this.field_147084_v.hasCustomInventoryName() ? this.field_147084_v.getInventoryName() : I18n.format(this.field_147084_v.getInventoryName(), new Object[0]), 8, this.ySize - 96 + 2, 4210752);
 | 
						|
    }
 | 
						|
 | 
						|
    protected void drawGuiContainerBackgroundLayer(float partialTicks, int mouseX, int mouseY)
 | 
						|
    {
 | 
						|
        GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
 | 
						|
        this.mc.getTextureManager().bindTexture(field_147085_u);
 | 
						|
        int k = (this.width - this.xSize) / 2;
 | 
						|
        int l = (this.height - this.ySize) / 2;
 | 
						|
        this.drawTexturedModalRect(k, l, 0, 0, this.xSize, this.ySize);
 | 
						|
    }
 | 
						|
} |