package com.hypixel.hytale.protocol;
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.Arrays;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
public class Bench {
public static final int NULLABLE_BIT_FIELD_SIZE = 1;
public static final int FIXED_BLOCK_SIZE = 1;
public static final int VARIABLE_FIELD_COUNT = 1;
public static final int VARIABLE_BLOCK_START = 1;
public static final int MAX_SIZE = 1677721600;
@Nullable
public BenchTierLevel[] benchTierLevels;
public Bench() {
}
public Bench(@Nullable BenchTierLevel[] benchTierLevels) {
this.benchTierLevels = benchTierLevels;
}
public Bench(@Nonnull Bench other) {
this.benchTierLevels = other.benchTierLevels;
}
@Nonnull
public static Bench deserialize(@Nonnull ByteBuf buf, int offset) {
Bench obj = new Bench();
byte nullBits = buf.getByte(offset);
int pos = offset + 1;
if ((nullBits & 1) != 0) {
int benchTierLevelsCount = VarInt.peek(buf, pos);
if (benchTierLevelsCount < 0) {
throw ProtocolException.negativeLength("BenchTierLevels", benchTierLevelsCount);
}
if (benchTierLevelsCount > 4096000) {
throw ProtocolException.arrayTooLong("BenchTierLevels", benchTierLevelsCount, 4096000);
}
int benchTierLevelsVarLen = VarInt.size(benchTierLevelsCount);
if ((long)(pos + benchTierLevelsVarLen) + (long)benchTierLevelsCount * 17L > (long)buf.readableBytes()) {
throw ProtocolException.bufferTooSmall("BenchTierLevels", pos + benchTierLevelsVarLen + benchTierLevelsCount * 17, buf.readableBytes());
}
pos += benchTierLevelsVarLen;
obj.benchTierLevels = new BenchTierLevel[benchTierLevelsCount];
for(int i = 0; i < benchTierLevelsCount; ++i) {
obj.benchTierLevels[i] = BenchTierLevel.deserialize(buf, pos);
pos += BenchTierLevel.computeBytesConsumed(buf, pos);
}
}
return obj;
}
public static int computeBytesConsumed(@Nonnull ByteBuf buf, int offset) {
byte nullBits = buf.getByte(offset);
int pos = offset + 1;
if ((nullBits & 1) != 0) {
int arrLen = VarInt.peek(buf, pos);
pos += VarInt.length(buf, pos);
for(int i = 0; i < arrLen; ++i) {
pos += BenchTierLevel.computeBytesConsumed(buf, pos);
}
}
return pos - offset;
}
public void serialize(@Nonnull ByteBuf buf) {
byte nullBits = 0;
if (this.benchTierLevels != null) {
nullBits = (byte)(nullBits | 1);
}
buf.writeByte(nullBits);
if (this.benchTierLevels != null) {
if (this.benchTierLevels.length > 4096000) {
throw ProtocolException.arrayTooLong("BenchTierLevels", this.benchTierLevels.length, 4096000);
}
VarInt.write(buf, this.benchTierLevels.length);
for(BenchTierLevel item : this.benchTierLevels) {
item.serialize(buf);
}
}
}
public int computeSize() {
int size = 1;
if (this.benchTierLevels != null) {
int benchTierLevelsSize = 0;
for(BenchTierLevel elem : this.benchTierLevels) {
benchTierLevelsSize += elem.computeSize();
}
size += VarInt.size(this.benchTierLevels.length) + benchTierLevelsSize;
}
return size;
}
public static ValidationResult validateStructure(@Nonnull ByteBuf buffer, int offset) {
if (buffer.readableBytes() - offset < 1) {
return ValidationResult.error("Buffer too small: expected at least 1 bytes");
} else {
byte nullBits = buffer.getByte(offset);
int pos = offset + 1;
if ((nullBits & 1) != 0) {
int benchTierLevelsCount = VarInt.peek(buffer, pos);
if (benchTierLevelsCount < 0) {
return ValidationResult.error("Invalid array count for BenchTierLevels");
}
if (benchTierLevelsCount > 4096000) {
return ValidationResult.error("BenchTierLevels exceeds max length 4096000");
}
pos += VarInt.length(buffer, pos);
for(int i = 0; i < benchTierLevelsCount; ++i) {
ValidationResult structResult = BenchTierLevel.validateStructure(buffer, pos);
if (!structResult.isValid()) {
return ValidationResult.error("Invalid BenchTierLevel in BenchTierLevels[" + i + "]: " + structResult.error());
}
pos += BenchTierLevel.computeBytesConsumed(buffer, pos);
}
}
return ValidationResult.OK;
}
}
public Bench clone() {
Bench copy = new Bench();
copy.benchTierLevels = this.benchTierLevels != null ? (BenchTierLevel[])Arrays.stream(this.benchTierLevels).map((e) -> e.clone()).toArray((x$0) -> new BenchTierLevel[x$0]) : null;
return copy;
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
} else if (obj instanceof Bench) {
Bench other = (Bench)obj;
return Arrays.equals(this.benchTierLevels, other.benchTierLevels);
} else {
return false;
}
}
public int hashCode() {
int result = 1;
result = 31 * result + Arrays.hashCode(this.benchTierLevels);
return result;
}
}