ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/common/jei/compost/CompostRecipeCategory.java

53 lines
1.6 KiB
Java
Raw Normal View History

2020-09-09 16:49:01 +02:00
package de.ellpeck.actuallyadditions.common.jei.compost;
2017-10-31 03:19:48 +01:00
import java.util.Arrays;
2020-09-09 16:49:01 +02:00
import de.ellpeck.actuallyadditions.common.ActuallyAdditions;
import de.ellpeck.actuallyadditions.common.util.AssetUtil;
import de.ellpeck.actuallyadditions.common.util.StringUtil;
2017-10-31 03:19:48 +01:00
import mezz.jei.api.IGuiHelper;
import mezz.jei.api.gui.IDrawable;
import mezz.jei.api.gui.IRecipeLayout;
import mezz.jei.api.ingredients.IIngredients;
import mezz.jei.api.recipe.IRecipeCategory;
public class CompostRecipeCategory implements IRecipeCategory<CompostRecipeWrapper> {
2017-10-31 03:19:48 +01:00
public static final String NAME = "actuallyadditions.compost";
private final IDrawable background;
public CompostRecipeCategory(IGuiHelper helper) {
2017-10-31 03:19:48 +01:00
this.background = helper.createDrawable(AssetUtil.getGuiLocation("gui_nei_simple"), 0, 0, 96, 60);
}
@Override
public String getUid() {
2017-10-31 03:19:48 +01:00
return NAME;
}
@Override
public String getTitle() {
return StringUtil.localize("container.nei." + NAME + ".name");
2017-10-31 03:19:48 +01:00
}
@Override
public String getModName() {
2018-05-10 11:38:58 +02:00
return ActuallyAdditions.NAME;
2017-10-31 03:19:48 +01:00
}
@Override
public IDrawable getBackground() {
2017-10-31 03:19:48 +01:00
return this.background;
}
@Override
public void setRecipe(IRecipeLayout recipeLayout, CompostRecipeWrapper wrapper, IIngredients ingredients) {
2017-10-31 03:19:48 +01:00
recipeLayout.getItemStacks().init(0, true, 4, 18);
recipeLayout.getItemStacks().set(0, Arrays.asList(wrapper.recipe.getInput().getMatchingStacks()));
2017-10-31 03:19:48 +01:00
recipeLayout.getItemStacks().init(1, false, 66, 18);
recipeLayout.getItemStacks().set(1, wrapper.recipe.getOutput());
2017-10-31 03:19:48 +01:00
}
}