ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/jei/coffee/CoffeeMachineRecipeCategory.java

69 lines
2.2 KiB
Java
Raw Normal View History

/*
2016-05-16 22:52:27 +02:00
* This file ("CoffeeMachineRecipeCategory.java") is part of the Actually Additions mod for Minecraft.
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
2016-05-16 22:52:27 +02:00
* http://ellpeck.de/actaddlicense
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2017-01-01 16:23:26 +01:00
* © 2015-2017 Ellpeck
*/
package de.ellpeck.actuallyadditions.mod.jei.coffee;
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;
2017-06-17 00:48:49 +02:00
public class CoffeeMachineRecipeCategory implements IRecipeCategory<CoffeeMachineRecipeWrapper>{
public static final String NAME = "actuallyadditions.coffee";
2016-05-19 20:05:12 +02:00
private final IDrawable background;
public CoffeeMachineRecipeCategory(IGuiHelper helper){
2016-11-19 23:12:22 +01:00
this.background = helper.createDrawable(AssetUtil.getGuiLocation("gui_nei_coffee_machine"), 0, 0, 126, 92);
}
@Override
public String getUid(){
return NAME;
}
@Override
public String getTitle(){
return StringUtil.localize("container.nei."+NAME+".name");
}
2017-06-17 00:48:49 +02:00
@Override
public String getModName(){
2018-05-10 11:38:58 +02:00
return ActuallyAdditions.NAME;
2017-06-17 00:48:49 +02:00
}
@Override
public IDrawable getBackground(){
return this.background;
}
@Override
2016-11-08 23:35:11 +01:00
public void setRecipe(IRecipeLayout recipeLayout, CoffeeMachineRecipeWrapper wrapper, IIngredients ingredients){
recipeLayout.getItemStacks().init(0, true, 89, 20);
recipeLayout.getItemStacks().set(0, Arrays.asList(wrapper.ingredient.getInput().getMatchingStacks()));
2016-11-08 23:35:11 +01:00
recipeLayout.getItemStacks().init(1, true, 44, 38);
recipeLayout.getItemStacks().set(1, wrapper.cup);
2016-11-08 23:35:11 +01:00
recipeLayout.getItemStacks().init(2, true, 1, 38);
recipeLayout.getItemStacks().set(2, wrapper.coffeeBeans);
2016-11-08 23:35:11 +01:00
recipeLayout.getItemStacks().init(3, false, 44, 69);
recipeLayout.getItemStacks().set(3, wrapper.theOutput);
}
}