ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/jei/booklet/BookletRecipeCategory.java

70 lines
1.9 KiB
Java
Raw Normal View History

2016-01-16 20:06:25 +01:00
/*
2016-05-16 22:52:27 +02:00
* This file ("BookletRecipeCategory.java") is part of the Actually Additions mod for Minecraft.
2016-01-16 20:06:25 +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-16 20:06:25 +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-16 20:06:25 +01:00
*/
package de.ellpeck.actuallyadditions.mod.jei.booklet;
import de.ellpeck.actuallyadditions.mod.nei.NEIBookletRecipe;
import de.ellpeck.actuallyadditions.mod.util.StringUtil;
import mezz.jei.api.IGuiHelper;
import mezz.jei.api.gui.IDrawable;
import mezz.jei.api.gui.IRecipeLayout;
import mezz.jei.api.recipe.IRecipeCategory;
import mezz.jei.api.recipe.IRecipeWrapper;
import net.minecraft.client.Minecraft;
import javax.annotation.Nonnull;
import java.util.Arrays;
public class BookletRecipeCategory implements IRecipeCategory{
private IDrawable background;
public BookletRecipeCategory(IGuiHelper helper){
this.background = helper.createBlankDrawable(160, 100);
2016-01-16 20:06:25 +01:00
}
@Nonnull
@Override
public String getUid(){
return NEIBookletRecipe.NAME;
}
@Nonnull
@Override
public String getTitle(){
return StringUtil.localize("container.nei."+NEIBookletRecipe.NAME+".name");
}
@Nonnull
@Override
public IDrawable getBackground(){
return this.background;
}
@Override
2016-05-16 22:52:27 +02:00
public void drawExtras(@Nonnull Minecraft minecraft){
2016-01-16 20:06:25 +01:00
}
@Override
2016-05-16 22:52:27 +02:00
public void drawAnimations(@Nonnull Minecraft minecraft){
2016-01-16 20:06:25 +01:00
}
@Override
public void setRecipe(@Nonnull IRecipeLayout recipeLayout, @Nonnull IRecipeWrapper recipeWrapper){
if(recipeWrapper instanceof BookletRecipeWrapper){
BookletRecipeWrapper wrapper = (BookletRecipeWrapper)recipeWrapper;
2016-03-18 15:48:52 +01:00
recipeLayout.getItemStacks().init(0, true, 70, -4);
2016-01-16 20:06:25 +01:00
recipeLayout.getItemStacks().set(0, Arrays.asList(wrapper.thePage.getItemStacksForPage()));
}
}
}