classpublicPriority 3
ServerPlayerListPlayer
com.hypixel.hytale.protocol.packets.interface_.ServerPlayerListPlayer
6
Methods
6
Public Methods
3
Fields
3
Constructors
Constants
intFIXED_BLOCK_SIZE= 37
intMAX_SIZE= 16384042
intNULLABLE_BIT_FIELD_SIZE= 1
intVARIABLE_BLOCK_START= 37
intVARIABLE_FIELD_COUNT= 1
Constructors
public
ServerPlayerListPlayer()public
ServerPlayerListPlayer(UUID uuid, String username, UUID worldUuid, int ping)public
ServerPlayerListPlayer(ServerPlayerListPlayer other)Methods
Public Methods (6)
publicstatic
int computeBytesConsumed(ByteBuf buf, int offset)public
int computeSize()public
boolean equals(Object obj)@Override
public
int hashCode()@Override
public
void serialize(ByteBuf buf)publicstatic
ValidationResult validateStructure(ByteBuf buffer, int offset)Fields
Public Fields (3)
public
int pingpublic
String usernamepublic
UUID worldUuidRelated Classes
Source Code
package com.hypixel.hytale.protocol.packets.interface_;
import com.hypixel.hytale.protocol.io.PacketIO;
import com.hypixel.hytale.protocol.io.ProtocolException;
import com.hypixel.hytale.protocol.io.ValidationResult;
import com.hypixel.hytale.protocol.io.VarInt;
import io.netty.buffer.ByteBuf;
import java.util.Objects;
import java.util.UUID;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
public class ServerPlayerListPlayer {
public static final int NULLABLE_BIT_FIELD_SIZE = 1;
public static final int FIXED_BLOCK_SIZE = 37;
public static final int VARIABLE_FIELD_COUNT = 1;
public static final int VARIABLE_BLOCK_START = 37;
public static final int MAX_SIZE = 16384042;
@Nonnull
public UUID uuid = new UUID(0L, 0L);
@Nullable
public String username;
@Nullable
public UUID worldUuid;
public int ping;
public ServerPlayerListPlayer() {
}
public ServerPlayerListPlayer(@Nonnull UUID uuid, @Nullable String username, @Nullable UUID worldUuid, int ping) {
this.uuid = uuid;
this.username = username;
this.worldUuid = worldUuid;
this.ping = ping;
}
public ServerPlayerListPlayer(@Nonnull ServerPlayerListPlayer other) {
this.uuid = other.uuid;
this.username = other.username;
this.worldUuid = other.worldUuid;
this.ping = other.ping;
}
@Nonnull
public static ServerPlayerListPlayer deserialize(@Nonnull ByteBuf buf, int offset) {
ServerPlayerListPlayer obj = new ServerPlayerListPlayer();
byte nullBits = buf.getByte(offset);
obj.uuid = PacketIO.readUUID(buf, offset + 1);
if ((nullBits & 2) != 0) {
obj.worldUuid = PacketIO.readUUID(buf, offset + 17);
}
obj.ping = buf.getIntLE(offset + 33);
int pos = offset + 37;
if ((nullBits & 1) != 0) {
int usernameLen = VarInt.peek(buf, pos);
if (usernameLen < 0) {
throw ProtocolException.negativeLength("Username", usernameLen);
}
if (usernameLen > 4096000) {
throw ProtocolException.stringTooLong("Username", usernameLen, 4096000);
}
int usernameVarLen = VarInt.length(buf, pos);
obj.username = PacketIO.readVarString(buf, pos, PacketIO.UTF8);
pos += usernameVarLen + usernameLen;
}
return obj;
}
public static int computeBytesConsumed(@Nonnull ByteBuf buf, int offset) {
byte nullBits = buf.getByte(offset);
int pos = offset + 37;
if ((nullBits & 1) != 0) {
int sl = VarInt.peek(buf, pos);
pos += VarInt.length(buf, pos) + sl;
}
return pos - offset;
}
public void serialize(@Nonnull ByteBuf buf) {
byte nullBits = 0;
if (this.username != null) {
nullBits = (byte)(nullBits | 1);
}
if (this.worldUuid != null) {
nullBits = (byte)(nullBits | 2);
}
buf.writeByte(nullBits);
PacketIO.writeUUID(buf, this.uuid);
if (this.worldUuid != null) {
PacketIO.writeUUID(buf, this.worldUuid);
} else {
buf.writeZero(16);
}
buf.writeIntLE(this.ping);
if (this.username != null) {
PacketIO.writeVarString(buf, this.username, 4096000);
}
}
public int computeSize() {
int size = 37;
if (this.username != null) {
size += PacketIO.stringSize(this.username);
}
return size;
}
public static ValidationResult validateStructure(@Nonnull ByteBuf buffer, int offset) {
if (buffer.readableBytes() - offset < 37) {
return ValidationResult.error("Buffer too small: expected at least 37 bytes");
} else {
byte nullBits = buffer.getByte(offset);
int pos = offset + 37;
if ((nullBits & 1) != 0) {
int usernameLen = VarInt.peek(buffer, pos);
if (usernameLen < 0) {
return ValidationResult.error("Invalid string length for Username");
}
if (usernameLen > 4096000) {
return ValidationResult.error("Username exceeds max length 4096000");
}
pos += VarInt.length(buffer, pos);
pos += usernameLen;
if (pos > buffer.writerIndex()) {
return ValidationResult.error("Buffer overflow reading Username");
}
}
return ValidationResult.OK;
}
}
public ServerPlayerListPlayer clone() {
ServerPlayerListPlayer copy = new ServerPlayerListPlayer();
copy.uuid = this.uuid;
copy.username = this.username;
copy.worldUuid = this.worldUuid;
copy.ping = this.ping;
return copy;
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
} else {
return !(obj instanceof ServerPlayerListPlayer other)
? false
: Objects.equals(this.uuid, other.uuid)
&& Objects.equals(this.username, other.username)
&& Objects.equals(this.worldUuid, other.worldUuid)
&& this.ping == other.ping;
}
}
@Override
public int hashCode() {
return Objects.hash(this.uuid, this.username, this.worldUuid, this.ping);
}
}