Class CookingRecipeSerializer<T extends AbstractCookingRecipe>

java.lang.Object
net.minecraft.recipe.CookingRecipeSerializer<T>
All Implemented Interfaces:
RecipeSerializer<T>

public class CookingRecipeSerializer<T extends AbstractCookingRecipe> extends Object implements RecipeSerializer<T>
Mappings:
Namespace Name
official cgx
intermediary net/minecraft/class_3957
named net/minecraft/recipe/CookingRecipeSerializer
  • Field Details

    • cookingTime

      private final int cookingTime
      Mappings:
      Namespace Name Mixin selector
      official v Lcgx;v:I
      intermediary field_17551 Lnet/minecraft/class_3957;field_17551:I
      named cookingTime Lnet/minecraft/recipe/CookingRecipeSerializer;cookingTime:I
    • recipeFactory

      private final CookingRecipeSerializer.RecipeFactory<T extends AbstractCookingRecipe> recipeFactory
      Mappings:
      Namespace Name Mixin selector
      official w Lcgx;w:Lcgx$a;
      intermediary field_17552 Lnet/minecraft/class_3957;field_17552:Lnet/minecraft/class_3957$class_3958;
      named recipeFactory Lnet/minecraft/recipe/CookingRecipeSerializer;recipeFactory:Lnet/minecraft/recipe/CookingRecipeSerializer$RecipeFactory;
  • Constructor Details

    • CookingRecipeSerializer

      public CookingRecipeSerializer(CookingRecipeSerializer.RecipeFactory<T> recipeFactory, int cookingTime)
      Mappings:
      Namespace Name Mixin selector
      official <init> Lcgx;<init>(Lcgx$a;I)V
      intermediary <init> Lnet/minecraft/class_3957;<init>(Lnet/minecraft/class_3957$class_3958;I)V
      named <init> Lnet/minecraft/recipe/CookingRecipeSerializer;<init>(Lnet/minecraft/recipe/CookingRecipeSerializer$RecipeFactory;I)V
  • Method Details

    • read

      public T read(Identifier identifier, JsonObject jsonObject)
      Description copied from interface: RecipeSerializer
      Reads a recipe from a JSON object.
      Specified by:
      read in interface RecipeSerializer<T extends AbstractCookingRecipe>
      Parameters:
      identifier - the recipe's ID
      jsonObject - the recipe JSON
      Returns:
      the read recipe
      Mappings:
      Namespace Name Mixin selector
      official b Lcgx;b(Lacf;Lcom/google/gson/JsonObject;)Lcfy;
      intermediary method_17736 Lnet/minecraft/class_3957;method_17736(Lnet/minecraft/class_2960;Lcom/google/gson/JsonObject;)Lnet/minecraft/class_1874;
      named read Lnet/minecraft/recipe/CookingRecipeSerializer;read(Lnet/minecraft/util/Identifier;Lcom/google/gson/JsonObject;)Lnet/minecraft/recipe/AbstractCookingRecipe;
    • read

      public T 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<T extends AbstractCookingRecipe>
      Parameters:
      identifier - the recipe's ID
      packetByteBuf - the recipe buf
      Returns:
      the read recipe
      Mappings:
      Namespace Name Mixin selector
      official b Lcgx;b(Lacf;Lsd;)Lcfy;
      intermediary method_17737 Lnet/minecraft/class_3957;method_17737(Lnet/minecraft/class_2960;Lnet/minecraft/class_2540;)Lnet/minecraft/class_1874;
      named read Lnet/minecraft/recipe/CookingRecipeSerializer;read(Lnet/minecraft/util/Identifier;Lnet/minecraft/network/PacketByteBuf;)Lnet/minecraft/recipe/AbstractCookingRecipe;
    • write

      public void write(PacketByteBuf packetByteBuf, T t)
      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<T extends AbstractCookingRecipe>
      Parameters:
      packetByteBuf - the recipe buf
      t - the recipe
      Mappings:
      Namespace Name Mixin selector
      official a Lcgx;a(Lsd;Lcfy;)V
      intermediary method_17735 Lnet/minecraft/class_3957;method_17735(Lnet/minecraft/class_2540;Lnet/minecraft/class_1874;)V
      named write Lnet/minecraft/recipe/CookingRecipeSerializer;write(Lnet/minecraft/network/PacketByteBuf;Lnet/minecraft/recipe/AbstractCookingRecipe;)V