package com.hypixel.hytale.protocol.packets.assets;
import com.hypixel.hytale.protocol.BlockType;
import com.hypixel.hytale.protocol.Packet;
import com.hypixel.hytale.protocol.UpdateType;
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.HashMap;
import java.util.Map;
import java.util.Objects;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
public class UpdateBlockTypes implements Packet {
public static final int PACKET_ID = 40;
public static final boolean IS_COMPRESSED = true;
public static final int NULLABLE_BIT_FIELD_SIZE = 1;
public static final int FIXED_BLOCK_SIZE = 10;
public static final int VARIABLE_FIELD_COUNT = 1;
public static final int VARIABLE_BLOCK_START = 10;
public static final int MAX_SIZE = 1677721600;
@Nonnull
public UpdateType type;
public int maxId;
@Nullable
public Map<Integer, BlockType> blockTypes;
public boolean updateBlockTextures;
public boolean updateModelTextures;
public boolean updateModels;
public boolean updateMapGeometry;
public int getId() {
return 40;
}
public UpdateBlockTypes() {
this.type = UpdateType.Init;
}
public UpdateBlockTypes(@Nonnull UpdateType type, int maxId, @Nullable Map<Integer, BlockType> blockTypes, boolean updateBlockTextures, boolean updateModelTextures, boolean updateModels, boolean updateMapGeometry) {
this.type = UpdateType.Init;
this.type = type;
this.maxId = maxId;
this.blockTypes = blockTypes;
this.updateBlockTextures = updateBlockTextures;
this.updateModelTextures = updateModelTextures;
this.updateModels = updateModels;
this.updateMapGeometry = updateMapGeometry;
}
public UpdateBlockTypes(@Nonnull UpdateBlockTypes other) {
this.type = UpdateType.Init;
this.type = other.type;
this.maxId = other.maxId;
this.blockTypes = other.blockTypes;
this.updateBlockTextures = other.updateBlockTextures;
this.updateModelTextures = other.updateModelTextures;
this.updateModels = other.updateModels;
this.updateMapGeometry = other.updateMapGeometry;
}
@Nonnull
public static UpdateBlockTypes deserialize(@Nonnull ByteBuf buf, int offset) {
UpdateBlockTypes obj = new UpdateBlockTypes();
byte nullBits = buf.getByte(offset);
obj.type = UpdateType.fromValue(buf.getByte(offset + 1));
obj.maxId = buf.getIntLE(offset + 2);
obj.updateBlockTextures = buf.getByte(offset + 6) != 0;
obj.updateModelTextures = buf.getByte(offset + 7) != 0;
obj.updateModels = buf.getByte(offset + 8) != 0;
obj.updateMapGeometry = buf.getByte(offset + 9) != 0;
int pos = offset + 10;
if ((nullBits & 1) != 0) {
int blockTypesCount = VarInt.peek(buf, pos);
if (blockTypesCount < 0) {
throw ProtocolException.negativeLength("BlockTypes", blockTypesCount);
}
if (blockTypesCount > 4096000) {
throw ProtocolException.dictionaryTooLarge("BlockTypes", blockTypesCount, 4096000);
}
pos += VarInt.size(blockTypesCount);
obj.blockTypes = new HashMap(blockTypesCount);
for(int i = 0; i < blockTypesCount; ++i) {
int key = buf.getIntLE(pos);
pos += 4;
BlockType val = BlockType.deserialize(buf, pos);
pos += BlockType.computeBytesConsumed(buf, pos);
if (obj.blockTypes.put(key, val) != null) {
throw ProtocolException.duplicateKey("blockTypes", key);
}
}
}
return obj;
}
public static int computeBytesConsumed(@Nonnull ByteBuf buf, int offset) {
byte nullBits = buf.getByte(offset);
int pos = offset + 10;
if ((nullBits & 1) != 0) {
int dictLen = VarInt.peek(buf, pos);
pos += VarInt.length(buf, pos);
for(int i = 0; i < dictLen; ++i) {
pos += 4;
pos += BlockType.computeBytesConsumed(buf, pos);
}
}
return pos - offset;
}
public void serialize(@Nonnull ByteBuf buf) {
byte nullBits = 0;
if (this.blockTypes != null) {
nullBits = (byte)(nullBits | 1);
}
buf.writeByte(nullBits);
buf.writeByte(this.type.getValue());
buf.writeIntLE(this.maxId);
buf.writeByte(this.updateBlockTextures ? 1 : 0);
buf.writeByte(this.updateModelTextures ? 1 : 0);
buf.writeByte(this.updateModels ? 1 : 0);
buf.writeByte(this.updateMapGeometry ? 1 : 0);
if (this.blockTypes != null) {
if (this.blockTypes.size() > 4096000) {
throw ProtocolException.dictionaryTooLarge("BlockTypes", this.blockTypes.size(), 4096000);
}
VarInt.write(buf, this.blockTypes.size());
for(Map.Entry<Integer, BlockType> e : this.blockTypes.entrySet()) {
buf.writeIntLE((Integer)e.getKey());
((BlockType)e.getValue()).serialize(buf);
}
}
}
public int computeSize() {
int size = 10;
if (this.blockTypes != null) {
int blockTypesSize = 0;
for(Map.Entry<Integer, BlockType> kvp : this.blockTypes.entrySet()) {
blockTypesSize += 4 + ((BlockType)kvp.getValue()).computeSize();
}
size += VarInt.size(this.blockTypes.size()) + blockTypesSize;
}
return size;
}
public static ValidationResult validateStructure(@Nonnull ByteBuf buffer, int offset) {
if (buffer.readableBytes() - offset < 10) {
return ValidationResult.error("Buffer too small: expected at least 10 bytes");
} else {
byte nullBits = buffer.getByte(offset);
int pos = offset + 10;
if ((nullBits & 1) != 0) {
int blockTypesCount = VarInt.peek(buffer, pos);
if (blockTypesCount < 0) {
return ValidationResult.error("Invalid dictionary count for BlockTypes");
}
if (blockTypesCount > 4096000) {
return ValidationResult.error("BlockTypes exceeds max length 4096000");
}
pos += VarInt.length(buffer, pos);
for(int i = 0; i < blockTypesCount; ++i) {
pos += 4;
if (pos > buffer.writerIndex()) {
return ValidationResult.error("Buffer overflow reading key");
}
pos += BlockType.computeBytesConsumed(buffer, pos);
}
}
return ValidationResult.OK;
}
}
public UpdateBlockTypes clone() {
UpdateBlockTypes copy = new UpdateBlockTypes();
copy.type = this.type;
copy.maxId = this.maxId;
if (this.blockTypes != null) {
Map<Integer, BlockType> m = new HashMap();
for(Map.Entry<Integer, BlockType> e : this.blockTypes.entrySet()) {
m.put((Integer)e.getKey(), ((BlockType)e.getValue()).clone());
}
copy.blockTypes = m;
}
copy.updateBlockTextures = this.updateBlockTextures;
copy.updateModelTextures = this.updateModelTextures;
copy.updateModels = this.updateModels;
copy.updateMapGeometry = this.updateMapGeometry;
return copy;
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
} else if (!(obj instanceof UpdateBlockTypes)) {
return false;
} else {
UpdateBlockTypes other = (UpdateBlockTypes)obj;
return Objects.equals(this.type, other.type) && this.maxId == other.maxId && Objects.equals(this.blockTypes, other.blockTypes) && this.updateBlockTextures == other.updateBlockTextures && this.updateModelTextures == other.updateModelTextures && this.updateModels == other.updateModels && this.updateMapGeometry == other.updateMapGeometry;
}
}
public int hashCode() {
return Objects.hash(new Object[]{this.type, this.maxId, this.blockTypes, this.updateBlockTextures, this.updateModelTextures, this.updateModels, this.updateMapGeometry});
}
}