1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- package me.shedaniel.rei.api;
- import me.shedaniel.rei.RoughlyEnoughItemsCore;
- import net.minecraft.item.ItemStack;
- import net.minecraft.recipe.RecipeManager;
- import net.minecraft.util.Identifier;
- import java.util.List;
- import java.util.Map;
- import java.util.Optional;
- public interface IRecipeHelper {
-
- public static IRecipeHelper getInstance() {
- return RoughlyEnoughItemsCore.getRecipeHelper();
- }
-
- public int getRecipeCount();
-
- public List<ItemStack> findCraftableByItems(List<ItemStack> inventoryItems);
-
- public void registerCategory(IRecipeCategory category);
-
- public void registerDisplay(Identifier categoryIdentifier, IRecipeDisplay display);
-
- public Map<IRecipeCategory, List<IRecipeDisplay>> getRecipesFor(ItemStack stack);
-
- public RecipeManager getRecipeManager();
-
- public List<IRecipeCategory> getAllCategories();
-
- public Map<IRecipeCategory, List<IRecipeDisplay>> getUsagesFor(ItemStack stack);
-
- public Optional<SpeedCraftAreaSupplier> getSpeedCraftButtonArea(IRecipeCategory category);
-
- public void registerSpeedCraftButtonArea(Identifier category, SpeedCraftAreaSupplier rectangle);
-
- public List<SpeedCraftFunctional> getSpeedCraftFunctional(IRecipeCategory category);
-
- public void registerSpeedCraftFunctional(Identifier category, SpeedCraftFunctional functional);
-
- Map<IRecipeCategory, List<IRecipeDisplay>> getAllRecipes();
-
- }
|