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

70 lines
2.9 KiB
Java
Raw Normal View History

2015-04-14 01:12:24 +02:00
package techreborn.client.gui;
2015-05-09 19:51:31 +02:00
import net.minecraft.client.gui.GuiButton;
2015-04-14 01:12:24 +02:00
import net.minecraft.client.gui.inventory.GuiContainer;
2016-02-21 15:16:55 +01:00
import net.minecraft.client.renderer.GlStateManager;
2015-04-14 01:12:24 +02:00
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.util.ResourceLocation;
2016-03-13 17:08:30 +01:00
import net.minecraft.util.text.translation.I18n;
2017-01-08 14:00:19 +01:00
import techreborn.api.RollingMachineRecipe;
import techreborn.client.container.builder.ContainerBuilder;
2015-04-15 17:23:12 +02:00
import techreborn.tiles.TileRollingMachine;
2015-04-14 01:12:24 +02:00
2016-10-08 21:46:16 +02:00
public class GuiRollingMachine extends GuiContainer {
2016-03-25 10:47:34 +01:00
public static final ResourceLocation texture = new ResourceLocation("techreborn",
2017-01-08 14:00:19 +01:00
"textures/gui/rolling_machine.png");
2016-03-25 10:47:34 +01:00
TileRollingMachine rollingMachine;
2017-01-08 14:00:19 +01:00
public GuiRollingMachine(final EntityPlayer player, final TileRollingMachine tileRollingmachine) {
super(new ContainerBuilder("rollingmachine").player(player.inventory).inventory(8, 84).hotbar(8, 142)
.addInventory().tile(tileRollingmachine.craftMatrix).slot(0, 30, 17).slot(1, 48, 17).slot(2, 66, 17)
.slot(3, 30, 35).slot(4, 48, 35).slot(5, 66, 35).slot(6, 30, 53).slot(7, 48, 53).slot(8, 66, 53)
.onCraft(inv -> tileRollingmachine.inventory.setInventorySlotContents(1,
RollingMachineRecipe.instance.findMatchingRecipe(inv, tileRollingmachine.getWorld())))
.addInventory().tile(tileRollingmachine).outputSlot(0, 124, 35).energySlot(2, 8, 51).syncEnergyValue()
.syncIntegerValue(tileRollingmachine::getBurnTime, tileRollingmachine::setBurnTime).addInventory()
.create());
2016-03-25 10:47:34 +01:00
this.xSize = 176;
this.ySize = 167;
2017-01-08 14:00:19 +01:00
this.rollingMachine = tileRollingmachine;
2016-03-25 10:47:34 +01:00
}
@Override
2017-01-08 14:00:19 +01:00
protected void drawGuiContainerBackgroundLayer(final float p_146976_1_, final int p_146976_2_, final int p_146976_3_) {
2016-03-25 10:47:34 +01:00
GlStateManager.color(1.0F, 1.0F, 1.0F, 1.0F);
2017-01-08 14:00:19 +01:00
this.mc.getTextureManager().bindTexture(GuiRollingMachine.texture);
final int k = (this.width - this.xSize) / 2;
final int l = (this.height - this.ySize) / 2;
2016-03-25 10:47:34 +01:00
this.drawTexturedModalRect(k, l, 0, 0, this.xSize, this.ySize);
2017-01-08 14:00:19 +01:00
int j = this.rollingMachine.getBurnTimeRemainingScaled(24);
2016-03-25 10:47:34 +01:00
this.drawTexturedModalRect(k + 91, l + 34, 176, 14, j + 1, 19);
j = this.rollingMachine.getEnergyScaled(12);
2016-10-08 21:46:16 +02:00
if (j > 0) {
2016-03-25 10:47:34 +01:00
this.drawTexturedModalRect(k + 7, l + 33 + 12 - j, 176, 12 - j, 14, j + 2);
}
}
2017-01-08 14:00:19 +01:00
@Override
protected void drawGuiContainerForegroundLayer(final int p_146979_1_, final int p_146979_2_) {
final String name = I18n.translateToLocal("tile.techreborn.rollingmachine.name");
2016-03-25 10:47:34 +01:00
this.fontRendererObj.drawString(name, this.xSize / 2 - this.fontRendererObj.getStringWidth(name) / 2, 6,
2017-01-08 14:00:19 +01:00
4210752);
2016-03-25 10:47:34 +01:00
this.fontRendererObj.drawString(I18n.translateToLocalFormatted("container.inventory", new Object[0]), 8,
2017-01-08 14:00:19 +01:00
this.ySize - 96 + 2, 4210752);
2016-03-25 10:47:34 +01:00
}
@Override
2016-10-08 21:46:16 +02:00
public void initGui() {
2016-03-25 10:47:34 +01:00
this.buttonList.clear();
2017-01-08 14:00:19 +01:00
final int k = (this.width - this.xSize) / 2;
final int l = (this.height - this.ySize) / 2;
2016-03-25 10:47:34 +01:00
this.buttonList.add(new GuiButton(0, k + 4, l + 4, 20, 20, "R"));
super.initGui();
}
2015-04-14 01:12:24 +02:00
}