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

83 lines
2.4 KiB
Java
Raw Normal View History

2016-01-17 15:09:59 +01:00
/*
2016-05-16 22:52:27 +02:00
* This file ("CrusherRecipeCategory.java") is part of the Actually Additions mod for Minecraft.
2016-01-17 15:09:59 +01:00
* 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
2016-01-17 15:09:59 +01:00
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2016-05-16 22:54:42 +02:00
* © 2015-2016 Ellpeck
2016-01-17 15:09:59 +01:00
*/
package de.ellpeck.actuallyadditions.mod.jei.crusher;
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;
2016-01-17 15:09:59 +01:00
import mezz.jei.api.recipe.IRecipeCategory;
import mezz.jei.api.recipe.IRecipeWrapper;
import net.minecraft.client.Minecraft;
public class CrusherRecipeCategory implements IRecipeCategory{
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
public CrusherRecipeCategory(IGuiHelper helper){
this.background = helper.createDrawable(AssetUtil.getGuiLocation("guiGrinder"), 60, 13, 56, 79);
}
2016-01-17 15:09:59 +01:00
@Override
public String getUid(){
return NAME;
}
2016-01-17 15:09:59 +01:00
@Override
public String getTitle(){
return StringUtil.localize("container.nei."+NAME+".name");
}
2016-01-17 15:09:59 +01:00
@Override
public IDrawable getBackground(){
return this.background;
}
@Override
public void drawExtras(Minecraft minecraft){
2016-01-17 15:09:59 +01:00
}
@Override
public void drawAnimations(Minecraft minecraft){
2016-01-17 15:09:59 +01:00
}
@Override
public void setRecipe(IRecipeLayout recipeLayout, IRecipeWrapper recipeWrapper){
2016-10-29 10:47:33 +02:00
}
@Override
public void setRecipe(IRecipeLayout recipeLayout, IRecipeWrapper recipeWrapper, IIngredients ingredients){
2016-01-17 15:09:59 +01:00
if(recipeWrapper instanceof CrusherRecipeWrapper){
CrusherRecipeWrapper wrapper = (CrusherRecipeWrapper)recipeWrapper;
recipeLayout.getItemStacks().init(0, true, 19, 7);
recipeLayout.getItemStacks().set(0, wrapper.theRecipe.inputStack);
2016-01-17 15:09:59 +01:00
recipeLayout.getItemStacks().init(1, false, 7, 55);
recipeLayout.getItemStacks().set(1, wrapper.theRecipe.outputOneStack);
2016-01-17 15:09:59 +01:00
if(wrapper.theRecipe.outputTwoStack != null){
recipeLayout.getItemStacks().init(2, false, 31, 55);
recipeLayout.getItemStacks().set(2, wrapper.theRecipe.outputTwoStack);
2016-01-17 15:09:59 +01:00
}
}
}
}