Moved recipe utility methods to RecipeUtils

This commit is contained in:
drcrazy 2019-07-30 01:46:12 +03:00
parent 878734e4ad
commit aa7464ad4a
6 changed files with 38 additions and 40 deletions

View file

@ -25,8 +25,15 @@
package techreborn.utils;
import net.minecraft.item.ItemStack;
import net.minecraft.recipe.Ingredient;
import net.minecraft.recipe.Recipe;
import net.minecraft.recipe.RecipeType;
import net.minecraft.world.World;
import techreborn.items.ItemDynamicCell;
import java.util.List;
import java.util.stream.Collectors;
import javax.annotation.Nonnull;
public class RecipeUtils {
@ -34,4 +41,21 @@ public class RecipeUtils {
public static ItemStack getEmptyCell(int stackSize) {
return ItemDynamicCell.getEmptyCell(stackSize);
}
/**
*
* Used to get the matching output of a recipe type that only has 1 input
*
*/
public static <T extends Recipe<?>> ItemStack getMatchingRecipes(World world, RecipeType<T> type, ItemStack input){
return getRecipes(world, type).stream()
.filter(recipe -> recipe.getPreviewInputs().size() == 1 && ((Ingredient)recipe.getPreviewInputs().get(0)).test(input))
.map(Recipe::getOutput)
.findFirst()
.orElse(ItemStack.EMPTY);
}
public static <T extends Recipe<?>> List<Recipe<?>> getRecipes(World world, RecipeType<T> type){
return world.getRecipeManager().values().stream().filter(iRecipe -> iRecipe.getType() == type).collect(Collectors.toList());
}
}