package com.minelittlepony.unicopia.item; import com.google.gson.JsonArray; import net.minecraft.recipe.Ingredient; import net.minecraft.recipe.Recipe; import net.minecraft.recipe.RecipeSerializer; import net.minecraft.recipe.RecipeType; import net.minecraft.recipe.ShapelessRecipe; import net.minecraft.recipe.SpecialRecipeSerializer; import net.minecraft.util.Identifier; import net.minecraft.util.collection.DefaultedList; import net.minecraft.util.registry.Registry; public interface URecipes { RecipeSerializer ZAP_APPLE_SERIALIZER = register("crafting_zap_apple", new ZapAppleRecipe.Serializer()); RecipeSerializer GLOWING_SERIALIZER = register("crafting_glowing", new SpecialRecipeSerializer<>(GlowingRecipe::new)); RecipeSerializer JAR_INSERT_SERIALIZER = register("jar_insert", new SpecialRecipeSerializer<>(JarInsertRecipe::new)); static > RecipeType register(final String id) { return Registry.register(Registry.RECIPE_TYPE, new Identifier("unicopia", id), new RecipeType() { @Override public String toString() { return id; } }); } static , T extends Recipe> S register(String id, S serializer) { return Registry.register(Registry.RECIPE_SERIALIZER, new Identifier("unicopia", id), serializer); } static DefaultedList getIngredients(JsonArray json) { DefaultedList defaultedList = DefaultedList.of(); for (int i = 0; i < json.size(); ++i) { Ingredient ingredient = Ingredient.fromJson(json.get(i)); if (!ingredient.isEmpty()) { defaultedList.add(ingredient); } } return defaultedList; } static void bootstrap() {} }