Package net.minecraft.recipe
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 cmzintermediary net/minecraft/class_3957named net/minecraft/recipe/CookingRecipeSerializer
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescription(package private) static interface -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final com.mojang.serialization.Codec<T>private final CookingRecipeSerializer.RecipeFactory<T>Fields inherited from interface net.minecraft.recipe.RecipeSerializer
ARMOR_DYE, BANNER_DUPLICATE, BLASTING, BOOK_CLONING, CAMPFIRE_COOKING, CRAFTING_DECORATED_POT, FIREWORK_ROCKET, FIREWORK_STAR, FIREWORK_STAR_FADE, MAP_CLONING, MAP_EXTENDING, REPAIR_ITEM, SHAPED, SHAPELESS, SHIELD_DECORATION, SHULKER_BOX, SMELTING, SMITHING_TRANSFORM, SMITHING_TRIM, SMOKING, STONECUTTING, SUSPICIOUS_STEW, TIPPED_ARROW -
Constructor Summary
ConstructorsConstructorDescriptionCookingRecipeSerializer(CookingRecipeSerializer.RecipeFactory<T> recipeFactory, int cookingTime) -
Method Summary
Modifier and TypeMethodDescriptioncom.mojang.serialization.Codec<T>codec()read(PacketByteBuf packetByteBuf) Reads a recipe from a packet byte buf, usually on the client.voidwrite(PacketByteBuf packetByteBuf, T t) Writes a recipe to a packet byte buf, usually on the server.
-
Field Details
-
recipeFactory
- Mappings:
Namespace Name Mixin selector official xLcmz;x:Lcmz$a;intermediary field_17552Lnet/minecraft/class_3957;field_17552:Lnet/minecraft/class_3957$class_3958;named recipeFactoryLnet/minecraft/recipe/CookingRecipeSerializer;recipeFactory:Lnet/minecraft/recipe/CookingRecipeSerializer$RecipeFactory;
-
codec
- Mappings:
Namespace Name Mixin selector official yLcmz;y:Lcom/mojang/serialization/Codec;intermediary field_46105Lnet/minecraft/class_3957;field_46105:Lcom/mojang/serialization/Codec;named codecLnet/minecraft/recipe/CookingRecipeSerializer;codec:Lcom/mojang/serialization/Codec;
-
-
Constructor Details
-
CookingRecipeSerializer
public CookingRecipeSerializer(CookingRecipeSerializer.RecipeFactory<T> recipeFactory, int cookingTime) - Mappings:
Namespace Name Mixin selector official <init>Lcmz;<init>(Lcmz$a;I)Vintermediary <init>Lnet/minecraft/class_3957;<init>(Lnet/minecraft/class_3957$class_3958;I)Vnamed <init>Lnet/minecraft/recipe/CookingRecipeSerializer;<init>(Lnet/minecraft/recipe/CookingRecipeSerializer$RecipeFactory;I)V
-
-
Method Details
-
codec
- Specified by:
codecin interfaceRecipeSerializer<T extends AbstractCookingRecipe>- Mappings:
Namespace Name Mixin selector official aLcms;a()Lcom/mojang/serialization/Codec;intermediary method_53736Lnet/minecraft/class_1865;method_53736()Lcom/mojang/serialization/Codec;named codecLnet/minecraft/recipe/RecipeSerializer;codec()Lcom/mojang/serialization/Codec;
-
read
Description copied from interface:RecipeSerializerReads 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:
readin interfaceRecipeSerializer<T extends AbstractCookingRecipe>- Returns:
- the read recipe
- Mappings:
Namespace Name Mixin selector official bLcmz;b(Lso;)Lclx;intermediary method_17737Lnet/minecraft/class_3957;method_17737(Lnet/minecraft/class_2540;)Lnet/minecraft/class_1874;named readLnet/minecraft/recipe/CookingRecipeSerializer;read(Lnet/minecraft/network/PacketByteBuf;)Lnet/minecraft/recipe/AbstractCookingRecipe;
-
write
Description copied from interface:RecipeSerializerWrites 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:
writein interfaceRecipeSerializer<T extends AbstractCookingRecipe>- Parameters:
packetByteBuf- the recipe buft- the recipe- Mappings:
Namespace Name Mixin selector official aLcmz;a(Lso;Lclx;)Vintermediary method_17735Lnet/minecraft/class_3957;method_17735(Lnet/minecraft/class_2540;Lnet/minecraft/class_1874;)Vnamed writeLnet/minecraft/recipe/CookingRecipeSerializer;write(Lnet/minecraft/network/PacketByteBuf;Lnet/minecraft/recipe/AbstractCookingRecipe;)V
-