// 
// Decompiled by Procyon v0.6.0
// 

package com.hypixel.hytale.protocol.packets.interface_;

import java.util.Objects;
import com.hypixel.hytale.protocol.io.ValidationResult;
import com.hypixel.hytale.protocol.io.PacketIO;
import com.hypixel.hytale.protocol.io.ProtocolException;
import com.hypixel.hytale.protocol.io.VarInt;
import io.netty.buffer.ByteBuf;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;

public class PortalDef
{
    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 = 16384014;
    @Nullable
    public String nameKey;
    public int explorationSeconds;
    public int breachSeconds;
    
    public PortalDef() {
    }
    
    public PortalDef(@Nullable final String nameKey, final int explorationSeconds, final int breachSeconds) {
        this.nameKey = nameKey;
        this.explorationSeconds = explorationSeconds;
        this.breachSeconds = breachSeconds;
    }
    
    public PortalDef(@Nonnull final PortalDef other) {
        this.nameKey = other.nameKey;
        this.explorationSeconds = other.explorationSeconds;
        this.breachSeconds = other.breachSeconds;
    }
    
    @Nonnull
    public static PortalDef deserialize(@Nonnull final ByteBuf buf, final int offset) {
        final PortalDef obj = new PortalDef();
        final byte nullBits = buf.getByte(offset);
        obj.explorationSeconds = buf.getIntLE(offset + 1);
        obj.breachSeconds = buf.getIntLE(offset + 5);
        int pos = offset + 9;
        if ((nullBits & 0x1) != 0x0) {
            final int nameKeyLen = VarInt.peek(buf, pos);
            if (nameKeyLen < 0) {
                throw ProtocolException.negativeLength("NameKey", nameKeyLen);
            }
            if (nameKeyLen > 4096000) {
                throw ProtocolException.stringTooLong("NameKey", nameKeyLen, 4096000);
            }
            final int nameKeyVarLen = VarInt.length(buf, pos);
            obj.nameKey = PacketIO.readVarString(buf, pos, PacketIO.UTF8);
            pos += nameKeyVarLen + nameKeyLen;
        }
        return obj;
    }
    
    public static int computeBytesConsumed(@Nonnull final ByteBuf buf, final int offset) {
        final byte nullBits = buf.getByte(offset);
        int pos = offset + 9;
        if ((nullBits & 0x1) != 0x0) {
            final int sl = VarInt.peek(buf, pos);
            pos += VarInt.length(buf, pos) + sl;
        }
        return pos - offset;
    }
    
    public void serialize(@Nonnull final ByteBuf buf) {
        byte nullBits = 0;
        if (this.nameKey != null) {
            nullBits |= 0x1;
        }
        buf.writeByte(nullBits);
        buf.writeIntLE(this.explorationSeconds);
        buf.writeIntLE(this.breachSeconds);
        if (this.nameKey != null) {
            PacketIO.writeVarString(buf, this.nameKey, 4096000);
        }
    }
    
    public int computeSize() {
        int size = 9;
        if (this.nameKey != null) {
            size += PacketIO.stringSize(this.nameKey);
        }
        return size;
    }
    
    public static ValidationResult validateStructure(@Nonnull final ByteBuf buffer, final int offset) {
        if (buffer.readableBytes() - offset < 9) {
            return ValidationResult.error("Buffer too small: expected at least 9 bytes");
        }
        final byte nullBits = buffer.getByte(offset);
        int pos = offset + 9;
        if ((nullBits & 0x1) != 0x0) {
            final int nameKeyLen = VarInt.peek(buffer, pos);
            if (nameKeyLen < 0) {
                return ValidationResult.error("Invalid string length for NameKey");
            }
            if (nameKeyLen > 4096000) {
                return ValidationResult.error("NameKey exceeds max length 4096000");
            }
            pos += VarInt.length(buffer, pos);
            pos += nameKeyLen;
            if (pos > buffer.writerIndex()) {
                return ValidationResult.error("Buffer overflow reading NameKey");
            }
        }
        return ValidationResult.OK;
    }
    
    public PortalDef clone() {
        final PortalDef copy = new PortalDef();
        copy.nameKey = this.nameKey;
        copy.explorationSeconds = this.explorationSeconds;
        copy.breachSeconds = this.breachSeconds;
        return copy;
    }
    
    @Override
    public boolean equals(final Object obj) {
        if (this == obj) {
            return true;
        }
        if (obj instanceof final PortalDef other) {
            return Objects.equals(this.nameKey, other.nameKey) && this.explorationSeconds == other.explorationSeconds && this.breachSeconds == other.breachSeconds;
        }
        return false;
    }
    
    @Override
    public int hashCode() {
        return Objects.hash(this.nameKey, this.explorationSeconds, this.breachSeconds);
    }
}
