2015-06-12 19:12:06 +02:00
|
|
|
package ellpeck.actuallyadditions.inventory.gui;
|
2015-03-07 02:23:31 +01:00
|
|
|
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
2015-06-12 19:12:06 +02:00
|
|
|
import ellpeck.actuallyadditions.inventory.ContainerFurnaceDouble;
|
2015-03-07 12:51:28 +01:00
|
|
|
import ellpeck.actuallyadditions.tile.TileEntityBase;
|
|
|
|
import ellpeck.actuallyadditions.tile.TileEntityFurnaceDouble;
|
2015-03-29 15:29:05 +02:00
|
|
|
import ellpeck.actuallyadditions.util.AssetUtil;
|
2015-03-07 02:23:31 +01:00
|
|
|
import net.minecraft.client.gui.inventory.GuiContainer;
|
|
|
|
import net.minecraft.entity.player.InventoryPlayer;
|
|
|
|
import net.minecraft.util.ResourceLocation;
|
2015-05-20 22:39:43 +02:00
|
|
|
import net.minecraftforge.common.util.ForgeDirection;
|
2015-03-07 02:23:31 +01:00
|
|
|
import org.lwjgl.opengl.GL11;
|
|
|
|
|
2015-05-20 22:39:43 +02:00
|
|
|
import java.util.Collections;
|
|
|
|
|
2015-03-07 02:23:31 +01:00
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public class GuiFurnaceDouble extends GuiContainer{
|
|
|
|
|
2015-03-29 15:29:05 +02:00
|
|
|
private static final ResourceLocation resLoc = AssetUtil.getGuiLocation("guiFurnaceDouble");
|
2015-03-07 02:23:31 +01:00
|
|
|
private TileEntityFurnaceDouble tileFurnace;
|
|
|
|
|
|
|
|
public GuiFurnaceDouble(InventoryPlayer inventory, TileEntityBase tile){
|
|
|
|
super(new ContainerFurnaceDouble(inventory, tile));
|
|
|
|
this.tileFurnace = (TileEntityFurnaceDouble)tile;
|
|
|
|
this.xSize = 176;
|
|
|
|
this.ySize = 93+86;
|
|
|
|
}
|
|
|
|
|
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.tileFurnace.getInventoryName());
|
2015-04-19 01:50:02 +02:00
|
|
|
}
|
|
|
|
|
2015-03-07 02:23:31 +01:00
|
|
|
@Override
|
|
|
|
public void drawGuiContainerBackgroundLayer(float f, int x, int y){
|
|
|
|
GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
|
|
|
|
|
2015-03-29 15:29:05 +02:00
|
|
|
this.mc.getTextureManager().bindTexture(AssetUtil.GUI_INVENTORY_LOCATION);
|
2015-03-07 02:23:31 +01:00
|
|
|
this.drawTexturedModalRect(this.guiLeft, this.guiTop+93, 0, 0, 176, 86);
|
|
|
|
|
|
|
|
this.mc.getTextureManager().bindTexture(resLoc);
|
|
|
|
this.drawTexturedModalRect(this.guiLeft, this.guiTop, 0, 0, 176, 93);
|
|
|
|
|
2015-05-20 22:39:43 +02:00
|
|
|
if(this.tileFurnace.getEnergyStored(ForgeDirection.UNKNOWN) > 0){
|
|
|
|
int i = this.tileFurnace.getEnergyScaled(83);
|
|
|
|
drawTexturedModalRect(this.guiLeft+28, this.guiTop+89-i, 176, 44, 16, i);
|
2015-03-07 02:23:31 +01:00
|
|
|
}
|
|
|
|
if(this.tileFurnace.firstSmeltTime > 0){
|
|
|
|
int i = this.tileFurnace.getFirstTimeToScale(23);
|
|
|
|
this.drawTexturedModalRect(this.guiLeft+51, this.guiTop+40, 176, 0, 24, i);
|
|
|
|
}
|
|
|
|
if(this.tileFurnace.secondSmeltTime > 0){
|
|
|
|
int i = this.tileFurnace.getSecondTimeToScale(23);
|
|
|
|
this.drawTexturedModalRect(this.guiLeft + 101, this.guiTop + 40, 176, 22, 24, i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void drawScreen(int x, int y, float f){
|
|
|
|
super.drawScreen(x, y, f);
|
2015-07-02 00:35:38 +02:00
|
|
|
String text = this.tileFurnace.storage.getEnergyStored() + "/" + this.tileFurnace.storage.getEnergyStored() + " RF";
|
2015-05-20 22:39:43 +02:00
|
|
|
if(x >= guiLeft+28 && y >= guiTop+6 && x <= guiLeft+43 && y <= guiTop+88){
|
|
|
|
this.func_146283_a(Collections.singletonList(text), x, y);
|
|
|
|
}
|
2015-03-07 02:23:31 +01:00
|
|
|
}
|
|
|
|
}
|