Class ShapedRecipe.Serializer

java.lang.Object
net.minecraft.recipe.ShapedRecipe.Serializer
All Implemented Interfaces:
RecipeSerializer<ShapedRecipe>
Enclosing class:
ShapedRecipe

public static class ShapedRecipe.Serializer extends Object implements RecipeSerializer<ShapedRecipe>
Mappings:
Namespace Name
official cgt$a
intermediary net/minecraft/class_1869$class_1870
named net/minecraft/recipe/ShapedRecipe$Serializer
  • Constructor Details

    • Serializer

      public Serializer()
  • Method Details

    • read

      public ShapedRecipe read(Identifier identifier, JsonObject jsonObject)
      Description copied from interface: RecipeSerializer
      Reads a recipe from a JSON object.
      Specified by:
      read in interface RecipeSerializer<ShapedRecipe>
      Parameters:
      identifier - the recipe's ID
      jsonObject - the recipe JSON
      Returns:
      the read recipe
      Mappings:
      Namespace Name Mixin selector
      official b Lcgt$a;b(Lacf;Lcom/google/gson/JsonObject;)Lcgt;
      intermediary method_8164 Lnet/minecraft/class_1869$class_1870;method_8164(Lnet/minecraft/class_2960;Lcom/google/gson/JsonObject;)Lnet/minecraft/class_1869;
      named read Lnet/minecraft/recipe/ShapedRecipe$Serializer;read(Lnet/minecraft/util/Identifier;Lcom/google/gson/JsonObject;)Lnet/minecraft/recipe/ShapedRecipe;
    • read

      public ShapedRecipe read(Identifier identifier, PacketByteBuf packetByteBuf)
      Description copied from interface: RecipeSerializer
      Reads a recipe from a packet byte buf, usually on the client.

      This can throw whatever exception the packet byte buf throws. This may be called in the netty event loop than the client game engine thread.

      Specified by:
      read in interface RecipeSerializer<ShapedRecipe>
      Parameters:
      identifier - the recipe's ID
      packetByteBuf - the recipe buf
      Returns:
      the read recipe
      Mappings:
      Namespace Name Mixin selector
      official b Lcgt$a;b(Lacf;Lsd;)Lcgt;
      intermediary method_8163 Lnet/minecraft/class_1869$class_1870;method_8163(Lnet/minecraft/class_2960;Lnet/minecraft/class_2540;)Lnet/minecraft/class_1869;
      named read Lnet/minecraft/recipe/ShapedRecipe$Serializer;read(Lnet/minecraft/util/Identifier;Lnet/minecraft/network/PacketByteBuf;)Lnet/minecraft/recipe/ShapedRecipe;
    • write

      public void write(PacketByteBuf packetByteBuf, ShapedRecipe shapedRecipe)
      Description copied from interface: RecipeSerializer
      Writes a recipe to a packet byte buf, usually on the server.

      The recipe's ID is already written into the buf when this is called.

      This can throw whatever exception the packet byte buf throws. This may be called in the netty event loop than the server game engine thread.

      Specified by:
      write in interface RecipeSerializer<ShapedRecipe>
      Parameters:
      packetByteBuf - the recipe buf
      shapedRecipe - the recipe
      Mappings:
      Namespace Name Mixin selector
      official a Lcgt$a;a(Lsd;Lcgt;)V
      intermediary method_8165 Lnet/minecraft/class_1869$class_1870;method_8165(Lnet/minecraft/class_2540;Lnet/minecraft/class_1869;)V
      named write Lnet/minecraft/recipe/ShapedRecipe$Serializer;write(Lnet/minecraft/network/PacketByteBuf;Lnet/minecraft/recipe/ShapedRecipe;)V