ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/jei/reconstructor/ReconstructorRecipeCategory.java

60 lines
2 KiB
Java
Raw Normal View History

2016-01-17 22:57:32 +01:00
package de.ellpeck.actuallyadditions.mod.jei.reconstructor;
2018-05-10 11:38:58 +02:00
import de.ellpeck.actuallyadditions.mod.ActuallyAdditions;
2016-01-17 22:57:32 +01:00
import de.ellpeck.actuallyadditions.mod.blocks.InitBlocks;
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;
2018-12-11 07:18:31 +01:00
import mezz.jei.api.ingredients.VanillaTypes;
2017-06-17 00:48:49 +02:00
import mezz.jei.api.recipe.IRecipeCategory;
2016-01-17 22:57:32 +01:00
import net.minecraft.client.Minecraft;
import net.minecraft.item.ItemStack;
2018-12-11 07:18:31 +01:00
public class ReconstructorRecipeCategory implements IRecipeCategory<ReconstructorRecipeWrapper> {
2016-01-17 22:57:32 +01:00
public static final String NAME = "actuallyadditions.reconstructor";
2016-01-17 22:57:32 +01:00
private static final ItemStack RECONSTRUCTOR = new ItemStack(InitBlocks.blockAtomicReconstructor);
2016-05-19 20:05:12 +02:00
private final IDrawable background;
2016-01-17 22:57:32 +01:00
2018-12-11 07:18:31 +01:00
public ReconstructorRecipeCategory(IGuiHelper helper) {
2016-11-19 23:12:22 +01:00
this.background = helper.createDrawable(AssetUtil.getGuiLocation("gui_nei_atomic_reconstructor"), 0, 0, 96, 60);
2016-01-17 22:57:32 +01:00
}
@Override
2018-12-11 07:18:31 +01:00
public String getUid() {
return NAME;
2016-01-17 22:57:32 +01:00
}
@Override
2018-12-11 07:18:31 +01:00
public String getTitle() {
return StringUtil.localize("container.nei." + NAME + ".name");
2016-01-17 22:57:32 +01:00
}
2017-06-17 00:48:49 +02:00
@Override
2018-12-11 07:18:31 +01: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 22:57:32 +01:00
@Override
2018-12-11 07:18:31 +01:00
public IDrawable getBackground() {
2016-01-17 22:57:32 +01:00
return this.background;
}
@Override
2018-12-11 07:18:31 +01:00
public void drawExtras(Minecraft minecraft) {
2016-01-17 22:57:32 +01:00
AssetUtil.renderStackToGui(RECONSTRUCTOR, 34, 19, 1.0F);
}
@Override
2018-12-11 07:18:31 +01:00
public void setRecipe(IRecipeLayout recipeLayout, ReconstructorRecipeWrapper wrapper, IIngredients ingredients) {
2016-11-08 23:35:11 +01:00
recipeLayout.getItemStacks().init(0, true, 4, 18);
2018-12-11 07:18:31 +01:00
recipeLayout.getItemStacks().set(0, ingredients.getInputs(VanillaTypes.ITEM).get(0).get(0));
2016-11-08 23:35:11 +01:00
recipeLayout.getItemStacks().init(1, false, 66, 18);
2018-12-11 07:18:31 +01:00
recipeLayout.getItemStacks().set(1, ingredients.getOutputs(VanillaTypes.ITEM).get(0).get(0));
2016-01-17 22:57:32 +01:00
}
}