Class AbstractCookingRecipe

java.lang.Object
net.minecraft.recipe.AbstractCookingRecipe
All Implemented Interfaces:
Recipe<SingleStackRecipeInput>
Direct Known Subclasses:
BlastingRecipe, CampfireCookingRecipe, SmeltingRecipe, SmokingRecipe

public abstract class AbstractCookingRecipe extends Object implements Recipe<SingleStackRecipeInput>
Mappings:
Namespace Name
named net/minecraft/recipe/AbstractCookingRecipe
intermediary net/minecraft/class_1874
official cyf
  • Field Details

    • type

      protected final RecipeType<?> type
      Mappings:
      Namespace Name Mixin selector
      named type Lnet/minecraft/recipe/AbstractCookingRecipe;type:Lnet/minecraft/recipe/RecipeType;
      intermediary field_17544 Lnet/minecraft/class_1874;field_17544:Lnet/minecraft/class_3956;
      official a Lcyf;a:Lczd;
    • category

      protected final CookingRecipeCategory category
      Mappings:
      Namespace Name Mixin selector
      named category Lnet/minecraft/recipe/AbstractCookingRecipe;category:Lnet/minecraft/recipe/book/CookingRecipeCategory;
      intermediary field_40241 Lnet/minecraft/class_1874;field_40241:Lnet/minecraft/class_7709;
      official b Lcyf;b:Lcyl;
    • group

      protected final String group
      Mappings:
      Namespace Name Mixin selector
      named group Lnet/minecraft/recipe/AbstractCookingRecipe;group:Ljava/lang/String;
      intermediary field_9062 Lnet/minecraft/class_1874;field_9062:Ljava/lang/String;
      official c Lcyf;c:Ljava/lang/String;
    • ingredient

      protected final Ingredient ingredient
      Mappings:
      Namespace Name Mixin selector
      named ingredient Lnet/minecraft/recipe/AbstractCookingRecipe;ingredient:Lnet/minecraft/recipe/Ingredient;
      intermediary field_9061 Lnet/minecraft/class_1874;field_9061:Lnet/minecraft/class_1856;
      official d Lcyf;d:Lcyu;
    • result

      protected final ItemStack result
      Mappings:
      Namespace Name Mixin selector
      named result Lnet/minecraft/recipe/AbstractCookingRecipe;result:Lnet/minecraft/item/ItemStack;
      intermediary field_9059 Lnet/minecraft/class_1874;field_9059:Lnet/minecraft/class_1799;
      official e Lcyf;e:Lcuo;
    • experience

      protected final float experience
      Mappings:
      Namespace Name Mixin selector
      named experience Lnet/minecraft/recipe/AbstractCookingRecipe;experience:F
      intermediary field_9057 Lnet/minecraft/class_1874;field_9057:F
      official f Lcyf;f:F
    • cookingTime

      protected final int cookingTime
      Mappings:
      Namespace Name Mixin selector
      named cookingTime Lnet/minecraft/recipe/AbstractCookingRecipe;cookingTime:I
      intermediary field_9058 Lnet/minecraft/class_1874;field_9058:I
      official g Lcyf;g:I
  • Constructor Details

    • AbstractCookingRecipe

      public AbstractCookingRecipe(RecipeType<?> type, String group, CookingRecipeCategory category, Ingredient ingredient, ItemStack result, float experience, int cookingTime)
      Mappings:
      Namespace Name Mixin selector
      named <init> Lnet/minecraft/recipe/AbstractCookingRecipe;<init>(Lnet/minecraft/recipe/RecipeType;Ljava/lang/String;Lnet/minecraft/recipe/book/CookingRecipeCategory;Lnet/minecraft/recipe/Ingredient;Lnet/minecraft/item/ItemStack;FI)V
      intermediary <init> Lnet/minecraft/class_1874;<init>(Lnet/minecraft/class_3956;Ljava/lang/String;Lnet/minecraft/class_7709;Lnet/minecraft/class_1856;Lnet/minecraft/class_1799;FI)V
      official <init> Lcyf;<init>(Lczd;Ljava/lang/String;Lcyl;Lcyu;Lcuo;FI)V
  • Method Details

    • matches

      public boolean matches(SingleStackRecipeInput singleStackRecipeInput, World world)
      Description copied from interface: Recipe
      Returns whether this recipe matches the contents inside the inventory in the given world.

      The world currently is only used by the map cloning recipe to prevent duplication of explorer maps.

      Specified by:
      matches in interface Recipe<SingleStackRecipeInput>
      Parameters:
      world - the input world
      Returns:
      whether this recipe matches the contents inside the inventory in the given world
      Mappings:
      Namespace Name Mixin selector
      named matches Lnet/minecraft/recipe/AbstractCookingRecipe;matches(Lnet/minecraft/recipe/input/SingleStackRecipeInput;Lnet/minecraft/world/World;)Z
      intermediary method_59981 Lnet/minecraft/class_1874;method_59981(Lnet/minecraft/class_9696;Lnet/minecraft/class_1937;)Z
      official a Lcyf;a(Lczn;Ldcu;)Z
    • craft

      public ItemStack craft(SingleStackRecipeInput singleStackRecipeInput, RegistryWrapper.WrapperLookup wrapperLookup)
      Description copied from interface: Recipe
      Crafts this recipe.

      This method does not perform side effects on the inventory.

      This method should return a new item stack on each call.

      Specified by:
      craft in interface Recipe<SingleStackRecipeInput>
      Returns:
      the resulting item stack
      Mappings:
      Namespace Name Mixin selector
      named craft Lnet/minecraft/recipe/AbstractCookingRecipe;craft(Lnet/minecraft/recipe/input/SingleStackRecipeInput;Lnet/minecraft/registry/RegistryWrapper$WrapperLookup;)Lnet/minecraft/item/ItemStack;
      intermediary method_59982 Lnet/minecraft/class_1874;method_59982(Lnet/minecraft/class_9696;Lnet/minecraft/class_7225$class_7874;)Lnet/minecraft/class_1799;
      official a Lcyf;a(Lczn;Ljo$a;)Lcuo;
    • fits

      public boolean fits(int width, int height)
      Returns whether this recipe will fit into the given grid size.

      This is currently only used by recipe book.

      Specified by:
      fits in interface Recipe<SingleStackRecipeInput>
      Parameters:
      width - the width of the input inventory
      height - the height of the input inventory
      Returns:
      whether this recipe will fit into the given grid size
      Mappings:
      Namespace Name Mixin selector
      named fits Lnet/minecraft/recipe/Recipe;fits(II)Z
      intermediary method_8113 Lnet/minecraft/class_1860;method_8113(II)Z
      official a Lcyx;a(II)Z
    • getIngredients

      public DefaultedList<Ingredient> getIngredients()
      Returns the ingredients accepted as inputs for this recipe. Used by the recipe book when displaying a ghost form of this recipe on the crafting grid as well as for previewing the possible inputs in the book itself.
      Specified by:
      getIngredients in interface Recipe<SingleStackRecipeInput>
      Returns:
      the ingredients accepted as inputs for this recipe
      Mappings:
      Namespace Name Mixin selector
      named getIngredients Lnet/minecraft/recipe/Recipe;getIngredients()Lnet/minecraft/util/collection/DefaultedList;
      intermediary method_8117 Lnet/minecraft/class_1860;method_8117()Lnet/minecraft/class_2371;
      official a Lcyx;a()Ljv;
    • getExperience

      public float getExperience()
      Mappings:
      Namespace Name Mixin selector
      named getExperience Lnet/minecraft/recipe/AbstractCookingRecipe;getExperience()F
      intermediary method_8171 Lnet/minecraft/class_1874;method_8171()F
      official b Lcyf;b()F
    • getResult

      public ItemStack getResult(RegistryWrapper.WrapperLookup registriesLookup)
      Returns a preview of the recipe's output.

      The returned stack should not be modified. To obtain the actual output, call craft(Inventory, DynamicRegistryManager).

      Specified by:
      getResult in interface Recipe<SingleStackRecipeInput>
      Returns:
      a preview of the recipe's output
      Mappings:
      Namespace Name Mixin selector
      named getResult Lnet/minecraft/recipe/Recipe;getResult(Lnet/minecraft/registry/RegistryWrapper$WrapperLookup;)Lnet/minecraft/item/ItemStack;
      intermediary method_8110 Lnet/minecraft/class_1860;method_8110(Lnet/minecraft/class_7225$class_7874;)Lnet/minecraft/class_1799;
      official a Lcyx;a(Ljo$a;)Lcuo;
    • getGroup

      public String getGroup()
      Returns a group this recipe belongs in, or an empty string. This is only used by the recipe book.

      The group string is arbitrary, and is not rendered anywhere; in the recipe book, recipes with the same group will belong to the same cell in the grid of recipes. If the string is empty, this recipe will belong to its own cell.

      Specified by:
      getGroup in interface Recipe<SingleStackRecipeInput>
      Returns:
      a group this recipe belongs in, or an empty string
      Mappings:
      Namespace Name Mixin selector
      named getGroup Lnet/minecraft/recipe/Recipe;getGroup()Ljava/lang/String;
      intermediary method_8112 Lnet/minecraft/class_1860;method_8112()Ljava/lang/String;
      official c Lcyx;c()Ljava/lang/String;
    • getCookingTime

      public int getCookingTime()
      Mappings:
      Namespace Name Mixin selector
      named getCookingTime Lnet/minecraft/recipe/AbstractCookingRecipe;getCookingTime()I
      intermediary method_8167 Lnet/minecraft/class_1874;method_8167()I
      official d Lcyf;d()I
    • getType

      public RecipeType<?> getType()
      Returns the type of this recipe.

      The type in the recipe JSON format is the serializer instead.

      Specified by:
      getType in interface Recipe<SingleStackRecipeInput>
      Returns:
      the type of this recipe
      Mappings:
      Namespace Name Mixin selector
      named getType Lnet/minecraft/recipe/Recipe;getType()Lnet/minecraft/recipe/RecipeType;
      intermediary method_17716 Lnet/minecraft/class_1860;method_17716()Lnet/minecraft/class_3956;
      official e Lcyx;e()Lczd;
    • getCategory

      public CookingRecipeCategory getCategory()
      Mappings:
      Namespace Name Mixin selector
      named getCategory Lnet/minecraft/recipe/AbstractCookingRecipe;getCategory()Lnet/minecraft/recipe/book/CookingRecipeCategory;
      intermediary method_45438 Lnet/minecraft/class_1874;method_45438()Lnet/minecraft/class_7709;
      official f Lcyf;f()Lcyl;