diff options
author | kekzdealer <kekzdealer@gmail.com> | 2019-12-10 11:36:39 +0100 |
---|---|---|
committer | kekzdealer <kekzdealer@gmail.com> | 2019-12-10 11:36:39 +0100 |
commit | c7329fe829f69f4585837a5f483dab064d57774f (patch) | |
tree | 73d512a3afa641f989df2c155949296dbfd383f0 /src/main/java/container/Gui_ItemProxyEndpoint.java | |
parent | f9eac626254ed31477925618a45af5005e4628ac (diff) | |
download | GT5-Unofficial-c7329fe829f69f4585837a5f483dab064d57774f.tar.gz GT5-Unofficial-c7329fe829f69f4585837a5f483dab064d57774f.tar.bz2 GT5-Unofficial-c7329fe829f69f4585837a5f483dab064d57774f.zip |
visiting Lucy~
Diffstat (limited to 'src/main/java/container/Gui_ItemProxyEndpoint.java')
-rw-r--r-- | src/main/java/container/Gui_ItemProxyEndpoint.java | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/src/main/java/container/Gui_ItemProxyEndpoint.java b/src/main/java/container/Gui_ItemProxyEndpoint.java new file mode 100644 index 0000000000..0fb1b6e05b --- /dev/null +++ b/src/main/java/container/Gui_ItemProxyEndpoint.java @@ -0,0 +1,50 @@ +package container; + +import org.lwjgl.opengl.GL11; + +import kekztech.KekzCore; +import net.minecraft.client.Minecraft; +import net.minecraft.client.gui.inventory.GuiContainer; +import net.minecraft.client.resources.I18n; +import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.InventoryPlayer; +import net.minecraft.inventory.IInventory; +import net.minecraft.tileentity.TileEntity; +import net.minecraft.util.ResourceLocation; + +public class Gui_ItemProxyEndpoint extends GuiContainer { + + private final ResourceLocation texture = new ResourceLocation(KekzCore.MODID, "textures/gui/ItemTech1by1.png"); + + private final InventoryPlayer inventory; + private final IInventory te; + + public Gui_ItemProxyEndpoint(TileEntity te, EntityPlayer player) { + super(new Container_ItemProxyEndpoint(te, player)); + inventory = player.inventory; + this.te = (IInventory) te; + + } + + @Override + protected void drawGuiContainerBackgroundLayer(float p_146976_1_, int p_146976_2_, int p_146976_3_) { + + Minecraft.getMinecraft().renderEngine.bindTexture(texture); + GL11.glColor4f(1.0f, 1.0f, 1.0f, 1.0f); + + final int x = (super.width - super.xSize) / 2; + final int y = (super.height - super.ySize) / 2; + + super.drawTexturedModalRect(x, y, 0, 0, super.xSize, super.ySize); + } + + @Override + protected void drawGuiContainerForegroundLayer(int p1, int p2) { + super.fontRendererObj.drawString( + I18n.format(te.getInventoryName()), + (super.xSize / 2) - (fontRendererObj.getStringWidth(I18n.format(te.getInventoryName())) / 2), + 6, 4210752, false); + super.fontRendererObj.drawString( + I18n.format(inventory.getInventoryName()), 8, super.ySize - 96 + 2, 4210752); + } +} |