Class UShapedRecipeSerializer<T extends net.minecraft.world.item.crafting.ShapedRecipe>

java.lang.Object
info.u_team.u_team_core.recipeserializer.UShapedRecipeSerializer<T>
All Implemented Interfaces:
net.minecraft.world.item.crafting.RecipeSerializer<T>
Direct Known Subclasses:
NoMirrorShapedRecipe.Serializer

public abstract class UShapedRecipeSerializer<T extends net.minecraft.world.item.crafting.ShapedRecipe> extends Object implements net.minecraft.world.item.crafting.RecipeSerializer<T>
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Class
    Description
    protected static final record 
     
  • Field Summary

    Fields inherited from interface net.minecraft.world.item.crafting.RecipeSerializer

    ARMOR_DYE, BANNER_DUPLICATE, BLASTING_RECIPE, BOOK_CLONING, CAMPFIRE_COOKING_RECIPE, DECORATED_POT_RECIPE, FIREWORK_ROCKET, FIREWORK_STAR, FIREWORK_STAR_FADE, MAP_CLONING, MAP_EXTENDING, REPAIR_ITEM, SHAPED_RECIPE, SHAPELESS_RECIPE, SHIELD_DECORATION, SHULKER_BOX_COLORING, SMELTING_RECIPE, SMITHING_TRANSFORM, SMITHING_TRIM, SMOKING_RECIPE, STONECUTTER, SUSPICIOUS_STEW, TIPPED_ARROW
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    protected abstract T
    createRecipe(net.minecraft.resources.ResourceLocation location, String group, net.minecraft.world.item.crafting.CraftingBookCategory category, int recipeWidth, int recipeHeight, net.minecraft.core.NonNullList<net.minecraft.world.item.crafting.Ingredient> ingredients, net.minecraft.world.item.ItemStack output, boolean showNotification)
     
    static net.minecraft.core.NonNullList<net.minecraft.world.item.crafting.Ingredient>
    dissolvePattern(String[] pattern, Map<String,net.minecraft.world.item.crafting.Ingredient> keys, int width, int height)
     
    fromJson(net.minecraft.resources.ResourceLocation location, com.google.gson.JsonObject json)
     
    fromNetwork(net.minecraft.resources.ResourceLocation location, net.minecraft.network.FriendlyByteBuf buffer)
     
    static net.minecraft.world.item.Item
    itemFromJson(com.google.gson.JsonObject json)
     
    static net.minecraft.world.item.ItemStack
    itemStackFromJson(com.google.gson.JsonObject json)
     
    static Map<String,net.minecraft.world.item.crafting.Ingredient>
    keyFromJson(com.google.gson.JsonObject json)
     
    static String[]
    patternFromJson(com.google.gson.JsonArray json)
     
    static String[]
    shrink(String... shrink)
     
    void
    toNetwork(net.minecraft.network.FriendlyByteBuf buffer, T recipe)
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • UShapedRecipeSerializer

      public UShapedRecipeSerializer()
  • Method Details

    • dissolvePattern

      public static net.minecraft.core.NonNullList<net.minecraft.world.item.crafting.Ingredient> dissolvePattern(String[] pattern, Map<String,net.minecraft.world.item.crafting.Ingredient> keys, int width, int height)
    • shrink

      public static String[] shrink(String... shrink)
    • patternFromJson

      public static String[] patternFromJson(com.google.gson.JsonArray json)
    • keyFromJson

      public static Map<String,net.minecraft.world.item.crafting.Ingredient> keyFromJson(com.google.gson.JsonObject json)
    • itemStackFromJson

      public static net.minecraft.world.item.ItemStack itemStackFromJson(com.google.gson.JsonObject json)
    • itemFromJson

      public static net.minecraft.world.item.Item itemFromJson(com.google.gson.JsonObject json)
    • fromJson

      public T fromJson(net.minecraft.resources.ResourceLocation location, com.google.gson.JsonObject json)
      Specified by:
      fromJson in interface net.minecraft.world.item.crafting.RecipeSerializer<T extends net.minecraft.world.item.crafting.ShapedRecipe>
    • fromNetwork

      public T fromNetwork(net.minecraft.resources.ResourceLocation location, net.minecraft.network.FriendlyByteBuf buffer)
      Specified by:
      fromNetwork in interface net.minecraft.world.item.crafting.RecipeSerializer<T extends net.minecraft.world.item.crafting.ShapedRecipe>
    • toNetwork

      public void toNetwork(net.minecraft.network.FriendlyByteBuf buffer, T recipe)
      Specified by:
      toNetwork in interface net.minecraft.world.item.crafting.RecipeSerializer<T extends net.minecraft.world.item.crafting.ShapedRecipe>
    • createRecipe

      protected abstract T createRecipe(net.minecraft.resources.ResourceLocation location, String group, net.minecraft.world.item.crafting.CraftingBookCategory category, int recipeWidth, int recipeHeight, net.minecraft.core.NonNullList<net.minecraft.world.item.crafting.Ingredient> ingredients, net.minecraft.world.item.ItemStack output, boolean showNotification)