mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-16 21:13:11 +01:00
111 lines
No EOL
3.7 KiB
Java
111 lines
No EOL
3.7 KiB
Java
/*
|
|
* This file ("NEICompostRecipe.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
|
|
* http://ellpeck.de/actaddlicense
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
*
|
|
* © 2015-2016 Ellpeck
|
|
*/
|
|
|
|
package de.ellpeck.actuallyadditions.mod.nei;
|
|
|
|
public class NEICompostRecipe/* extends TemplateRecipeHandler implements INEIRecipeHandler*/{
|
|
|
|
public static final String NAME = "actuallyadditions.compost";
|
|
|
|
/*public NEICompostRecipe(){
|
|
super();
|
|
RecipeInfo.setGuiOffset(this.getGuiClass(), 0, 0);
|
|
}
|
|
|
|
@Override
|
|
public BookletPage getPageForInfo(int page){
|
|
return BookletUtils.getFirstPageForStack(new ItemStack(InitBlocks.blockCompost));
|
|
}
|
|
|
|
@Override
|
|
public String getRecipeName(){
|
|
return StringUtil.localize("container.nei."+NAME+".name");
|
|
}
|
|
|
|
@Override
|
|
public void loadTransferRects(){
|
|
transferRects.add(new RecipeTransferRect(new Rectangle(31+32, 18, 22, 16), NAME));
|
|
}
|
|
|
|
@Override
|
|
public void loadCraftingRecipes(String outputId, Object... results){
|
|
if(outputId.equals(NAME) && getClass() == NEICompostRecipe.class){
|
|
arecipes.add(new CachedCompostRecipe(new ItemStack(InitItems.itemMisc, TileEntityCompost.AMOUNT, TheMiscItems.MASHED_FOOD.ordinal()), new ItemStack(InitItems.itemFertilizer, TileEntityCompost.AMOUNT)));
|
|
}
|
|
else{
|
|
super.loadCraftingRecipes(outputId, results);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void loadCraftingRecipes(ItemStack result){
|
|
if(NEIServerUtils.areStacksSameType(new ItemStack(InitItems.itemFertilizer), result)){
|
|
arecipes.add(new CachedCompostRecipe(new ItemStack(InitItems.itemMisc, TileEntityCompost.AMOUNT, TheMiscItems.MASHED_FOOD.ordinal()), new ItemStack(InitItems.itemFertilizer, TileEntityCompost.AMOUNT)));
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void loadUsageRecipes(ItemStack ingredient){
|
|
if(NEIServerUtils.areStacksSameTypeCrafting(new ItemStack(InitItems.itemMisc, TileEntityCompost.AMOUNT, TheMiscItems.MASHED_FOOD.ordinal()), ingredient)){
|
|
CachedCompostRecipe theRecipe = new CachedCompostRecipe(new ItemStack(InitItems.itemMisc, TileEntityCompost.AMOUNT, TheMiscItems.MASHED_FOOD.ordinal()), new ItemStack(InitItems.itemFertilizer, TileEntityCompost.AMOUNT));
|
|
theRecipe.setIngredientPermutation(Collections.singletonList(theRecipe.input), ingredient);
|
|
arecipes.add(theRecipe);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public String getGuiTexture(){
|
|
return ModUtil.MOD_ID+":textures/gui/guiNEISimple.png";
|
|
}
|
|
|
|
@Override
|
|
public String getOverlayIdentifier(){
|
|
return NAME;
|
|
}
|
|
|
|
@Override
|
|
public Class<? extends GuiContainer> getGuiClass(){
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public void drawBackground(int recipeIndex){
|
|
GlStateManager.color(1.0F, 1.0F, 1.0F, 1.0F);
|
|
GuiDraw.changeTexture(getGuiTexture());
|
|
GuiDraw.drawTexturedModalRect(32, 0, 0, 0, 96, 60);
|
|
}
|
|
|
|
@Override
|
|
public int recipiesPerPage(){
|
|
return 2;
|
|
}
|
|
|
|
public class CachedCompostRecipe extends CachedRecipe{
|
|
|
|
public PositionedStack result;
|
|
public PositionedStack input;
|
|
public int chance;
|
|
|
|
public CachedCompostRecipe(ItemStack input, ItemStack result){
|
|
this.result = new PositionedStack(result, 67+32, 19);
|
|
this.input = new PositionedStack(input, 5+32, 19);
|
|
}
|
|
|
|
@Override
|
|
public PositionedStack getResult(){
|
|
return result;
|
|
}
|
|
|
|
@Override
|
|
public PositionedStack getIngredient(){
|
|
return input;
|
|
}
|
|
}*/
|
|
} |