2015-03-07 12:51:28 +01:00
|
|
|
package ellpeck.actuallyadditions.inventory;
|
2015-02-20 22:45:33 +01:00
|
|
|
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
2015-03-07 12:51:28 +01:00
|
|
|
import ellpeck.actuallyadditions.tile.TileEntityBase;
|
2015-04-19 01:50:02 +02:00
|
|
|
import ellpeck.actuallyadditions.tile.TileEntityGiantChest;
|
2015-03-29 15:29:05 +02:00
|
|
|
import ellpeck.actuallyadditions.util.AssetUtil;
|
2015-02-20 22:45:33 +01:00
|
|
|
import net.minecraft.client.gui.inventory.GuiContainer;
|
|
|
|
import net.minecraft.entity.player.InventoryPlayer;
|
|
|
|
import net.minecraft.util.ResourceLocation;
|
|
|
|
import org.lwjgl.opengl.GL11;
|
|
|
|
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public class GuiGiantChest extends GuiContainer{
|
|
|
|
|
2015-03-29 15:29:05 +02:00
|
|
|
private static final ResourceLocation resLoc = AssetUtil.getGuiLocation("guiGiantChest");
|
2015-02-20 22:45:33 +01:00
|
|
|
|
2015-04-19 01:50:02 +02:00
|
|
|
TileEntityGiantChest chest;
|
|
|
|
|
2015-02-20 22:45:33 +01:00
|
|
|
public GuiGiantChest(InventoryPlayer inventory, TileEntityBase tile){
|
|
|
|
super(new ContainerGiantChest(inventory, tile));
|
2015-04-19 01:50:02 +02:00
|
|
|
this.chest = (TileEntityGiantChest)tile;
|
2015-02-20 22:45:33 +01:00
|
|
|
|
|
|
|
this.xSize = 242;
|
2015-03-19 21:27:56 +01:00
|
|
|
this.ySize = 172+86;
|
2015-02-20 22:45:33 +01:00
|
|
|
}
|
|
|
|
|
2015-04-19 01:50:02 +02:00
|
|
|
@Override
|
|
|
|
public void drawGuiContainerForegroundLayer(int x, int y){
|
2015-05-20 22:39:43 +02:00
|
|
|
AssetUtil.displayNameString(this.fontRendererObj, xSize, -10, this.chest.getInventoryName());
|
2015-04-19 01:50:02 +02:00
|
|
|
}
|
|
|
|
|
2015-02-20 22:45:33 +01:00
|
|
|
@Override
|
|
|
|
public void drawGuiContainerBackgroundLayer(float f, int x, int y){
|
|
|
|
GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
|
|
|
|
this.mc.getTextureManager().bindTexture(resLoc);
|
2015-03-19 21:27:56 +01:00
|
|
|
this.drawTexturedModalRect(this.guiLeft, this.guiTop, 0, 0, 242, 190);
|
2015-03-29 15:29:05 +02:00
|
|
|
this.mc.getTextureManager().bindTexture(AssetUtil.GUI_INVENTORY_LOCATION);
|
2015-03-19 21:27:56 +01:00
|
|
|
this.drawTexturedModalRect(this.guiLeft+33, this.guiTop+172, 0, 0, 176, 86);
|
2015-02-20 22:45:33 +01:00
|
|
|
}
|
|
|
|
}
|