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