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
-
Field Summary
Modifier and TypeFieldDescriptionprivate final Optional
<ShapedRecipePattern.Data> The field for thedata
record component.private final int
The field for theheight
record component.private final NonNullList
<Ingredient> The field for theingredients
record component.static final com.mojang.serialization.MapCodec
<ShapedRecipePattern> private static final int
Deprecated.(package private) static int
(package private) static int
static final StreamCodec
<RegistryFriendlyByteBuf, ShapedRecipePattern> private final int
The field for thewidth
record component. -
Constructor Summary
ConstructorDescriptionShapedRecipePattern
(int width, int height, NonNullList<Ingredient> ingredients, Optional<ShapedRecipePattern.Data> data) Creates an instance of aShapedRecipePattern
record class. -
Method Summary
Modifier and TypeMethodDescriptiondata()
Returns the value of thedata
record component.final boolean
Indicates whether some other object is "equal to" this one.private static int
firstNonSpace
(String p_312343_) private static ShapedRecipePattern
fromNetwork
(RegistryFriendlyByteBuf p_319788_) static int
static int
final int
hashCode()
Returns a hash code value for this object.int
height()
Returns the value of theheight
record component.Returns the value of theingredients
record component.private static int
lastNonSpace
(String p_311944_) boolean
matches
(CraftingContainer p_311919_) private boolean
matches
(CraftingContainer p_312113_, int p_312598_, int p_312930_, boolean p_312052_) static ShapedRecipePattern
of
(Map<Character, Ingredient> p_312851_, String... p_312645_) static ShapedRecipePattern
static void
setCraftingSize
(int width, int height) Expand the max width and height allowed in the deserializer.(package private) static String[]
private void
toNetwork
(RegistryFriendlyByteBuf p_320098_) final String
toString()
Returns a string representation of this record class.private static com.mojang.serialization.DataResult
<ShapedRecipePattern> unpack
(ShapedRecipePattern.Data p_312037_) int
width()
Returns the value of thewidth
record component.
-
Field Details
-
width
private final int widthThe field for thewidth
record component. -
height
private final int heightThe field for theheight
record component. -
ingredients
The field for theingredients
record component. -
data
The field for thedata
record 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 aShapedRecipePattern
record class.- Parameters:
width
- the value for thewidth
record componentheight
- the value for theheight
record componentingredients
- the value for theingredients
record componentdata
- the value for thedata
record 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 thewidth
record component.- Returns:
- the value of the
width
record component
-
height
public int height()Returns the value of theheight
record component.- Returns:
- the value of the
height
record component
-
ingredients
Returns the value of theingredients
record component.- Returns:
- the value of the
ingredients
record component
-
data
Returns the value of thedata
record component.- Returns:
- the value of the
data
record component
-
getMaxWidth()
andgetMaxHeight()