package com.hypixel.hytale.protocol.packets.player;
import com.hypixel.hytale.protocol.Packet;
import com.hypixel.hytale.protocol.io.PacketIO;
import com.hypixel.hytale.protocol.io.ValidationResult;
import io.netty.buffer.ByteBuf;
import java.util.Objects;
import java.util.UUID;
import javax.annotation.Nonnull;
public class JoinWorld implements Packet {
public static final int PACKET_ID = 104;
public static final boolean IS_COMPRESSED = false;
public static final int NULLABLE_BIT_FIELD_SIZE = 0;
public static final int FIXED_BLOCK_SIZE = 18;
public static final int VARIABLE_FIELD_COUNT = 0;
public static final int VARIABLE_BLOCK_START = 18;
public static final int MAX_SIZE = 18;
public boolean clearWorld;
public boolean fadeInOut;
@Nonnull
public UUID worldUuid = new UUID(0L, 0L);
public int getId() {
return 104;
}
public JoinWorld() {
}
public JoinWorld(boolean clearWorld, boolean fadeInOut, @Nonnull UUID worldUuid) {
this.clearWorld = clearWorld;
this.fadeInOut = fadeInOut;
this.worldUuid = worldUuid;
}
public JoinWorld(@Nonnull JoinWorld other) {
this.clearWorld = other.clearWorld;
this.fadeInOut = other.fadeInOut;
this.worldUuid = other.worldUuid;
}
@Nonnull
public static JoinWorld deserialize(@Nonnull ByteBuf buf, int offset) {
JoinWorld obj = new JoinWorld();
obj.clearWorld = buf.getByte(offset + 0) != 0;
obj.fadeInOut = buf.getByte(offset + 1) != 0;
obj.worldUuid = PacketIO.readUUID(buf, offset + 2);
return obj;
}
public static int computeBytesConsumed(@Nonnull ByteBuf buf, int offset) {
return 18;
}
public void serialize(@Nonnull ByteBuf buf) {
buf.writeByte(this.clearWorld ? 1 : 0);
buf.writeByte(this.fadeInOut ? 1 : 0);
PacketIO.writeUUID(buf, this.worldUuid);
}
public int computeSize() {
return 18;
}
public static ValidationResult validateStructure(@Nonnull ByteBuf buffer, int offset) {
return buffer.readableBytes() - offset < 18 ? ValidationResult.error("Buffer too small: expected at least 18 bytes") : ValidationResult.OK;
}
public JoinWorld clone() {
JoinWorld copy = new JoinWorld();
copy.clearWorld = this.clearWorld;
copy.fadeInOut = this.fadeInOut;
copy.worldUuid = this.worldUuid;
return copy;
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
} else if (!(obj instanceof JoinWorld)) {
return false;
} else {
JoinWorld other = (JoinWorld)obj;
return this.clearWorld == other.clearWorld && this.fadeInOut == other.fadeInOut && Objects.equals(this.worldUuid, other.worldUuid);
}
}
public int hashCode() {
return Objects.hash(new Object[]{this.clearWorld, this.fadeInOut, this.worldUuid});
}
}