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

107 lines
4.2 KiB
Java
Raw Normal View History

2015-08-29 14:33:25 +02:00
/*
2016-05-16 22:52:27 +02:00
* This file ("GuiCoffeeMachine.java") is part of the Actually Additions mod for Minecraft.
2015-08-29 14:33:25 +02:00
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
2016-05-16 22:52:27 +02:00
* http://ellpeck.de/actaddlicense
2015-08-29 14:33:25 +02:00
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2017-01-01 16:23:26 +01:00
* © 2015-2017 Ellpeck
2015-08-29 14:33:25 +02:00
*/
2016-01-05 04:47:35 +01:00
package de.ellpeck.actuallyadditions.mod.inventory.gui;
2021-03-01 20:55:50 +01:00
import com.mojang.blaze3d.matrix.MatrixStack;
import com.mojang.blaze3d.systems.RenderSystem;
2018-05-10 11:38:58 +02:00
import de.ellpeck.actuallyadditions.mod.ActuallyAdditions;
2016-01-05 04:47:35 +01:00
import de.ellpeck.actuallyadditions.mod.inventory.ContainerCoffeeMachine;
2016-08-09 20:56:09 +02:00
import de.ellpeck.actuallyadditions.mod.network.PacketHandlerHelper;
2016-01-05 04:47:35 +01:00
import de.ellpeck.actuallyadditions.mod.tile.TileEntityCoffeeMachine;
import de.ellpeck.actuallyadditions.mod.util.AssetUtil;
import de.ellpeck.actuallyadditions.mod.util.StringUtil;
2021-03-01 20:55:50 +01:00
import net.minecraft.client.gui.widget.button.Button;
2021-02-27 21:24:26 +01:00
import net.minecraft.entity.player.PlayerInventory;
import net.minecraft.util.ResourceLocation;
import net.minecraft.util.text.ITextComponent;
import net.minecraftforge.api.distmarker.Dist;
2021-03-01 20:55:50 +01:00
import net.minecraftforge.api.distmarker.OnlyIn;
2021-02-27 21:24:26 +01:00
import java.util.Collections;
2021-02-26 22:15:48 +01:00
@OnlyIn(Dist.CLIENT)
public class GuiCoffeeMachine extends GuiWtfMojang<ContainerCoffeeMachine> {
2016-11-19 23:12:22 +01:00
private static final ResourceLocation RES_LOC = AssetUtil.getGuiLocation("gui_coffee_machine");
2016-05-19 20:05:12 +02:00
private final TileEntityCoffeeMachine machine;
private EnergyDisplay energy;
private FluidDisplay fluid;
public GuiCoffeeMachine(ContainerCoffeeMachine container, PlayerInventory inventory, ITextComponent title) {
super(container, inventory);
this.machine = container.machine;
this.xSize = 176;
2019-05-02 09:10:29 +02:00
this.ySize = 93 + 86;
}
@Override
2021-03-01 20:14:50 +01:00
public void init() {
super.init();
2021-03-01 20:55:50 +01:00
Button buttonOkay = new Button(this.guiLeft + 60, this.guiTop + 11, 58, 20, StringUtil.localize("info." + ActuallyAdditions.MODID + ".gui.ok"));
this.addButton(buttonOkay);
2019-05-02 09:10:29 +02:00
this.energy = new EnergyDisplay(this.guiLeft + 16, this.guiTop + 5, this.machine.storage);
this.fluid = new FluidDisplay(this.guiLeft - 30, this.guiTop + 1, this.machine.tank, true, false);
}
@Override
2021-03-01 20:55:50 +01:00
public void render(MatrixStack matrices, int x, int y, float f) {
super.render(matrices, x, y, f);
2015-10-03 10:19:40 +02:00
2019-05-02 09:10:29 +02:00
String text2 = this.machine.coffeeCacheAmount + "/" + TileEntityCoffeeMachine.COFFEE_CACHE_MAX_AMOUNT + " " + StringUtil.localize("info." + ActuallyAdditions.MODID + ".gui.coffee");
if (x >= this.guiLeft + 40 && y >= this.guiTop + 25 && x <= this.guiLeft + 49 && y <= this.guiTop + 56) {
this.drawHoveringText(Collections.singletonList(text2), x, y);
2015-10-03 10:19:40 +02:00
}
2021-03-01 20:55:50 +01:00
this.energy.render(matrices, x, y);
this.fluid.render(matrices, x, y);
}
@Override
2021-03-01 20:55:50 +01:00
public void drawGuiContainerForegroundLayer(MatrixStack matrices, int x, int y) {
AssetUtil.displayNameString(matrices, this.font, this.xSize, -10, this.machine);
}
@Override
2021-03-01 20:55:50 +01:00
public void drawGuiContainerBackgroundLayer(MatrixStack matrices, float f, int x, int y) {
RenderSystem.color4f(1.0F, 1.0F, 1.0F, 1.0F);
this.getMinecraft().getTextureManager().bindTexture(AssetUtil.GUI_INVENTORY_LOCATION);
this.blit(matrices, this.guiLeft, this.guiTop + 93, 0, 0, 176, 86);
this.getMinecraft().getTextureManager().bindTexture(RES_LOC);
this.blit(matrices, this.guiLeft, this.guiTop, 0, 0, 176, 93);
2019-05-02 09:10:29 +02:00
if (this.machine.coffeeCacheAmount > 0) {
int i = this.machine.getCoffeeScaled(30);
this.blit(matrices, this.guiLeft + 41, this.guiTop + 56 - i, 192, 0, 8, i);
}
2019-05-02 09:10:29 +02:00
if (this.machine.brewTime > 0) {
int i = this.machine.getBrewScaled(23);
this.blit(matrices, this.guiLeft + 53, this.guiTop + 42, 192, 30, i, 16);
int j = this.machine.getBrewScaled(26);
this.blit(matrices, this.guiLeft + 99 + 25 - j, this.guiTop + 44, 192 + 25 - j, 46, j, 12);
}
2021-03-01 20:55:50 +01:00
this.energy.draw(matrices);
this.fluid.draw(matrices);
}
@Override
2021-03-01 20:14:50 +01:00
public void actionPerformed(Button button) {
2016-08-09 20:56:09 +02:00
PacketHandlerHelper.sendButtonPacket(this.machine, button.id);
}
2021-02-26 22:15:48 +01:00
}