Class DefaultRecipeHandler
java.lang.Object
org.cyclops.commoncapabilities.api.capability.recipehandler.DefaultRecipeHandler
- All Implemented Interfaces:
IRecipeHandler
A default recipe handler that contains a dirt to diamonds recipe.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionSet
<IngredientComponent<?, ?>> Set
<IngredientComponent<?, ?>> boolean
isValidSizeInput
(IngredientComponent component, int size) Check if the given size of recipe component instances are valid for the given recipe component type.simulate
(IMixedIngredients input) Test if the given recipe input can be handled by this handler.
-
Constructor Details
-
DefaultRecipeHandler
public DefaultRecipeHandler()
-
-
Method Details
-
getRecipeInputComponents
- Specified by:
getRecipeInputComponents
in interfaceIRecipeHandler
- Returns:
- The input recipe component types that are possible for recipes in this handler.
-
getRecipeOutputComponents
- Specified by:
getRecipeOutputComponents
in interfaceIRecipeHandler
- Returns:
- The output recipe component types that are possible for recipes in this handler.
-
isValidSizeInput
Description copied from interface:IRecipeHandler
Check if the given size of recipe component instances are valid for the given recipe component type.- Specified by:
isValidSizeInput
in interfaceIRecipeHandler
- Parameters:
component
- The component type.size
- A certain length of recipe component instances.- Returns:
- If the given size of recipe component instances can be used by this recipe handler.
-
getRecipes
- Specified by:
getRecipes
in interfaceIRecipeHandler
- Returns:
- Recipes that are available through this handler, this list is not necessarily exhaustive, but SHOULD be. No consistent order should be assumed from in collection.
-
simulate
Description copied from interface:IRecipeHandler
Test if the given recipe input can be handled by this handler. This method is mainly meant to be indicative. No actual crafting processes should be crafted because of this, i.e., calling this method should not have any effects on the state of this recipe handler.- Specified by:
simulate
in interfaceIRecipeHandler
- Parameters:
input
- A recipe input.- Returns:
- The simulated output, or null if no valid recipe for the given input was found.
-