ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/jei/empowerer/EmpowererRecipeCategory.java

65 lines
2.3 KiB
Java
Raw Normal View History

package de.ellpeck.actuallyadditions.mod.jei.empowerer;
import java.util.Arrays;
2018-05-10 11:38:58 +02:00
import de.ellpeck.actuallyadditions.mod.ActuallyAdditions;
import de.ellpeck.actuallyadditions.mod.util.AssetUtil;
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;
2019-05-02 09:10:29 +02:00
public class EmpowererRecipeCategory implements IRecipeCategory<EmpowererRecipeWrapper> {
public static final String NAME = "actuallyadditions.empowerer";
private final IDrawable background;
2019-05-02 09:10:29 +02:00
public EmpowererRecipeCategory(IGuiHelper helper) {
2016-11-19 23:12:22 +01:00
this.background = helper.createDrawable(AssetUtil.getGuiLocation("gui_nei_empowerer"), 0, 0, 135, 80);
}
@Override
2019-05-02 09:10:29 +02:00
public String getUid() {
return NAME;
}
@Override
2019-05-02 09:10:29 +02:00
public String getTitle() {
return StringUtil.localize("container.nei." + NAME + ".name");
}
@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
}
@Override
2019-05-02 09:10:29 +02:00
public IDrawable getBackground() {
return this.background;
}
@Override
2019-05-02 09:10:29 +02:00
public void setRecipe(IRecipeLayout recipeLayout, EmpowererRecipeWrapper wrapper, IIngredients ingredients) {
2016-11-08 23:35:11 +01:00
recipeLayout.getItemStacks().init(0, true, 31, 31);
recipeLayout.getItemStacks().set(0, Arrays.asList(wrapper.theRecipe.getInput().getMatchingStacks()));
2016-11-08 23:35:11 +01:00
recipeLayout.getItemStacks().init(1, true, 1, 31);
recipeLayout.getItemStacks().set(1, Arrays.asList(wrapper.theRecipe.getStandOne().getMatchingStacks()));
2016-11-08 23:35:11 +01:00
recipeLayout.getItemStacks().init(2, true, 31, 1);
recipeLayout.getItemStacks().set(2, Arrays.asList(wrapper.theRecipe.getStandTwo().getMatchingStacks()));
2016-11-08 23:35:11 +01:00
recipeLayout.getItemStacks().init(3, true, 61, 31);
recipeLayout.getItemStacks().set(3, Arrays.asList(wrapper.theRecipe.getStandThree().getMatchingStacks()));
2016-11-08 23:35:11 +01:00
recipeLayout.getItemStacks().init(4, true, 31, 61);
recipeLayout.getItemStacks().set(4, Arrays.asList(wrapper.theRecipe.getStandFour().getMatchingStacks()));
2016-11-08 23:35:11 +01:00
recipeLayout.getItemStacks().init(5, false, 112, 31);
recipeLayout.getItemStacks().set(5, wrapper.theRecipe.getOutput());
}
}