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 BenchUpgradeRequirement {
public static final int NULLABLE_BIT_FIELD_SIZE = 1;
public static final int FIXED_BLOCK_SIZE = 9;
public static final int VARIABLE_FIELD_COUNT = 1;
public static final int VARIABLE_BLOCK_START = 9;
public static final int MAX_SIZE = 1677721600;
@Nullable
public MaterialQuantity[] material;
public double timeSeconds;
public BenchUpgradeRequirement() {
}
public BenchUpgradeRequirement(@Nullable MaterialQuantity[] material, double timeSeconds) {
this.material = material;
this.timeSeconds = timeSeconds;
}
public BenchUpgradeRequirement(@Nonnull BenchUpgradeRequirement other) {
this.material = other.material;
this.timeSeconds = other.timeSeconds;
}
@Nonnull
public static BenchUpgradeRequirement deserialize(@Nonnull ByteBuf buf, int offset) {
BenchUpgradeRequirement obj = new BenchUpgradeRequirement();
byte nullBits = buf.getByte(offset);
obj.timeSeconds = buf.getDoubleLE(offset + 1);
int pos = offset + 9;
if ((nullBits & 1) != 0) {
int materialCount = VarInt.peek(buf, pos);
if (materialCount < 0) {
throw ProtocolException.negativeLength("Material", materialCount);
}
if (materialCount > 4096000) {
throw ProtocolException.arrayTooLong("Material", materialCount, 4096000);
}
int materialVarLen = VarInt.size(materialCount);
if ((long)(pos + materialVarLen) + (long)materialCount * 9L > (long)buf.readableBytes()) {
throw ProtocolException.bufferTooSmall("Material", pos + materialVarLen + materialCount * 9, buf.readableBytes());
}
pos += materialVarLen;
obj.material = new MaterialQuantity[materialCount];
for(int i = 0; i < materialCount; ++i) {
obj.material[i] = MaterialQuantity.deserialize(buf, pos);
pos += MaterialQuantity.computeBytesConsumed(buf, pos);
}
}
return obj;
}
public static int computeBytesConsumed(@Nonnull ByteBuf buf, int offset) {
byte nullBits = buf.getByte(offset);
int pos = offset + 9;
if ((nullBits & 1) != 0) {
int arrLen = VarInt.peek(buf, pos);
pos += VarInt.length(buf, pos);
for(int i = 0; i < arrLen; ++i) {
pos += MaterialQuantity.computeBytesConsumed(buf, pos);
}
}
return pos - offset;
}
public void serialize(@Nonnull ByteBuf buf) {
byte nullBits = 0;
if (this.material != null) {
nullBits = (byte)(nullBits | 1);
}
buf.writeByte(nullBits);
buf.writeDoubleLE(this.timeSeconds);
if (this.material != null) {
if (this.material.length > 4096000) {
throw ProtocolException.arrayTooLong("Material", this.material.length, 4096000);
}
VarInt.write(buf, this.material.length);
for(MaterialQuantity item : this.material) {
item.serialize(buf);
}
}
}
public int computeSize() {
int size = 9;
if (this.material != null) {
int materialSize = 0;
for(MaterialQuantity elem : this.material) {
materialSize += elem.computeSize();
}
size += VarInt.size(this.material.length) + materialSize;
}
return size;
}
public static ValidationResult validateStructure(@Nonnull ByteBuf buffer, int offset) {
if (buffer.readableBytes() - offset < 9) {
return ValidationResult.error("Buffer too small: expected at least 9 bytes");
} else {
byte nullBits = buffer.getByte(offset);
int pos = offset + 9;
if ((nullBits & 1) != 0) {
int materialCount = VarInt.peek(buffer, pos);
if (materialCount < 0) {
return ValidationResult.error("Invalid array count for Material");
}
if (materialCount > 4096000) {
return ValidationResult.error("Material exceeds max length 4096000");
}
pos += VarInt.length(buffer, pos);
for(int i = 0; i < materialCount; ++i) {
ValidationResult structResult = MaterialQuantity.validateStructure(buffer, pos);
if (!structResult.isValid()) {
return ValidationResult.error("Invalid MaterialQuantity in Material[" + i + "]: " + structResult.error());
}
pos += MaterialQuantity.computeBytesConsumed(buffer, pos);
}
}
return ValidationResult.OK;
}
}
public BenchUpgradeRequirement clone() {
BenchUpgradeRequirement copy = new BenchUpgradeRequirement();
copy.material = this.material != null ? (MaterialQuantity[])Arrays.stream(this.material).map((e) -> e.clone()).toArray((x$0) -> new MaterialQuantity[x$0]) : null;
copy.timeSeconds = this.timeSeconds;
return copy;
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
} else if (!(obj instanceof BenchUpgradeRequirement)) {
return false;
} else {
BenchUpgradeRequirement other = (BenchUpgradeRequirement)obj;
return Arrays.equals(this.material, other.material) && this.timeSeconds == other.timeSeconds;
}
}
public int hashCode() {
int result = 1;
result = 31 * result + Arrays.hashCode(this.material);
result = 31 * result + Double.hashCode(this.timeSeconds);
return result;
}
}