Interface PacketCodecs
- See Also:
- Mappings:
Namespace Name named net/minecraft/network/codec/PacketCodecs
intermediary net/minecraft/class_9135
official zl
-
Field Summary
Modifier and TypeFieldDescriptionstatic final PacketCodec
<ByteBuf, Boolean> A codec for a boolean value.static final PacketCodec
<ByteBuf, Byte> A codec for a byte value.static final PacketCodec
<ByteBuf, byte[]> A codec for a byte array.static final PacketCodec
<ByteBuf, Double> A codec for a double value.static final int
static final PacketCodec
<ByteBuf, Float> A codec for a float value.static final PacketCodec
<ByteBuf, com.mojang.authlib.GameProfile> static final PacketCodec
<ByteBuf, Integer> A codec for an integer value.static final PacketCodec
<ByteBuf, NbtCompound> A codec for an NBT compound of up to0x200000L
bytes.static final PacketCodec
<ByteBuf, NbtElement> A codec for an NBT element of up to0x200000L
bytes.static final PacketCodec
<ByteBuf, Optional<NbtCompound>> A codec for an optional NBT compound of up to 2097152 bytes.static final PacketCodec
<ByteBuf, com.mojang.authlib.properties.PropertyMap> static final PacketCodec
<ByteBuf, Quaternionf> A codec for aQuaternionf
.static final PacketCodec
<ByteBuf, Short> A codec for a short value.static final PacketCodec
<ByteBuf, String> A codec for a string value with maximum length 32767.static final PacketCodec
<ByteBuf, NbtCompound> A codec for an NBT compound of unlimited size.static final PacketCodec
<ByteBuf, NbtElement> A codec for an NBT element of unlimited size.static final PacketCodec
<ByteBuf, Integer> A codec for an unsigned short value.static final PacketCodec
<ByteBuf, Integer> A codec for a variable-length integer (var int) value.static final PacketCodec
<ByteBuf, Long> A codec for a variable-length long (var long) value.static final PacketCodec
<ByteBuf, Vector3f> A codec for aVector3f
. -
Method Summary
Modifier and TypeMethodDescriptionstatic PacketCodec
<ByteBuf, byte[]> byteArray
(int maxLength) Returns a codec for a byte array with maximum lengthmaxLength
.static <T> PacketCodec
<ByteBuf, T> codec
(com.mojang.serialization.Codec<T> codec) Returns a codec from DataFixerUpper codeccodec
.static <T> PacketCodec
<ByteBuf, T> codec
(com.mojang.serialization.Codec<T> codec, Supplier<NbtSizeTracker> sizeTracker) static <B extends ByteBuf,
V, C extends Collection<V>>
PacketCodec<B, C> collection
(IntFunction<C> factory, PacketCodec<? super B, V> elementCodec) Returns a codec for a collection of values.static <B extends ByteBuf,
V, C extends Collection<V>>
PacketCodec<B, C> collection
(IntFunction<C> factory, PacketCodec<? super B, V> elementCodec, int maxSize) static <B extends ByteBuf,
L, R>
PacketCodec<B, com.mojang.datafixers.util.Either<L, R>> either
(PacketCodec<? super B, L> left, PacketCodec<? super B, R> right) static <T> PacketCodec
<ByteBuf, T> entryOf
(IndexedIterable<T> iterable) Returns a codec for an entry ofiterable
.static <T> PacketCodec
<ByteBuf, T> indexed
(IntFunction<T> indexToValue, ToIntFunction<T> valueToIndex) Returns a codec for an indexed value.static <B extends ByteBuf,
K, V, M extends Map<K, V>>
PacketCodec<B, M> map
(IntFunction<? extends M> factory, PacketCodec<? super B, K> keyCodec, PacketCodec<? super B, V> valueCodec) Returns a codec for a map.static <B extends ByteBuf,
K, V, M extends Map<K, V>>
PacketCodec<B, M> map
(IntFunction<? extends M> factory, PacketCodec<? super B, K> keyCodec, PacketCodec<? super B, V> valueCodec, int maxSize) static PacketCodec
<ByteBuf, NbtElement> nbt
(Supplier<NbtSizeTracker> sizeTracker) Returns a codec for an NBT element.static PacketCodec
<ByteBuf, NbtCompound> nbtCompound
(Supplier<NbtSizeTracker> sizeTracker) static <B extends ByteBuf,
V>
PacketCodec<B, Optional<V>> optional
(PacketCodec<B, V> codec) Returns a codec wrapping another codec, the value of which is optional.static int
readCollectionSize
(ByteBuf buf, int maxSize) private static <T,
R> PacketCodec <RegistryByteBuf, R> registry
(RegistryKey<? extends Registry<T>> registry, Function<Registry<T>, IndexedIterable<R>> registryTransformer) static <T> PacketCodec
<RegistryByteBuf, T> registryCodec
(com.mojang.serialization.Codec<T> codec) static <T> PacketCodec
<RegistryByteBuf, T> registryCodec
(com.mojang.serialization.Codec<T> codec, Supplier<NbtSizeTracker> sizeTracker) static <T> PacketCodec
<RegistryByteBuf, RegistryEntry<T>> registryEntry
(RegistryKey<? extends Registry<T>> registry) Returns a codec for a referenceRegistryEntry
.static <T> PacketCodec
<RegistryByteBuf, RegistryEntry<T>> registryEntry
(RegistryKey<? extends Registry<T>> registry, PacketCodec<? super RegistryByteBuf, T> directCodec) Returns a codec for aRegistryEntry
.static <T> PacketCodec
<RegistryByteBuf, RegistryEntryList<T>> registryEntryList
(RegistryKey<? extends Registry<T>> registryRef) static <T> PacketCodec
<RegistryByteBuf, T> registryValue
(RegistryKey<? extends Registry<T>> registry) Returns a codec for aRegistry
-registered value.static PacketCodec
<ByteBuf, String> string
(int maxLength) Returns a codec for a string value with maximum lengthmaxLength
.static <B extends ByteBuf,
V, C extends Collection<V>>
PacketCodec.ResultFunction<B, V, C> toCollection
(IntFunction<C> collectionFactory) Used to make a codec for a collection of values usingPacketCodec.collect(net.minecraft.network.codec.PacketCodec.ResultFunction<B, V, O>)
.static <B extends ByteBuf,
V>
PacketCodec.ResultFunction<B, V, List<V>> toList()
Used to make a codec for a list of values usingPacketCodec.collect(net.minecraft.network.codec.PacketCodec.ResultFunction<B, V, O>)
.static <B extends ByteBuf,
V>
PacketCodec.ResultFunction<B, V, List<V>> toList
(int maxLength) static <T> PacketCodec
<ByteBuf, T> unlimitedCodec
(com.mojang.serialization.Codec<T> codec) Returns a codec from DataFixerUpper codeccodec
.static <T> PacketCodec
<RegistryByteBuf, T> unlimitedRegistryCodec
(com.mojang.serialization.Codec<T> codec) static void
writeCollectionSize
(ByteBuf buf, int size, int maxSize)
-
Field Details
-
field_49674
static final int field_49674- See Also:
- Mappings:
Namespace Name Mixin selector named field_49674
Lnet/minecraft/network/codec/PacketCodecs;field_49674:I
intermediary field_49674
Lnet/minecraft/class_9135;field_49674:I
official a
Lzl;a:I
-
BOOL
A codec for a boolean value.- See Also:
- Mappings:
Namespace Name Mixin selector named BOOL
Lnet/minecraft/network/codec/PacketCodecs;BOOL:Lnet/minecraft/network/codec/PacketCodec;
intermediary field_48547
Lnet/minecraft/class_9135;field_48547:Lnet/minecraft/class_9139;
official b
Lzl;b:Lzn;
-
BYTE
A codec for a byte value.- See Also:
- Mappings:
Namespace Name Mixin selector named BYTE
Lnet/minecraft/network/codec/PacketCodecs;BYTE:Lnet/minecraft/network/codec/PacketCodec;
intermediary field_48548
Lnet/minecraft/class_9135;field_48548:Lnet/minecraft/class_9139;
official c
Lzl;c:Lzn;
-
SHORT
A codec for a short value.- See Also:
- Mappings:
Namespace Name Mixin selector named SHORT
Lnet/minecraft/network/codec/PacketCodecs;SHORT:Lnet/minecraft/network/codec/PacketCodec;
intermediary field_48549
Lnet/minecraft/class_9135;field_48549:Lnet/minecraft/class_9139;
official d
Lzl;d:Lzn;
-
UNSIGNED_SHORT
A codec for an unsigned short value.- See Also:
- Mappings:
Namespace Name Mixin selector named UNSIGNED_SHORT
Lnet/minecraft/network/codec/PacketCodecs;UNSIGNED_SHORT:Lnet/minecraft/network/codec/PacketCodec;
intermediary field_51470
Lnet/minecraft/class_9135;field_51470:Lnet/minecraft/class_9139;
official e
Lzl;e:Lzn;
-
INTEGER
A codec for an integer value.- See Also:
- Mappings:
Namespace Name Mixin selector named INTEGER
Lnet/minecraft/network/codec/PacketCodecs;INTEGER:Lnet/minecraft/network/codec/PacketCodec;
intermediary field_49675
Lnet/minecraft/class_9135;field_49675:Lnet/minecraft/class_9139;
official f
Lzl;f:Lzn;
-
VAR_INT
A codec for a variable-length integer (var int) value.- See Also:
- Mappings:
Namespace Name Mixin selector named VAR_INT
Lnet/minecraft/network/codec/PacketCodecs;VAR_INT:Lnet/minecraft/network/codec/PacketCodec;
intermediary field_48550
Lnet/minecraft/class_9135;field_48550:Lnet/minecraft/class_9139;
official g
Lzl;g:Lzn;
-
VAR_LONG
A codec for a variable-length long (var long) value.- See Also:
- Mappings:
Namespace Name Mixin selector named VAR_LONG
Lnet/minecraft/network/codec/PacketCodecs;VAR_LONG:Lnet/minecraft/network/codec/PacketCodec;
intermediary field_48551
Lnet/minecraft/class_9135;field_48551:Lnet/minecraft/class_9139;
official h
Lzl;h:Lzn;
-
FLOAT
A codec for a float value.- See Also:
- Mappings:
Namespace Name Mixin selector named FLOAT
Lnet/minecraft/network/codec/PacketCodecs;FLOAT:Lnet/minecraft/network/codec/PacketCodec;
intermediary field_48552
Lnet/minecraft/class_9135;field_48552:Lnet/minecraft/class_9139;
official i
Lzl;i:Lzn;
-
DOUBLE
A codec for a double value.- See Also:
- Mappings:
Namespace Name Mixin selector named DOUBLE
Lnet/minecraft/network/codec/PacketCodecs;DOUBLE:Lnet/minecraft/network/codec/PacketCodec;
intermediary field_48553
Lnet/minecraft/class_9135;field_48553:Lnet/minecraft/class_9139;
official j
Lzl;j:Lzn;
-
BYTE_ARRAY
A codec for a byte array.- See Also:
- Mappings:
Namespace Name Mixin selector named BYTE_ARRAY
Lnet/minecraft/network/codec/PacketCodecs;BYTE_ARRAY:Lnet/minecraft/network/codec/PacketCodec;
intermediary field_48987
Lnet/minecraft/class_9135;field_48987:Lnet/minecraft/class_9139;
official k
Lzl;k:Lzn;
-
STRING
A codec for a string value with maximum length 32767.- See Also:
- Mappings:
Namespace Name Mixin selector named STRING
Lnet/minecraft/network/codec/PacketCodecs;STRING:Lnet/minecraft/network/codec/PacketCodec;
intermediary field_48554
Lnet/minecraft/class_9135;field_48554:Lnet/minecraft/class_9139;
official l
Lzl;l:Lzn;
-
NBT_ELEMENT
A codec for an NBT element of up to0x200000L
bytes.- See Also:
- Mappings:
Namespace Name Mixin selector named NBT_ELEMENT
Lnet/minecraft/network/codec/PacketCodecs;NBT_ELEMENT:Lnet/minecraft/network/codec/PacketCodec;
intermediary field_48555
Lnet/minecraft/class_9135;field_48555:Lnet/minecraft/class_9139;
official m
Lzl;m:Lzn;
-
UNLIMITED_NBT_ELEMENT
A codec for an NBT element of unlimited size.- See Also:
- Mappings:
Namespace Name Mixin selector named UNLIMITED_NBT_ELEMENT
Lnet/minecraft/network/codec/PacketCodecs;UNLIMITED_NBT_ELEMENT:Lnet/minecraft/network/codec/PacketCodec;
intermediary field_49676
Lnet/minecraft/class_9135;field_49676:Lnet/minecraft/class_9139;
official n
Lzl;n:Lzn;
-
NBT_COMPOUND
A codec for an NBT compound of up to0x200000L
bytes.- See Also:
- Mappings:
Namespace Name Mixin selector named NBT_COMPOUND
Lnet/minecraft/network/codec/PacketCodecs;NBT_COMPOUND:Lnet/minecraft/network/codec/PacketCodec;
intermediary field_48556
Lnet/minecraft/class_9135;field_48556:Lnet/minecraft/class_9139;
official o
Lzl;o:Lzn;
-
UNLIMITED_NBT_COMPOUND
A codec for an NBT compound of unlimited size.- See Also:
- Mappings:
Namespace Name Mixin selector named UNLIMITED_NBT_COMPOUND
Lnet/minecraft/network/codec/PacketCodecs;UNLIMITED_NBT_COMPOUND:Lnet/minecraft/network/codec/PacketCodec;
intermediary field_49677
Lnet/minecraft/class_9135;field_49677:Lnet/minecraft/class_9139;
official p
Lzl;p:Lzn;
-
OPTIONAL_NBT
A codec for an optional NBT compound of up to 2097152 bytes.- See Also:
- Mappings:
Namespace Name Mixin selector named OPTIONAL_NBT
Lnet/minecraft/network/codec/PacketCodecs;OPTIONAL_NBT:Lnet/minecraft/network/codec/PacketCodec;
intermediary field_48557
Lnet/minecraft/class_9135;field_48557:Lnet/minecraft/class_9139;
official q
Lzl;q:Lzn;
-
VECTOR3F
A codec for aVector3f
.- See Also:
- Mappings:
Namespace Name Mixin selector named VECTOR3F
Lnet/minecraft/network/codec/PacketCodecs;VECTOR3F:Lnet/minecraft/network/codec/PacketCodec;
intermediary field_48558
Lnet/minecraft/class_9135;field_48558:Lnet/minecraft/class_9139;
official r
Lzl;r:Lzn;
-
QUATERNIONF
A codec for aQuaternionf
.- See Also:
- Mappings:
Namespace Name Mixin selector named QUATERNIONF
Lnet/minecraft/network/codec/PacketCodecs;QUATERNIONF:Lnet/minecraft/network/codec/PacketCodec;
intermediary field_48559
Lnet/minecraft/class_9135;field_48559:Lnet/minecraft/class_9139;
official s
Lzl;s:Lzn;
-
PROPERTY_MAP
- Mappings:
Namespace Name Mixin selector named PROPERTY_MAP
Lnet/minecraft/network/codec/PacketCodecs;PROPERTY_MAP:Lnet/minecraft/network/codec/PacketCodec;
intermediary field_49678
Lnet/minecraft/class_9135;field_49678:Lnet/minecraft/class_9139;
official t
Lzl;t:Lzn;
-
GAME_PROFILE
- Mappings:
Namespace Name Mixin selector named GAME_PROFILE
Lnet/minecraft/network/codec/PacketCodecs;GAME_PROFILE:Lnet/minecraft/network/codec/PacketCodec;
intermediary field_49679
Lnet/minecraft/class_9135;field_49679:Lnet/minecraft/class_9139;
official u
Lzl;u:Lzn;
-
-
Method Details
-
byteArray
Returns a codec for a byte array with maximum lengthmaxLength
.- Returns:
- a codec for a byte array with maximum length
maxLength
- See Also:
- Mappings:
Namespace Name Mixin selector named byteArray
Lnet/minecraft/network/codec/PacketCodecs;byteArray(I)Lnet/minecraft/network/codec/PacketCodec;
intermediary method_56895
Lnet/minecraft/class_9135;method_56895(I)Lnet/minecraft/class_9139;
official a
Lzl;a(I)Lzn;
-
string
Returns a codec for a string value with maximum lengthmaxLength
.- Returns:
- a codec for a string value with maximum length
maxLength
- See Also:
- Mappings:
Namespace Name Mixin selector named string
Lnet/minecraft/network/codec/PacketCodecs;string(I)Lnet/minecraft/network/codec/PacketCodec;
intermediary method_56364
Lnet/minecraft/class_9135;method_56364(I)Lnet/minecraft/class_9139;
official b
Lzl;b(I)Lzn;
-
nbt
Returns a codec for an NBT element.- Returns:
- a codec for an NBT element
- See Also:
- Mappings:
Namespace Name Mixin selector named nbt
Lnet/minecraft/network/codec/PacketCodecs;nbt(Ljava/util/function/Supplier;)Lnet/minecraft/network/codec/PacketCodec;
intermediary method_56378
Lnet/minecraft/class_9135;method_56378(Ljava/util/function/Supplier;)Lnet/minecraft/class_9139;
official a
Lzl;a(Ljava/util/function/Supplier;)Lzn;
-
nbtCompound
- Mappings:
Namespace Name Mixin selector named nbtCompound
Lnet/minecraft/network/codec/PacketCodecs;nbtCompound(Ljava/util/function/Supplier;)Lnet/minecraft/network/codec/PacketCodec;
intermediary method_57998
Lnet/minecraft/class_9135;method_57998(Ljava/util/function/Supplier;)Lnet/minecraft/class_9139;
official b
Lzl;b(Ljava/util/function/Supplier;)Lzn;
-
unlimitedCodec
Returns a codec from DataFixerUpper codeccodec
.Internally, the data is serialized as an NBT element of unlimited size.
- Returns:
- a codec from DataFixerUpper codec
codec
- Mappings:
Namespace Name Mixin selector named unlimitedCodec
Lnet/minecraft/network/codec/PacketCodecs;unlimitedCodec(Lcom/mojang/serialization/Codec;)Lnet/minecraft/network/codec/PacketCodec;
intermediary method_57987
Lnet/minecraft/class_9135;method_57987(Lcom/mojang/serialization/Codec;)Lnet/minecraft/class_9139;
official a
Lzl;a(Lcom/mojang/serialization/Codec;)Lzn;
-
codec
Returns a codec from DataFixerUpper codeccodec
.Internally, the data is serialized as an NBT element of up to
200000L
bytes.- Returns:
- a codec from DataFixerUpper codec
codec
- Mappings:
Namespace Name Mixin selector named codec
Lnet/minecraft/network/codec/PacketCodecs;codec(Lcom/mojang/serialization/Codec;)Lnet/minecraft/network/codec/PacketCodec;
intermediary method_56368
Lnet/minecraft/class_9135;method_56368(Lcom/mojang/serialization/Codec;)Lnet/minecraft/class_9139;
official b
Lzl;b(Lcom/mojang/serialization/Codec;)Lzn;
-
codec
static <T> PacketCodec<ByteBuf,T> codec(com.mojang.serialization.Codec<T> codec, Supplier<NbtSizeTracker> sizeTracker) - Mappings:
Namespace Name Mixin selector named codec
Lnet/minecraft/network/codec/PacketCodecs;codec(Lcom/mojang/serialization/Codec;Ljava/util/function/Supplier;)Lnet/minecraft/network/codec/PacketCodec;
intermediary method_57988
Lnet/minecraft/class_9135;method_57988(Lcom/mojang/serialization/Codec;Ljava/util/function/Supplier;)Lnet/minecraft/class_9139;
official a
Lzl;a(Lcom/mojang/serialization/Codec;Ljava/util/function/Supplier;)Lzn;
-
unlimitedRegistryCodec
static <T> PacketCodec<RegistryByteBuf,T> unlimitedRegistryCodec(com.mojang.serialization.Codec<T> codec) - Mappings:
Namespace Name Mixin selector named unlimitedRegistryCodec
Lnet/minecraft/network/codec/PacketCodecs;unlimitedRegistryCodec(Lcom/mojang/serialization/Codec;)Lnet/minecraft/network/codec/PacketCodec;
intermediary method_58002
Lnet/minecraft/class_9135;method_58002(Lcom/mojang/serialization/Codec;)Lnet/minecraft/class_9139;
official c
Lzl;c(Lcom/mojang/serialization/Codec;)Lzn;
-
registryCodec
- Mappings:
Namespace Name Mixin selector named registryCodec
Lnet/minecraft/network/codec/PacketCodecs;registryCodec(Lcom/mojang/serialization/Codec;)Lnet/minecraft/network/codec/PacketCodec;
intermediary method_56896
Lnet/minecraft/class_9135;method_56896(Lcom/mojang/serialization/Codec;)Lnet/minecraft/class_9139;
official d
Lzl;d(Lcom/mojang/serialization/Codec;)Lzn;
-
registryCodec
static <T> PacketCodec<RegistryByteBuf,T> registryCodec(com.mojang.serialization.Codec<T> codec, Supplier<NbtSizeTracker> sizeTracker) - Mappings:
Namespace Name Mixin selector named registryCodec
Lnet/minecraft/network/codec/PacketCodecs;registryCodec(Lcom/mojang/serialization/Codec;Ljava/util/function/Supplier;)Lnet/minecraft/network/codec/PacketCodec;
intermediary method_57997
Lnet/minecraft/class_9135;method_57997(Lcom/mojang/serialization/Codec;Ljava/util/function/Supplier;)Lnet/minecraft/class_9139;
official b
Lzl;b(Lcom/mojang/serialization/Codec;Ljava/util/function/Supplier;)Lzn;
-
optional
Returns a codec wrapping another codec, the value of which is optional.This can be used with
PacketCodec.collect(net.minecraft.network.codec.PacketCodec.ResultFunction<B, V, O>)
likecodec.collect(PacketCodecs::optional)
.- Returns:
- a codec wrapping another codec, the value of which is optional
- See Also:
- Mappings:
Namespace Name Mixin selector named optional
Lnet/minecraft/network/codec/PacketCodecs;optional(Lnet/minecraft/network/codec/PacketCodec;)Lnet/minecraft/network/codec/PacketCodec;
intermediary method_56382
Lnet/minecraft/class_9135;method_56382(Lnet/minecraft/class_9139;)Lnet/minecraft/class_9139;
official a
Lzl;a(Lzn;)Lzn;
-
readCollectionSize
- Mappings:
Namespace Name Mixin selector named readCollectionSize
Lnet/minecraft/network/codec/PacketCodecs;readCollectionSize(Lio/netty/buffer/ByteBuf;I)I
intermediary method_57989
Lnet/minecraft/class_9135;method_57989(Lio/netty/buffer/ByteBuf;I)I
official a
Lzl;a(Lio/netty/buffer/ByteBuf;I)I
-
writeCollectionSize
- Mappings:
Namespace Name Mixin selector named writeCollectionSize
Lnet/minecraft/network/codec/PacketCodecs;writeCollectionSize(Lio/netty/buffer/ByteBuf;II)V
intermediary method_57990
Lnet/minecraft/class_9135;method_57990(Lio/netty/buffer/ByteBuf;II)V
official a
Lzl;a(Lio/netty/buffer/ByteBuf;II)V
-
collection
static <B extends ByteBuf,V, PacketCodec<B,C extends Collection<V>> C> collection(IntFunction<C> factory, PacketCodec<? super B, V> elementCodec) Returns a codec for a collection of values.- Parameters:
factory
- a function that, given the collection's size, returns a new empty collectionelementCodec
- the codec of the collection's elements- Returns:
- a codec for a collection of values
- See Also:
- Mappings:
Namespace Name Mixin selector named collection
Lnet/minecraft/network/codec/PacketCodecs;collection(Ljava/util/function/IntFunction;Lnet/minecraft/network/codec/PacketCodec;)Lnet/minecraft/network/codec/PacketCodec;
intermediary method_56376
Lnet/minecraft/class_9135;method_56376(Ljava/util/function/IntFunction;Lnet/minecraft/class_9139;)Lnet/minecraft/class_9139;
official a
Lzl;a(Ljava/util/function/IntFunction;Lzn;)Lzn;
-
collection
static <B extends ByteBuf,V, PacketCodec<B,C extends Collection<V>> C> collection(IntFunction<C> factory, PacketCodec<? super B, V> elementCodec, int maxSize) - Mappings:
Namespace Name Mixin selector named collection
Lnet/minecraft/network/codec/PacketCodecs;collection(Ljava/util/function/IntFunction;Lnet/minecraft/network/codec/PacketCodec;I)Lnet/minecraft/network/codec/PacketCodec;
intermediary method_57991
Lnet/minecraft/class_9135;method_57991(Ljava/util/function/IntFunction;Lnet/minecraft/class_9139;I)Lnet/minecraft/class_9139;
official a
Lzl;a(Ljava/util/function/IntFunction;Lzn;I)Lzn;
-
toCollection
static <B extends ByteBuf,V, PacketCodec.ResultFunction<B,C extends Collection<V>> V, toCollectionC> (IntFunction<C> collectionFactory) Used to make a codec for a collection of values usingPacketCodec.collect(net.minecraft.network.codec.PacketCodec.ResultFunction<B, V, O>)
.For example, to make a codec for a set of values, write
codec.collect(PacketCodecs.toCollection(HashSet::new))
.- Parameters:
collectionFactory
- a function that, given the collection's size, returns a new empty collection- See Also:
- Mappings:
Namespace Name Mixin selector named toCollection
Lnet/minecraft/network/codec/PacketCodecs;toCollection(Ljava/util/function/IntFunction;)Lnet/minecraft/network/codec/PacketCodec$ResultFunction;
intermediary method_56374
Lnet/minecraft/class_9135;method_56374(Ljava/util/function/IntFunction;)Lnet/minecraft/class_9139$class_9140;
official a
Lzl;a(Ljava/util/function/IntFunction;)Lzn$a;
-
toList
Used to make a codec for a list of values usingPacketCodec.collect(net.minecraft.network.codec.PacketCodec.ResultFunction<B, V, O>)
. This creates anArrayList
, so the decoded result can be modified.For example, to make a codec for a list of values, write
codec.collect(PacketCodecs.toList())
.- See Also:
- Mappings:
Namespace Name Mixin selector named toList
Lnet/minecraft/network/codec/PacketCodecs;toList()Lnet/minecraft/network/codec/PacketCodec$ResultFunction;
intermediary method_56363
Lnet/minecraft/class_9135;method_56363()Lnet/minecraft/class_9139$class_9140;
official a
Lzl;a()Lzn$a;
-
toList
- Mappings:
Namespace Name Mixin selector named toList
Lnet/minecraft/network/codec/PacketCodecs;toList(I)Lnet/minecraft/network/codec/PacketCodec$ResultFunction;
intermediary method_58000
Lnet/minecraft/class_9135;method_58000(I)Lnet/minecraft/class_9139$class_9140;
official c
Lzl;c(I)Lzn$a;
-
map
static <B extends ByteBuf,K, PacketCodec<B,V, M extends Map<K, V>> M> map(IntFunction<? extends M> factory, PacketCodec<? super B, K> keyCodec, PacketCodec<? super B, V> valueCodec) Returns a codec for a map.- Parameters:
factory
- a function that, given the map's size, returns a new empty mapkeyCodec
- the codec for the map's keysvalueCodec
- the codec for the map's values- Returns:
- a codec for a map
- See Also:
- Mappings:
Namespace Name Mixin selector named map
Lnet/minecraft/network/codec/PacketCodecs;map(Ljava/util/function/IntFunction;Lnet/minecraft/network/codec/PacketCodec;Lnet/minecraft/network/codec/PacketCodec;)Lnet/minecraft/network/codec/PacketCodec;
intermediary method_56377
Lnet/minecraft/class_9135;method_56377(Ljava/util/function/IntFunction;Lnet/minecraft/class_9139;Lnet/minecraft/class_9139;)Lnet/minecraft/class_9139;
official a
Lzl;a(Ljava/util/function/IntFunction;Lzn;Lzn;)Lzn;
-
map
static <B extends ByteBuf,K, PacketCodec<B,V, M extends Map<K, V>> M> map(IntFunction<? extends M> factory, PacketCodec<? super B, K> keyCodec, PacketCodec<? super B, V> valueCodec, int maxSize) - Mappings:
Namespace Name Mixin selector named map
Lnet/minecraft/network/codec/PacketCodecs;map(Ljava/util/function/IntFunction;Lnet/minecraft/network/codec/PacketCodec;Lnet/minecraft/network/codec/PacketCodec;I)Lnet/minecraft/network/codec/PacketCodec;
intermediary method_57992
Lnet/minecraft/class_9135;method_57992(Ljava/util/function/IntFunction;Lnet/minecraft/class_9139;Lnet/minecraft/class_9139;I)Lnet/minecraft/class_9139;
official a
Lzl;a(Ljava/util/function/IntFunction;Lzn;Lzn;I)Lzn;
-
either
static <B extends ByteBuf,L, PacketCodec<B,R> com.mojang.datafixers.util.Either<L, eitherR>> (PacketCodec<? super B, L> left, PacketCodec<? super B, R> right) - Mappings:
Namespace Name Mixin selector named either
Lnet/minecraft/network/codec/PacketCodecs;either(Lnet/minecraft/network/codec/PacketCodec;Lnet/minecraft/network/codec/PacketCodec;)Lnet/minecraft/network/codec/PacketCodec;
intermediary method_57995
Lnet/minecraft/class_9135;method_57995(Lnet/minecraft/class_9139;Lnet/minecraft/class_9139;)Lnet/minecraft/class_9139;
official a
Lzl;a(Lzn;Lzn;)Lzn;
-
indexed
static <T> PacketCodec<ByteBuf,T> indexed(IntFunction<T> indexToValue, ToIntFunction<T> valueToIndex) Returns a codec for an indexed value.An example of an indexed value is an enum.
- Parameters:
indexToValue
- a function that gets a value from its indexvalueToIndex
- a function that gets a value's index- Returns:
- a codec for an indexed value
- See Also:
- Mappings:
Namespace Name Mixin selector named indexed
Lnet/minecraft/network/codec/PacketCodecs;indexed(Ljava/util/function/IntFunction;Ljava/util/function/ToIntFunction;)Lnet/minecraft/network/codec/PacketCodec;
intermediary method_56375
Lnet/minecraft/class_9135;method_56375(Ljava/util/function/IntFunction;Ljava/util/function/ToIntFunction;)Lnet/minecraft/class_9139;
official a
Lzl;a(Ljava/util/function/IntFunction;Ljava/util/function/ToIntFunction;)Lzn;
-
entryOf
Returns a codec for an entry ofiterable
.- Returns:
- a codec for an entry of
iterable
- See Also:
- Mappings:
Namespace Name Mixin selector named entryOf
Lnet/minecraft/network/codec/PacketCodecs;entryOf(Lnet/minecraft/util/collection/IndexedIterable;)Lnet/minecraft/network/codec/PacketCodec;
intermediary method_56371
Lnet/minecraft/class_9135;method_56371(Lnet/minecraft/class_2359;)Lnet/minecraft/class_9139;
official a
Lzl;a(Ljn;)Lzn;
-
registry
private static <T,R> PacketCodec<RegistryByteBuf,R> registry(RegistryKey<? extends Registry<T>> registry, Function<Registry<T>, IndexedIterable<R>> registryTransformer) - Mappings:
Namespace Name Mixin selector named registry
Lnet/minecraft/network/codec/PacketCodecs;registry(Lnet/minecraft/registry/RegistryKey;Ljava/util/function/Function;)Lnet/minecraft/network/codec/PacketCodec;
intermediary method_56366
Lnet/minecraft/class_9135;method_56366(Lnet/minecraft/class_5321;Ljava/util/function/Function;)Lnet/minecraft/class_9139;
official a
Lzl;a(Lale;Ljava/util/function/Function;)Lzn;
-
registryValue
static <T> PacketCodec<RegistryByteBuf,T> registryValue(RegistryKey<? extends Registry<T>> registry) Returns a codec for aRegistry
-registered value.This codec only works with
RegistryByteBuf
, used during the play phase. Consider usingentryOf(net.minecraft.util.collection.IndexedIterable<T>)
for encoding a value of a static registry during login or configuration phases.- Returns:
- a codec for a
Registry
-registered value - See Also:
- Implementation Note:
- The value is serialized as the corresponding raw ID (as
a var int
). - Mappings:
Namespace Name Mixin selector named registryValue
Lnet/minecraft/network/codec/PacketCodecs;registryValue(Lnet/minecraft/registry/RegistryKey;)Lnet/minecraft/network/codec/PacketCodec;
intermediary method_56365
Lnet/minecraft/class_9135;method_56365(Lnet/minecraft/class_5321;)Lnet/minecraft/class_9139;
official a
Lzl;a(Lale;)Lzn;
-
registryEntry
static <T> PacketCodec<RegistryByteBuf,RegistryEntry<T>> registryEntry(RegistryKey<? extends Registry<T>> registry) Returns a codec for a referenceRegistryEntry
.This codec only works with
RegistryByteBuf
, used during the play phase. Consider usingentryOf(net.minecraft.util.collection.IndexedIterable<T>)
for encoding a value of a static registry during login or configuration phases.- Returns:
- a codec for a reference
RegistryEntry
- See Also:
- Implementation Note:
- The value is serialized as the corresponding raw ID (as
a var int
). This does not handle direct (unregistered) entries. - Mappings:
Namespace Name Mixin selector named registryEntry
Lnet/minecraft/network/codec/PacketCodecs;registryEntry(Lnet/minecraft/registry/RegistryKey;)Lnet/minecraft/network/codec/PacketCodec;
intermediary method_56383
Lnet/minecraft/class_9135;method_56383(Lnet/minecraft/class_5321;)Lnet/minecraft/class_9139;
official b
Lzl;b(Lale;)Lzn;
-
registryEntry
static <T> PacketCodec<RegistryByteBuf,RegistryEntry<T>> registryEntry(RegistryKey<? extends Registry<T>> registry, PacketCodec<? super RegistryByteBuf, T> directCodec) Returns a codec for aRegistryEntry
.This codec only works with
RegistryByteBuf
, used during the play phase. Consider usingentryOf(net.minecraft.util.collection.IndexedIterable<T>)
for encoding a value of a static registry during login or configuration phases.- Returns:
- a codec for a
RegistryEntry
- See Also:
- Implementation Note:
- If the entry is a reference entry, the value is serialized as the
corresponding raw ID (as
a var int
). If it is a direct entry, it is encoded usingdirectCodec
. - Mappings:
Namespace Name Mixin selector named registryEntry
Lnet/minecraft/network/codec/PacketCodecs;registryEntry(Lnet/minecraft/registry/RegistryKey;Lnet/minecraft/network/codec/PacketCodec;)Lnet/minecraft/network/codec/PacketCodec;
intermediary method_56367
Lnet/minecraft/class_9135;method_56367(Lnet/minecraft/class_5321;Lnet/minecraft/class_9139;)Lnet/minecraft/class_9139;
official a
Lzl;a(Lale;Lzn;)Lzn;
-
registryEntryList
static <T> PacketCodec<RegistryByteBuf,RegistryEntryList<T>> registryEntryList(RegistryKey<? extends Registry<T>> registryRef) - Mappings:
Namespace Name Mixin selector named registryEntryList
Lnet/minecraft/network/codec/PacketCodecs;registryEntryList(Lnet/minecraft/registry/RegistryKey;)Lnet/minecraft/network/codec/PacketCodec;
intermediary method_58001
Lnet/minecraft/class_9135;method_58001(Lnet/minecraft/class_5321;)Lnet/minecraft/class_9139;
official c
Lzl;c(Lale;)Lzn;
-