Record Class ShapedRecipePattern
java.lang.Object
java.lang.Record
net.minecraft.world.item.crafting.ShapedRecipePattern
public record ShapedRecipePattern(int width, int height, NonNullList<Ingredient> ingredients, Optional<ShapedRecipePattern.Data> data)
extends Record
-
Nested Class Summary
Nested Classes -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final Optional<ShapedRecipePattern.Data> The field for thedatarecord component.private final intThe field for theheightrecord component.private final NonNullList<Ingredient> The field for theingredientsrecord component.static final com.mojang.serialization.MapCodec<ShapedRecipePattern> private static final intDeprecated.(package private) static int(package private) static intstatic final StreamCodec<RegistryFriendlyByteBuf, ShapedRecipePattern> private final intThe field for thewidthrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionShapedRecipePattern(int width, int height, NonNullList<Ingredient> ingredients, Optional<ShapedRecipePattern.Data> data) Creates an instance of aShapedRecipePatternrecord class. -
Method Summary
Modifier and TypeMethodDescriptiondata()Returns the value of thedatarecord component.final booleanIndicates whether some other object is "equal to" this one.private static intfirstNonSpace(String p_312343_) private static ShapedRecipePatternfromNetwork(RegistryFriendlyByteBuf p_319788_) static intstatic intfinal inthashCode()Returns a hash code value for this object.intheight()Returns the value of theheightrecord component.Returns the value of theingredientsrecord component.private static intlastNonSpace(String p_311944_) booleanmatches(CraftingContainer p_311919_) private booleanmatches(CraftingContainer p_312113_, int p_312598_, int p_312930_, boolean p_312052_) static ShapedRecipePatternof(Map<Character, Ingredient> p_312851_, String... p_312645_) static ShapedRecipePatternstatic voidsetCraftingSize(int width, int height) Expand the max width and height allowed in the deserializer.(package private) static String[]private voidtoNetwork(RegistryFriendlyByteBuf p_320098_) final StringtoString()Returns a string representation of this record class.private static com.mojang.serialization.DataResult<ShapedRecipePattern> unpack(ShapedRecipePattern.Data p_312037_) intwidth()Returns the value of thewidthrecord component.
-
Field Details
-
width
private final int widthThe field for thewidthrecord component. -
height
private final int heightThe field for theheightrecord component. -
ingredients
The field for theingredientsrecord component. -
data
The field for thedatarecord component. -
MAX_SIZE
Deprecated.Neo: usegetMaxWidth()andgetMaxHeight()- See Also:
-
maxWidth
static int maxWidth -
maxHeight
static int maxHeight -
MAP_CODEC
-
STREAM_CODEC
-
-
Constructor Details
-
ShapedRecipePattern
public ShapedRecipePattern(int width, int height, NonNullList<Ingredient> ingredients, Optional<ShapedRecipePattern.Data> data) Creates an instance of aShapedRecipePatternrecord class.- Parameters:
width- the value for thewidthrecord componentheight- the value for theheightrecord componentingredients- the value for theingredientsrecord componentdata- the value for thedatarecord component
-
-
Method Details
-
getMaxWidth
public static int getMaxWidth() -
getMaxHeight
public static int getMaxHeight() -
setCraftingSize
public static void setCraftingSize(int width, int height) Expand the max width and height allowed in the deserializer. This should be called by modders who add custom crafting tables that are larger than the vanilla 3x3.- Parameters:
width- your max recipe widthheight- your max recipe height
-
of
-
of
-
unpack
private static com.mojang.serialization.DataResult<ShapedRecipePattern> unpack(ShapedRecipePattern.Data p_312037_) -
shrink
-
firstNonSpace
-
lastNonSpace
-
matches
-
matches
private boolean matches(CraftingContainer p_312113_, int p_312598_, int p_312930_, boolean p_312052_) -
toNetwork
-
fromNetwork
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
width
public int width()Returns the value of thewidthrecord component.- Returns:
- the value of the
widthrecord component
-
height
public int height()Returns the value of theheightrecord component.- Returns:
- the value of the
heightrecord component
-
ingredients
Returns the value of theingredientsrecord component.- Returns:
- the value of the
ingredientsrecord component
-
data
Returns the value of thedatarecord component.- Returns:
- the value of the
datarecord component
-
getMaxWidth()andgetMaxHeight()