package com.pam.harvestcraft.gui;
import com.pam.harvestcraft.tileentities.TileEntityGroundTrap;
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 org.lwjgl.opengl.GL11;
public class GuiGroundTrap extends GuiContainer {
private static final ResourceLocation gui = new ResourceLocation("harvestcraft:textures/gui/groundtrap.png");
public GuiGroundTrap(InventoryPlayer invPlayer, TileEntityGroundTrap groundtrapTileEntity) {
super(new ContainerGroundTrap(invPlayer, groundtrapTileEntity));
}
@Override
protected void drawGuiContainerForegroundLayer(int mouseX, int mouseY) {
fontRendererObj.drawString("Ground Trap", 8, 8, 4210752);
fontRendererObj.drawString(I18n.format("container.inventory"), 8, ySize - 96 + 4, 4210752);
}
@Override
protected void drawGuiContainerBackgroundLayer(float partialTicks, int mouseX, int mouseY) {
GL11.glColor4f(1.0f, 1.0f, 1.0f, 1.0f);
mc.getTextureManager().bindTexture(gui);
int x = (width - xSize) / 2;
int y = (height - ySize) / 2;
drawTexturedModalRect(x, y, 0, 0, xSize, ySize);
}
}