Package net.minecraft.world.chunk
Class ArrayPalette<T>
java.lang.Object
net.minecraft.world.chunk.ArrayPalette<T>
- All Implemented Interfaces:
Palette<T>
A palette that stores the possible entries in an array and maps them
to their indices in the array.
- Mappings:
Namespace Name official deb
intermediary net/minecraft/class_2834
named net/minecraft/world/chunk/ArrayPalette
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraft.world.chunk.Palette
Palette.Factory
-
Field Summary
Modifier and TypeFieldDescriptionprivate final T[]
private final IndexedIterable<T>
private final int
private final PaletteResizeListener<T>
private int
-
Constructor Summary
ModifierConstructorDescriptionprivate
ArrayPalette
(IndexedIterable<T> idList, int bits, PaletteResizeListener<T> listener, List<T> list) private
ArrayPalette
(IndexedIterable<T> idList, T[] array, PaletteResizeListener<T> listener, int indexBits, int size) -
Method Summary
Modifier and TypeMethodDescriptioncopy()
static <A> Palette<A>
create
(int bits, IndexedIterable<A> idList, PaletteResizeListener<A> listener, List<A> list) get
(int id) Returns the object associated with the givenid
.int
Returns the serialized size of this palette in a byte buf, in bytes.int
getSize()
Returns the size of the palette.boolean
Returnstrue
if any entry in this palette passes thepredicate
.int
Returns the ID of an object in this palette.void
readPacket
(PacketByteBuf buf) Initializes this palette from thebuf
.void
writePacket
(PacketByteBuf buf) Writes this palette to thebuf
.
-
Field Details
-
idList
- Mappings:
Namespace Name Mixin selector official a
Ldeb;a:Lhi;
intermediary field_12900
Lnet/minecraft/class_2834;field_12900:Lnet/minecraft/class_2359;
named idList
Lnet/minecraft/world/chunk/ArrayPalette;idList:Lnet/minecraft/util/collection/IndexedIterable;
-
array
- Mappings:
Namespace Name Mixin selector official b
Ldeb;b:[Ljava/lang/Object;
intermediary field_12904
Lnet/minecraft/class_2834;field_12904:[Ljava/lang/Object;
named array
Lnet/minecraft/world/chunk/ArrayPalette;array:[Ljava/lang/Object;
-
listener
- Mappings:
Namespace Name Mixin selector official c
Ldeb;c:Ldee;
intermediary field_12905
Lnet/minecraft/class_2834;field_12905:Lnet/minecraft/class_2835;
named listener
Lnet/minecraft/world/chunk/ArrayPalette;listener:Lnet/minecraft/world/chunk/PaletteResizeListener;
-
indexBits
private final int indexBits- Mappings:
Namespace Name Mixin selector official d
Ldeb;d:I
intermediary field_12903
Lnet/minecraft/class_2834;field_12903:I
named indexBits
Lnet/minecraft/world/chunk/ArrayPalette;indexBits:I
-
size
private int size- Mappings:
Namespace Name Mixin selector official e
Ldeb;e:I
intermediary field_12901
Lnet/minecraft/class_2834;field_12901:I
named size
Lnet/minecraft/world/chunk/ArrayPalette;size:I
-
-
Constructor Details
-
ArrayPalette
private ArrayPalette(IndexedIterable<T> idList, int bits, PaletteResizeListener<T> listener, List<T> list) - Mappings:
Namespace Name Mixin selector official <init>
Ldeb;<init>(Lhi;ILdee;Ljava/util/List;)V
intermediary <init>
Lnet/minecraft/class_2834;<init>(Lnet/minecraft/class_2359;ILnet/minecraft/class_2835;Ljava/util/List;)V
named <init>
Lnet/minecraft/world/chunk/ArrayPalette;<init>(Lnet/minecraft/util/collection/IndexedIterable;ILnet/minecraft/world/chunk/PaletteResizeListener;Ljava/util/List;)V
-
ArrayPalette
private ArrayPalette(IndexedIterable<T> idList, T[] array, PaletteResizeListener<T> listener, int indexBits, int size) - Mappings:
Namespace Name Mixin selector official <init>
Ldeb;<init>(Lhi;[Ljava/lang/Object;Ldee;II)V
intermediary <init>
Lnet/minecraft/class_2834;<init>(Lnet/minecraft/class_2359;[Ljava/lang/Object;Lnet/minecraft/class_2835;II)V
named <init>
Lnet/minecraft/world/chunk/ArrayPalette;<init>(Lnet/minecraft/util/collection/IndexedIterable;[Ljava/lang/Object;Lnet/minecraft/world/chunk/PaletteResizeListener;II)V
-
-
Method Details
-
create
public static <A> Palette<A> create(int bits, IndexedIterable<A> idList, PaletteResizeListener<A> listener, List<A> list) - Mappings:
Namespace Name Mixin selector official a
Ldeb;a(ILhi;Ldee;Ljava/util/List;)Lded;
intermediary method_38295
Lnet/minecraft/class_2834;method_38295(ILnet/minecraft/class_2359;Lnet/minecraft/class_2835;Ljava/util/List;)Lnet/minecraft/class_2837;
named create
Lnet/minecraft/world/chunk/ArrayPalette;create(ILnet/minecraft/util/collection/IndexedIterable;Lnet/minecraft/world/chunk/PaletteResizeListener;Ljava/util/List;)Lnet/minecraft/world/chunk/Palette;
-
index
Returns the ID of an object in this palette.If the object does not yet exist in this palette, this palette will register the object. If the palette is too small to include this object, a resize listener will be called and this palette may be discarded.
- Specified by:
index
in interfacePalette<T>
- Parameters:
object
- the object to look up- Returns:
- the ID of an object in this palette
- Mappings:
Namespace Name Mixin selector official a
Lded;a(Ljava/lang/Object;)I
intermediary method_12291
Lnet/minecraft/class_2837;method_12291(Ljava/lang/Object;)I
named index
Lnet/minecraft/world/chunk/Palette;index(Ljava/lang/Object;)I
-
hasAny
Returnstrue
if any entry in this palette passes thepredicate
.- Specified by:
hasAny
in interfacePalette<T>
- Returns:
true
if any entry in this palette passes thepredicate
- Mappings:
Namespace Name Mixin selector official a
Lded;a(Ljava/util/function/Predicate;)Z
intermediary method_19525
Lnet/minecraft/class_2837;method_19525(Ljava/util/function/Predicate;)Z
named hasAny
Lnet/minecraft/world/chunk/Palette;hasAny(Ljava/util/function/Predicate;)Z
-
get
Returns the object associated with the givenid
.- Specified by:
get
in interfacePalette<T>
- Parameters:
id
- the ID to look up- Returns:
- the object associated with the given
id
- Mappings:
Namespace Name Mixin selector official a
Lded;a(I)Ljava/lang/Object;
intermediary method_12288
Lnet/minecraft/class_2837;method_12288(I)Ljava/lang/Object;
named get
Lnet/minecraft/world/chunk/Palette;get(I)Ljava/lang/Object;
-
readPacket
Initializes this palette from thebuf
. Clears the preexisting data in this palette.- Specified by:
readPacket
in interfacePalette<T>
- Parameters:
buf
- the packet byte buffer- Mappings:
Namespace Name Mixin selector official a
Lded;a(Lss;)V
intermediary method_12289
Lnet/minecraft/class_2837;method_12289(Lnet/minecraft/class_2540;)V
named readPacket
Lnet/minecraft/world/chunk/Palette;readPacket(Lnet/minecraft/network/PacketByteBuf;)V
-
writePacket
Writes this palette to thebuf
.- Specified by:
writePacket
in interfacePalette<T>
- Parameters:
buf
- the packet byte buffer- Mappings:
Namespace Name Mixin selector official b
Lded;b(Lss;)V
intermediary method_12287
Lnet/minecraft/class_2837;method_12287(Lnet/minecraft/class_2540;)V
named writePacket
Lnet/minecraft/world/chunk/Palette;writePacket(Lnet/minecraft/network/PacketByteBuf;)V
-
getPacketSize
public int getPacketSize()Returns the serialized size of this palette in a byte buf, in bytes.- Specified by:
getPacketSize
in interfacePalette<T>
- Returns:
- the serialized size of this palette in a byte buf, in bytes
- Mappings:
Namespace Name Mixin selector official a
Lded;a()I
intermediary method_12290
Lnet/minecraft/class_2837;method_12290()I
named getPacketSize
Lnet/minecraft/world/chunk/Palette;getPacketSize()I
-
getSize
public int getSize()Returns the size of the palette. -
copy
-