From 70c1354a4a96698758a88c032866288f79de6f5a Mon Sep 17 00:00:00 2001 From: Benjamin Culkin Date: Sat, 24 Aug 2024 08:16:37 -0400 Subject: Initial commit --- .../java/jp/plusplus/fbs/gui/GuiFillingTable.java | 50 ++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 src/main/java/jp/plusplus/fbs/gui/GuiFillingTable.java (limited to 'src/main/java/jp/plusplus/fbs/gui/GuiFillingTable.java') diff --git a/src/main/java/jp/plusplus/fbs/gui/GuiFillingTable.java b/src/main/java/jp/plusplus/fbs/gui/GuiFillingTable.java new file mode 100644 index 0000000..c73a683 --- /dev/null +++ b/src/main/java/jp/plusplus/fbs/gui/GuiFillingTable.java @@ -0,0 +1,50 @@ +package jp.plusplus.fbs.gui; + +import jp.plusplus.fbs.FBS; +import jp.plusplus.fbs.tileentity.TileEntityExtractingFurnace; +import jp.plusplus.fbs.tileentity.TileEntityFillingTable; +import net.minecraft.client.gui.inventory.GuiContainer; +import net.minecraft.client.resources.I18n; +import net.minecraft.inventory.Container; +import net.minecraft.util.IIcon; +import net.minecraft.util.ResourceLocation; +import org.lwjgl.opengl.GL11; + +/** + * Createdby pluslus_Fon 2015/06/14. + */ +public class GuiFillingTable extends GuiContainer { + private TileEntityFillingTable entity; + + public GuiFillingTable(Container p_i1072_1_, TileEntityFillingTable t) { + super(p_i1072_1_); + entity =t; + } + + @Override + protected void drawGuiContainerForegroundLayer(int par1, int par2){ + String s=entity.getInventoryName(); + this.fontRendererObj.drawString(s, this.xSize / 2 - this.fontRendererObj.getStringWidth(s) / 2, 6, 0x404040); + this.fontRendererObj.drawString(I18n.format("container.inventory"), 8, this.ySize - 96 + 2, 0x404040); + } + @Override + protected void drawGuiContainerBackgroundLayer(float v, int i, int i1) { + GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F); + + this.mc.getTextureManager().bindTexture(new ResourceLocation(FBS.MODID, "textures/gui/fillingTable.png")); + + int k = (this.width - this.xSize) / 2; + int l = (this.height - this.ySize) / 2; + this.drawTexturedModalRect(k, l, 0, 0, this.xSize, this.ySize); + this.drawTexturedModalRect(k+76, l+35, 176, 0, entity.getProgressScaled(22), 15); + + int amount = entity.tank.getFluidAmount(); + if (amount > 0) { + IIcon icon = entity.getFluidIcon(); + if (icon != null) { + int scale = 16 * amount / entity.tank.getCapacity(); + GuiExtractingFurnace.drawFluid(this, k + 44, l + 69 - scale, icon, 16, scale); + } + } + } +} -- cgit v1.2.3