ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/api/internal/IMethodHandler.java

64 lines
2.6 KiB
Java
Raw Normal View History

2016-05-14 13:51:18 +02:00
package de.ellpeck.actuallyadditions.api.internal;
2016-11-12 15:13:20 +01:00
import de.ellpeck.actuallyadditions.api.booklet.IBookletChapter;
import de.ellpeck.actuallyadditions.api.booklet.IBookletEntry;
import de.ellpeck.actuallyadditions.api.booklet.IBookletPage;
2016-05-14 13:51:18 +02:00
import de.ellpeck.actuallyadditions.api.recipe.CoffeeIngredient;
import net.minecraft.block.BlockState;
2016-05-14 13:51:18 +02:00
import net.minecraft.item.ItemStack;
2016-11-12 15:13:20 +01:00
import net.minecraft.item.crafting.IRecipe;
import net.minecraft.potion.EffectInstance;
2016-11-12 15:13:20 +01:00
import net.minecraft.util.ResourceLocation;
import net.minecraft.util.math.BlockPos;
2016-05-14 13:51:18 +02:00
import java.util.List;
2016-05-14 13:51:18 +02:00
/**
* This is the internal method handler.
* Use ActuallyAdditionsAPI.methodHandler for calling
* This is not supposed to be implemented.
*/
2019-05-02 09:10:29 +02:00
public interface IMethodHandler {
2016-05-14 13:51:18 +02:00
boolean addEffectToStack(ItemStack stack, CoffeeIngredient ingredient);
EffectInstance getSameEffectFromStack(ItemStack stack, EffectInstance effect);
2016-05-14 13:51:18 +02:00
void addEffectProperties(ItemStack stack, EffectInstance effect, boolean addDur, boolean addAmp);
2016-05-14 13:51:18 +02:00
void addEffectToStack(ItemStack stack, EffectInstance effect);
2016-05-14 13:51:18 +02:00
EffectInstance[] getEffectsFromStack(ItemStack stack);
boolean invokeConversionLens(BlockState hitState, BlockPos hitBlock, IAtomicReconstructor tile);
boolean invokeReconstructor(IAtomicReconstructor tile);
2019-05-02 09:10:29 +02:00
boolean addCrusherRecipes(List<ItemStack> inputs, List<ItemStack> outputOnes, int outputOneAmounts, List<ItemStack> outputTwos, int outputTwoAmounts, int outputTwoChance);
2019-02-27 19:53:05 +01:00
@Deprecated //Use Ingredient input on AA API class
boolean addCrusherRecipes(List<ItemStack> inputs, ItemStack outputOne, int outputOneAmount, ItemStack outputTwo, int outputTwoAmount, int outputTwoChance);
2016-11-12 15:13:20 +01:00
IBookletPage generateTextPage(int id);
IBookletPage generatePicturePage(int id, ResourceLocation resLoc, int textStartY);
IBookletPage generateCraftingPage(int id, IRecipe... recipes);
IBookletPage generateFurnacePage(int id, ItemStack input, ItemStack result);
IBookletChapter generateBookletChapter(String identifier, IBookletEntry entry, ItemStack displayStack, IBookletPage... pages);
2016-11-22 22:54:35 +01:00
IBookletPage generateTextPage(int id, int priority);
IBookletPage generatePicturePage(int id, ResourceLocation resLoc, int textStartY, int priority);
IBookletPage generateCraftingPage(int id, int priority, IRecipe... recipes);
IBookletPage generateFurnacePage(int id, ItemStack input, ItemStack result, int priority);
IBookletChapter generateBookletChapter(String identifier, IBookletEntry entry, ItemStack displayStack, int priority, IBookletPage... pages);
2017-02-18 00:54:58 +01:00
IBookletChapter createTrial(String identifier, ItemStack displayStack, boolean textOnSecondPage);
2016-05-14 13:51:18 +02:00
}