ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/booklet/page/PageCrusherRecipe.java

84 lines
3.2 KiB
Java
Raw Normal View History

2016-11-10 21:07:15 +01:00
/*
* This file ("PageCrusherRecipe.java") is part of the Actually Additions mod for Minecraft.
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
* http://ellpeck.de/actaddlicense
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2017-01-01 16:23:26 +01:00
* © 2015-2017 Ellpeck
2016-11-10 21:07:15 +01:00
*/
package de.ellpeck.actuallyadditions.mod.booklet.page;
2016-11-12 00:29:01 +01:00
import de.ellpeck.actuallyadditions.api.booklet.internal.GuiBookletBase;
2016-11-10 21:07:15 +01:00
import de.ellpeck.actuallyadditions.api.recipe.CrusherRecipe;
2018-05-10 11:38:58 +02:00
import de.ellpeck.actuallyadditions.mod.ActuallyAdditions;
2016-11-12 00:29:01 +01:00
import de.ellpeck.actuallyadditions.mod.booklet.gui.GuiBooklet;
import de.ellpeck.actuallyadditions.mod.util.StackUtil;
import de.ellpeck.actuallyadditions.mod.util.StringUtil;
import net.minecraft.item.ItemStack;
2021-02-27 22:59:18 +01:00
import net.minecraftforge.api.distmarker.Dist;
import net.minecraftforge.api.distmarker.OnlyIn;
import net.minecraftforge.fml.client.gui.GuiUtils;
import java.util.List;
2016-11-10 21:07:15 +01:00
2019-05-02 09:10:29 +02:00
public class PageCrusherRecipe extends BookletPage {
2016-11-10 21:07:15 +01:00
2016-11-12 00:29:01 +01:00
private final CrusherRecipe recipe;
private int counter = 0;
private int rotate = 0;
private final ItemStack[] stacks;
2016-11-12 00:29:01 +01:00
2019-05-02 09:10:29 +02:00
public PageCrusherRecipe(int localizationKey, CrusherRecipe recipe) {
2016-11-10 21:07:15 +01:00
super(localizationKey);
2016-11-12 00:29:01 +01:00
this.recipe = recipe;
this.stacks = recipe.getInput().getItems();
2016-11-12 00:29:01 +01:00
}
@Override
2021-02-26 22:15:48 +01:00
@OnlyIn(Dist.CLIENT)
2019-05-02 09:10:29 +02:00
public void drawScreenPre(GuiBookletBase gui, int startX, int startY, int mouseX, int mouseY, float partialTicks) {
2016-11-12 00:29:01 +01:00
super.drawScreenPre(gui, startX, startY, mouseX, mouseY, partialTicks);
gui.getMinecraft().getTextureManager().bind(GuiBooklet.RES_LOC_GADGETS);
2019-05-02 09:10:29 +02:00
GuiUtils.drawTexturedModalRect(startX + 38, startY + 6, 136, 0, 52, 74, 0);
2016-11-12 00:29:01 +01:00
2019-05-02 09:10:29 +02:00
gui.renderScaledAsciiString("(" + StringUtil.localize("booklet." + ActuallyAdditions.MODID + ".crusherRecipe") + ")", startX + 36, startY + 85, 0, false, gui.getMediumFontSize());
2016-11-12 00:29:01 +01:00
2019-05-02 09:10:29 +02:00
PageTextOnly.renderTextToPage(gui, this, startX + 6, startY + 100);
2019-02-27 19:53:05 +01:00
2021-02-27 22:59:18 +01:00
if (this.counter++ % 50 == 0) {
gui.addOrModifyItemRenderer(this.stacks[this.rotate++ % this.stacks.length], startX + 38 + 18, startY + 6 + 1, 1F, true);
}
2016-11-12 00:29:01 +01:00
}
@Override
2021-02-26 22:15:48 +01:00
@OnlyIn(Dist.CLIENT)
2021-03-01 20:14:50 +01:00
public void init(GuiBookletBase gui, int startX, int startY) {
super.init(gui, startX, startY);
2016-11-12 00:29:01 +01:00
2019-05-02 09:10:29 +02:00
if (this.recipe != null) {
gui.addOrModifyItemRenderer(this.stacks[this.rotate++ % this.stacks.length], startX + 38 + 18, startY + 6 + 1, 1F, true);
gui.addOrModifyItemRenderer(this.recipe.getOutputOne(), startX + 38 + 4, startY + 6 + 53, 1F, false);
2019-05-02 09:10:29 +02:00
if (StackUtil.isValid(this.recipe.getOutputTwo())) {
gui.addOrModifyItemRenderer(this.recipe.getOutputTwo(), startX + 38 + 30, startY + 6 + 53, 1F, false);
}
}
}
@Override
2019-05-02 09:10:29 +02:00
public void getItemStacksForPage(List<ItemStack> list) {
super.getItemStacksForPage(list);
2019-05-02 09:10:29 +02:00
if (this.recipe != null) {
list.add(this.recipe.getOutputOne());
2016-11-12 00:29:01 +01:00
2019-05-02 09:10:29 +02:00
if (StackUtil.isValid(this.recipe.getOutputTwo())) {
list.add(this.recipe.getOutputTwo());
}
2016-11-12 00:29:01 +01:00
}
2016-11-10 21:07:15 +01:00
}
}