ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/inventory/gui/GuiCanolaPress.java

66 lines
2.4 KiB
Java
Raw Normal View History

2016-01-05 04:47:35 +01:00
package de.ellpeck.actuallyadditions.mod.inventory.gui;
2015-05-20 22:39:43 +02:00
2016-01-05 04:47:35 +01:00
import de.ellpeck.actuallyadditions.mod.inventory.ContainerCanolaPress;
import de.ellpeck.actuallyadditions.mod.tile.TileEntityBase;
import de.ellpeck.actuallyadditions.mod.tile.TileEntityCanolaPress;
import de.ellpeck.actuallyadditions.mod.util.AssetUtil;
import net.minecraft.client.renderer.GlStateManager;
2015-05-20 22:39:43 +02:00
import net.minecraft.entity.player.InventoryPlayer;
import net.minecraft.util.ResourceLocation;
2016-01-07 18:20:59 +01:00
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;
2015-05-20 22:39:43 +02:00
@SideOnly(Side.CLIENT)
2019-05-02 09:10:29 +02:00
public class GuiCanolaPress extends GuiWtfMojang {
2015-05-20 22:39:43 +02:00
2016-11-19 23:12:22 +01:00
private static final ResourceLocation RES_LOC = AssetUtil.getGuiLocation("gui_canola_press");
2016-05-19 20:05:12 +02:00
private final TileEntityCanolaPress press;
2016-07-21 01:49:01 +02:00
private EnergyDisplay energy;
private FluidDisplay fluid;
2015-05-20 22:39:43 +02:00
2019-05-02 09:10:29 +02:00
public GuiCanolaPress(InventoryPlayer inventory, TileEntityBase tile) {
2015-05-20 22:39:43 +02:00
super(new ContainerCanolaPress(inventory, tile));
2019-05-02 09:10:29 +02:00
this.press = (TileEntityCanolaPress) tile;
2015-05-20 22:39:43 +02:00
this.xSize = 176;
2019-05-02 09:10:29 +02:00
this.ySize = 93 + 86;
2015-05-20 22:39:43 +02:00
}
2016-07-21 01:49:01 +02:00
@Override
2019-05-02 09:10:29 +02:00
public void initGui() {
2016-07-21 01:49:01 +02:00
super.initGui();
2019-05-02 09:10:29 +02:00
this.energy = new EnergyDisplay(this.guiLeft + 42, this.guiTop + 5, this.press.storage);
this.fluid = new FluidDisplay(this.guiLeft + 116, this.guiTop + 5, this.press.tank);
2016-07-21 01:49:01 +02:00
}
2015-10-03 10:19:40 +02:00
@Override
2019-05-02 09:10:29 +02:00
public void drawScreen(int x, int y, float f) {
2015-10-03 10:19:40 +02:00
super.drawScreen(x, y, f);
2016-07-21 01:49:01 +02:00
this.energy.drawOverlay(x, y);
this.fluid.drawOverlay(x, y);
2015-10-03 10:19:40 +02:00
}
2015-05-20 22:39:43 +02:00
@Override
2019-05-02 09:10:29 +02:00
public void drawGuiContainerForegroundLayer(int x, int y) {
AssetUtil.displayNameString(this.fontRenderer, this.xSize, -10, this.press);
2015-05-20 22:39:43 +02:00
}
@Override
2019-05-02 09:10:29 +02:00
public void drawGuiContainerBackgroundLayer(float f, int x, int y) {
GlStateManager.color(1.0F, 1.0F, 1.0F, 1.0F);
2015-05-20 22:39:43 +02:00
this.mc.getTextureManager().bindTexture(AssetUtil.GUI_INVENTORY_LOCATION);
2019-05-02 09:10:29 +02:00
this.drawTexturedModalRect(this.guiLeft, this.guiTop + 93, 0, 0, 176, 86);
2015-05-20 22:39:43 +02:00
2016-06-17 23:50:38 +02:00
this.mc.getTextureManager().bindTexture(RES_LOC);
2015-05-20 22:39:43 +02:00
this.drawTexturedModalRect(this.guiLeft, this.guiTop, 0, 0, 176, 93);
2019-05-02 09:10:29 +02:00
if (this.press.currentProcessTime > 0) {
2015-05-20 22:39:43 +02:00
int i = this.press.getProcessScaled(29);
2019-05-02 09:10:29 +02:00
this.drawTexturedModalRect(this.guiLeft + 83, this.guiTop + 32, 176, 0, 12, i);
2015-05-20 22:39:43 +02:00
}
2016-07-21 01:49:01 +02:00
this.energy.draw();
this.fluid.draw();
2015-05-20 22:39:43 +02:00
}
}