Class SingularPalette<T>

java.lang.Object
net.minecraft.world.chunk.SingularPalette<T>
All Implemented Interfaces:
Palette<T>

public class SingularPalette<T> extends Object implements Palette<T>
A palette that only holds a unique entry. Useful for void chunks or a single biome.
Mappings:
Namespace Name
official dbk
intermediary net/minecraft/class_6564
named net/minecraft/world/chunk/SingularPalette
  • Field Details

    • idList

      private final IndexedIterable<T> idList
      Mappings:
      Namespace Name Mixin selector
      official a Ldbk;a:Lhe;
      intermediary field_34573 Lnet/minecraft/class_6564;field_34573:Lnet/minecraft/class_2359;
      named idList Lnet/minecraft/world/chunk/SingularPalette;idList:Lnet/minecraft/util/collection/IndexedIterable;
    • entry

      @Nullable private T entry
      Mappings:
      Namespace Name Mixin selector
      official b Ldbk;b:Ljava/lang/Object;
      intermediary field_34574 Lnet/minecraft/class_6564;field_34574:Ljava/lang/Object;
      named entry Lnet/minecraft/world/chunk/SingularPalette;entry:Ljava/lang/Object;
    • listener

      private final PaletteResizeListener<T> listener
      Mappings:
      Namespace Name Mixin selector
      official c Ldbk;c:Ldbg;
      intermediary field_34575 Lnet/minecraft/class_6564;field_34575:Lnet/minecraft/class_2835;
      named listener Lnet/minecraft/world/chunk/SingularPalette;listener:Lnet/minecraft/world/chunk/PaletteResizeListener;
  • Constructor Details

    • SingularPalette

      public SingularPalette(IndexedIterable<T> idList, PaletteResizeListener<T> listener, List<T> entries)
      Mappings:
      Namespace Name Mixin selector
      official <init> Ldbk;<init>(Lhe;Ldbg;Ljava/util/List;)V
      intermediary <init> Lnet/minecraft/class_6564;<init>(Lnet/minecraft/class_2359;Lnet/minecraft/class_2835;Ljava/util/List;)V
      named <init> Lnet/minecraft/world/chunk/SingularPalette;<init>(Lnet/minecraft/util/collection/IndexedIterable;Lnet/minecraft/world/chunk/PaletteResizeListener;Ljava/util/List;)V
  • Method Details

    • create

      public static <A> Palette<A> create(int bitSize, IndexedIterable<A> idList, PaletteResizeListener<A> listener, List<A> entries)
      Creates a singular palette. Used as method reference to create factory.
      Parameters:
      bitSize - 0, as this palette has only 20=1 entry
      Mappings:
      Namespace Name Mixin selector
      official a Ldbk;a(ILhe;Ldbg;Ljava/util/List;)Ldbf;
      intermediary method_38316 Lnet/minecraft/class_6564;method_38316(ILnet/minecraft/class_2359;Lnet/minecraft/class_2835;Ljava/util/List;)Lnet/minecraft/class_2837;
      named create Lnet/minecraft/world/chunk/SingularPalette;create(ILnet/minecraft/util/collection/IndexedIterable;Lnet/minecraft/world/chunk/PaletteResizeListener;Ljava/util/List;)Lnet/minecraft/world/chunk/Palette;
    • index

      public int index(T object)
      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 interface Palette<T>
      Parameters:
      object - the object to look up
      Returns:
      the ID of an object in this palette
      Mappings:
      Namespace Name Mixin selector
      official a Ldbf;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

      public boolean hasAny(Predicate<T> predicate)
      Returns true if any entry in this palette passes the predicate.
      Specified by:
      hasAny in interface Palette<T>
      Returns:
      true if any entry in this palette passes the predicate
      Mappings:
      Namespace Name Mixin selector
      official a Ldbf;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

      public T get(int id)
      Returns the object associated with the given id.
      Specified by:
      get in interface Palette<T>
      Parameters:
      id - the ID to look up
      Returns:
      the object associated with the given id
      Mappings:
      Namespace Name Mixin selector
      official a Ldbf;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

      public void readPacket(PacketByteBuf buf)
      Initializes this palette from the buf. Clears the preexisting data in this palette.
      Specified by:
      readPacket in interface Palette<T>
      Parameters:
      buf - the packet byte buffer
      Mappings:
      Namespace Name Mixin selector
      official a Ldbf;a(Lsd;)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

      public void writePacket(PacketByteBuf buf)
      Writes this palette to the buf.
      Specified by:
      writePacket in interface Palette<T>
      Parameters:
      buf - the packet byte buffer
      Mappings:
      Namespace Name Mixin selector
      official b Ldbf;b(Lsd;)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 interface Palette<T>
      Returns:
      the serialized size of this palette in a byte buf, in bytes
      Mappings:
      Namespace Name Mixin selector
      official a Ldbf;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.
      Specified by:
      getSize in interface Palette<T>
      Returns:
      the size of the palette
      Mappings:
      Namespace Name Mixin selector
      official b Ldbf;b()I
      intermediary method_12197 Lnet/minecraft/class_2837;method_12197()I
      named getSize Lnet/minecraft/world/chunk/Palette;getSize()I
    • copy

      public Palette<T> copy()
      Specified by:
      copy in interface Palette<T>
      Mappings:
      Namespace Name Mixin selector
      official c Ldbf;c()Ldbf;
      intermediary method_39956 Lnet/minecraft/class_2837;method_39956()Lnet/minecraft/class_2837;
      named copy Lnet/minecraft/world/chunk/Palette;copy()Lnet/minecraft/world/chunk/Palette;