ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/common/jei/crusher/CrusherRecipeCategory.java

59 lines
1.9 KiB
Java
Raw Normal View History

package de.ellpeck.actuallyadditions.common.jei.crusher;
2016-01-17 15:09:59 +01:00
import java.util.Arrays;
import de.ellpeck.actuallyadditions.common.ActuallyAdditions;
import de.ellpeck.actuallyadditions.common.util.AssetUtil;
import de.ellpeck.actuallyadditions.common.util.StackUtil;
import de.ellpeck.actuallyadditions.common.util.StringUtil;
2016-01-17 15:09:59 +01:00
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-01-17 15:09:59 +01:00
2019-05-02 09:10:29 +02:00
public class CrusherRecipeCategory implements IRecipeCategory<CrusherRecipeWrapper> {
2016-01-17 15:09:59 +01:00
public static final String NAME = "actuallyadditions.crushing";
2016-05-19 20:05:12 +02:00
private final IDrawable background;
2016-01-17 15:09:59 +01:00
2019-05-02 09:10:29 +02:00
public CrusherRecipeCategory(IGuiHelper helper) {
2016-11-19 23:12:22 +01:00
this.background = helper.createDrawable(AssetUtil.getGuiLocation("gui_grinder"), 60, 13, 56, 79);
2016-01-17 15:09:59 +01:00
}
@Override
2019-05-02 09:10:29 +02:00
public String getUid() {
2016-01-17 15:09:59 +01:00
return NAME;
}
@Override
2019-05-02 09:10:29 +02:00
public String getTitle() {
return StringUtil.localize("container.nei." + NAME + ".name");
2016-01-17 15:09:59 +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-17 15:09:59 +01:00
@Override
2019-05-02 09:10:29 +02:00
public IDrawable getBackground() {
2016-01-17 15:09:59 +01:00
return this.background;
}
@Override
2019-05-02 09:10:29 +02:00
public void setRecipe(IRecipeLayout recipeLayout, CrusherRecipeWrapper wrapper, IIngredients ingredients) {
2016-11-08 23:35:11 +01:00
recipeLayout.getItemStacks().init(0, true, 19, 7);
recipeLayout.getItemStacks().set(0, Arrays.asList(wrapper.theRecipe.getInput().getMatchingStacks()));
2016-01-17 15:09:59 +01:00
2016-11-08 23:35:11 +01:00
recipeLayout.getItemStacks().init(1, false, 7, 55);
recipeLayout.getItemStacks().set(1, wrapper.theRecipe.getOutputOne());
2016-01-17 15:09:59 +01:00
2019-05-02 09:10:29 +02:00
if (StackUtil.isValid(wrapper.theRecipe.getOutputTwo())) {
2016-11-08 23:35:11 +01:00
recipeLayout.getItemStacks().init(2, false, 31, 55);
recipeLayout.getItemStacks().set(2, wrapper.theRecipe.getOutputTwo());
2016-01-17 15:09:59 +01:00
}
}
}