ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/jei/booklet/BookletRecipeCategory.java

54 lines
1.5 KiB
Java
Raw Normal View History

2016-01-16 20:06:25 +01:00
package de.ellpeck.actuallyadditions.mod.jei.booklet;
2019-05-02 09:10:29 +02:00
import java.util.ArrayList;
import java.util.List;
2018-05-10 11:38:58 +02:00
import de.ellpeck.actuallyadditions.mod.ActuallyAdditions;
2016-01-16 20:06:25 +01:00
import de.ellpeck.actuallyadditions.mod.util.StringUtil;
import mezz.jei.api.IGuiHelper;
import mezz.jei.api.gui.IDrawable;
import mezz.jei.api.gui.IRecipeLayout;
2016-10-29 10:47:33 +02:00
import mezz.jei.api.ingredients.IIngredients;
2017-06-17 00:48:49 +02:00
import mezz.jei.api.recipe.IRecipeCategory;
2016-11-11 18:55:32 +01:00
import net.minecraft.item.ItemStack;
2016-01-16 20:06:25 +01:00
2019-05-02 09:10:29 +02:00
public class BookletRecipeCategory implements IRecipeCategory<BookletRecipeWrapper> {
2016-01-16 20:06:25 +01:00
public static final String NAME = "actuallyadditions.booklet";
2016-05-19 20:05:12 +02:00
private final IDrawable background;
2016-01-16 20:06:25 +01:00
2019-05-02 09:10:29 +02:00
public BookletRecipeCategory(IGuiHelper helper) {
2016-10-31 20:19:55 +01:00
this.background = helper.createBlankDrawable(160, 105);
2016-01-16 20:06:25 +01:00
}
@Override
2019-05-02 09:10:29 +02:00
public String getUid() {
return NAME;
2016-01-16 20:06:25 +01:00
}
@Override
2019-05-02 09:10:29 +02:00
public String getTitle() {
return StringUtil.localize("container.nei." + NAME + ".name");
2016-01-16 20:06:25 +01:00
}
2017-06-17 00:48:49 +02:00
@Override
2019-05-02 09:10:29 +02:00
public String getModName() {
2018-05-10 11:38:58 +02:00
return ActuallyAdditions.NAME;
2017-06-17 00:48:49 +02:00
}
2016-01-16 20:06:25 +01:00
@Override
2019-05-02 09:10:29 +02:00
public IDrawable getBackground() {
2016-01-16 20:06:25 +01:00
return this.background;
}
@Override
2019-05-02 09:10:29 +02:00
public void setRecipe(IRecipeLayout recipeLayout, BookletRecipeWrapper wrapper, IIngredients ingredients) {
2016-11-08 23:35:11 +01:00
recipeLayout.getItemStacks().init(0, true, 70, -4);
2016-11-11 18:55:32 +01:00
2019-02-27 19:53:05 +01:00
List<ItemStack> list = new ArrayList<>();
2016-11-11 18:55:32 +01:00
wrapper.thePage.getItemStacksForPage(list);
recipeLayout.getItemStacks().set(0, list);
2016-01-16 20:06:25 +01:00
}
}