Class ShapelessRecipe

java.lang.Object
net.minecraft.recipe.ShapelessRecipe
All Implemented Interfaces:
CraftingRecipe, Recipe<CraftingInventory>

public class ShapelessRecipe extends Object implements CraftingRecipe
Mappings:
Namespace Name
official cgu
intermediary net/minecraft/class_1867
named net/minecraft/recipe/ShapelessRecipe
  • Field Details

    • id

      private final Identifier id
      Mappings:
      Namespace Name Mixin selector
      official a Lcgu;a:Lacf;
      intermediary field_9048 Lnet/minecraft/class_1867;field_9048:Lnet/minecraft/class_2960;
      named id Lnet/minecraft/recipe/ShapelessRecipe;id:Lnet/minecraft/util/Identifier;
    • group

      final String group
      Mappings:
      Namespace Name Mixin selector
      official b Lcgu;b:Ljava/lang/String;
      intermediary field_9049 Lnet/minecraft/class_1867;field_9049:Ljava/lang/String;
      named group Lnet/minecraft/recipe/ShapelessRecipe;group:Ljava/lang/String;
    • category

      final CraftingRecipeCategory category
      Mappings:
      Namespace Name Mixin selector
      official c Lcgu;c:Lcgf;
      intermediary field_40257 Lnet/minecraft/class_1867;field_40257:Lnet/minecraft/class_7710;
      named category Lnet/minecraft/recipe/ShapelessRecipe;category:Lnet/minecraft/recipe/book/CraftingRecipeCategory;
    • output

      final ItemStack output
      Mappings:
      Namespace Name Mixin selector
      official d Lcgu;d:Lcdt;
      intermediary field_9050 Lnet/minecraft/class_1867;field_9050:Lnet/minecraft/class_1799;
      named output Lnet/minecraft/recipe/ShapelessRecipe;output:Lnet/minecraft/item/ItemStack;
    • input

      final DefaultedList<Ingredient> input
      Mappings:
      Namespace Name Mixin selector
      official e Lcgu;e:Lhi;
      intermediary field_9047 Lnet/minecraft/class_1867;field_9047:Lnet/minecraft/class_2371;
      named input Lnet/minecraft/recipe/ShapelessRecipe;input:Lnet/minecraft/util/collection/DefaultedList;
  • Constructor Details

    • ShapelessRecipe

      public ShapelessRecipe(Identifier id, String group, CraftingRecipeCategory category, ItemStack output, DefaultedList<Ingredient> input)
      Mappings:
      Namespace Name Mixin selector
      official <init> Lcgu;<init>(Lacf;Ljava/lang/String;Lcgf;Lcdt;Lhi;)V
      intermediary <init> Lnet/minecraft/class_1867;<init>(Lnet/minecraft/class_2960;Ljava/lang/String;Lnet/minecraft/class_7710;Lnet/minecraft/class_1799;Lnet/minecraft/class_2371;)V
      named <init> Lnet/minecraft/recipe/ShapelessRecipe;<init>(Lnet/minecraft/util/Identifier;Ljava/lang/String;Lnet/minecraft/recipe/book/CraftingRecipeCategory;Lnet/minecraft/item/ItemStack;Lnet/minecraft/util/collection/DefaultedList;)V
  • Method Details

    • getId

      public Identifier getId()
      Returns the ID of this recipe.
      Specified by:
      getId in interface Recipe<CraftingInventory>
      Returns:
      the ID of this recipe
      Mappings:
      Namespace Name Mixin selector
      official f Lcgo;f()Lacf;
      intermediary method_8114 Lnet/minecraft/class_1860;method_8114()Lnet/minecraft/class_2960;
      named getId Lnet/minecraft/recipe/Recipe;getId()Lnet/minecraft/util/Identifier;
    • getSerializer

      public RecipeSerializer<?> getSerializer()
      Returns the serializer associated with this recipe.
      Specified by:
      getSerializer in interface Recipe<CraftingInventory>
      Returns:
      the serializer associated with this recipe
      Mappings:
      Namespace Name Mixin selector
      official X_ Lcgo;X_()Lcgq;
      intermediary method_8119 Lnet/minecraft/class_1860;method_8119()Lnet/minecraft/class_1865;
      named getSerializer Lnet/minecraft/recipe/Recipe;getSerializer()Lnet/minecraft/recipe/RecipeSerializer;
    • 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<CraftingInventory>
      Returns:
      a group this recipe belongs in, or an empty string
      Mappings:
      Namespace Name Mixin selector
      official d Lcgo;d()Ljava/lang/String;
      intermediary method_8112 Lnet/minecraft/class_1860;method_8112()Ljava/lang/String;
      named getGroup Lnet/minecraft/recipe/Recipe;getGroup()Ljava/lang/String;
    • getCategory

      public CraftingRecipeCategory getCategory()
      Specified by:
      getCategory in interface CraftingRecipe
      Mappings:
      Namespace Name Mixin selector
      official e Lcgg;e()Lcgf;
      intermediary method_45441 Lnet/minecraft/class_3955;method_45441()Lnet/minecraft/class_7710;
      named getCategory Lnet/minecraft/recipe/CraftingRecipe;getCategory()Lnet/minecraft/recipe/book/CraftingRecipeCategory;
    • getOutput

      public ItemStack getOutput()
      Returns a preview of the recipe's output.

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

      Specified by:
      getOutput in interface Recipe<CraftingInventory>
      Returns:
      a preview of the recipe's output
      Mappings:
      Namespace Name Mixin selector
      official c Lcgo;c()Lcdt;
      intermediary method_8110 Lnet/minecraft/class_1860;method_8110()Lnet/minecraft/class_1799;
      named getOutput Lnet/minecraft/recipe/Recipe;getOutput()Lnet/minecraft/item/ItemStack;
    • 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<CraftingInventory>
      Returns:
      the ingredients accepted as inputs for this recipe
      Mappings:
      Namespace Name Mixin selector
      official a Lcgo;a()Lhi;
      intermediary method_8117 Lnet/minecraft/class_1860;method_8117()Lnet/minecraft/class_2371;
      named getIngredients Lnet/minecraft/recipe/Recipe;getIngredients()Lnet/minecraft/util/collection/DefaultedList;
    • matches

      public boolean matches(CraftingInventory craftingInventory, 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<CraftingInventory>
      Parameters:
      craftingInventory - the input inventory
      world - the input world
      Returns:
      whether this recipe matches the contents inside the inventory in the given world
      Mappings:
      Namespace Name Mixin selector
      official a Lcgu;a(Lbzu;Lcjw;)Z
      intermediary method_17730 Lnet/minecraft/class_1867;method_17730(Lnet/minecraft/class_1715;Lnet/minecraft/class_1937;)Z
      named matches Lnet/minecraft/recipe/ShapelessRecipe;matches(Lnet/minecraft/inventory/CraftingInventory;Lnet/minecraft/world/World;)Z
    • craft

      public ItemStack craft(CraftingInventory craftingInventory)
      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<CraftingInventory>
      Parameters:
      craftingInventory - the input inventory
      Returns:
      the resulting item stack
      Mappings:
      Namespace Name Mixin selector
      official a Lcgu;a(Lbzu;)Lcdt;
      intermediary method_17729 Lnet/minecraft/class_1867;method_17729(Lnet/minecraft/class_1715;)Lnet/minecraft/class_1799;
      named craft Lnet/minecraft/recipe/ShapelessRecipe;craft(Lnet/minecraft/inventory/CraftingInventory;)Lnet/minecraft/item/ItemStack;
    • 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<CraftingInventory>
      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
      official a Lcgo;a(II)Z
      intermediary method_8113 Lnet/minecraft/class_1860;method_8113(II)Z
      named fits Lnet/minecraft/recipe/Recipe;fits(II)Z