TechReborn/src/main/java/techreborn/client/gui/GuiAlloySmelter.java

60 lines
2.3 KiB
Java
Raw Normal View History

2015-04-24 16:01:19 +02:00
package techreborn.client.gui;
2015-05-08 01:20:13 +02:00
import net.minecraft.client.gui.GuiButton;
2015-04-24 16:01:19 +02:00
import net.minecraft.client.gui.inventory.GuiContainer;
import net.minecraft.client.resources.I18n;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.util.ResourceLocation;
2015-04-29 14:34:08 +02:00
import net.minecraft.util.StatCollector;
2015-04-24 16:01:19 +02:00
import techreborn.client.container.ContainerAlloySmelter;
import techreborn.tiles.TileAlloySmelter;
public class GuiAlloySmelter extends GuiContainer {
2015-05-12 00:29:37 +02:00
private static final ResourceLocation texture = new ResourceLocation("techreborn", "textures/gui/electric_alloy_furnace.png");
2015-04-24 16:01:19 +02:00
TileAlloySmelter alloysmelter;
2015-05-12 00:29:37 +02:00
public GuiAlloySmelter(EntityPlayer player, TileAlloySmelter tilealloysmelter) {
2015-04-24 16:01:19 +02:00
super(new ContainerAlloySmelter(tilealloysmelter, player));
this.xSize = 176;
this.ySize = 167;
alloysmelter = tilealloysmelter;
}
2015-05-08 01:20:13 +02:00
@Override
public void initGui() {
this.buttonList.clear();
int k = (this.width - this.xSize) / 2;
int l = (this.height - this.ySize) / 2;
2015-05-12 00:29:37 +02:00
this.buttonList.add(new GuiButton(0, k + 4, l + 4, 20, 20, "R"));
2015-05-08 01:20:13 +02:00
super.initGui();
}
2015-04-24 16:01:19 +02:00
@Override
2015-05-12 00:29:37 +02:00
protected void drawGuiContainerBackgroundLayer(float p_146976_1_, int p_146976_2_, int p_146976_3_) {
2015-04-24 16:01:19 +02:00
this.mc.getTextureManager().bindTexture(texture);
int k = (this.width - this.xSize) / 2;
int l = (this.height - this.ySize) / 2;
this.drawTexturedModalRect(k, l, 0, 0, this.xSize, this.ySize);
2015-05-12 00:29:37 +02:00
int j = 0;
if(alloysmelter.crafter.currentTickTime != 0) {
2015-05-30 12:27:15 +02:00
j = this.alloysmelter.crafter.currentTickTime * 24 / this.alloysmelter.crafter.currentNeededTicks;
2015-05-12 00:29:37 +02:00
}
this.drawTexturedModalRect(k + 79, l + 34, 176, 14, j + 1, 16);
j = (int)this.alloysmelter.energy.getEnergyStored() * 12 / this.alloysmelter.energy.getCapacity();
if(j > 0) {
this.drawTexturedModalRect(k + 56, l + 36 + 12 - j, 176, 12 - j, 14, j + 2);
}
2015-04-24 16:01:19 +02:00
}
2015-05-12 00:29:37 +02:00
protected void drawGuiContainerForegroundLayer(int p_146979_1_, int p_146979_2_) {
2015-05-10 22:39:19 +02:00
String name = StatCollector.translateToLocal("tile.techreborn.alloysmelter.name");
this.fontRendererObj.drawString(name, this.xSize / 2 - this.fontRendererObj.getStringWidth(name) / 2, 6, 4210752);
2015-05-12 00:29:37 +02:00
this.fontRendererObj.drawString(I18n.format("container.inventory", new Object[0]), 8, this.ySize - 96 + 2, 4210752);
2015-04-24 16:01:19 +02:00
}
}