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

package com.hypixel.hytale.protocol;

import java.util.Objects;
import com.hypixel.hytale.protocol.io.ValidationResult;
import java.util.Iterator;
import java.util.HashMap;
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 java.util.Map;
import javax.annotation.Nullable;

public class SoundSet
{
    public static final int NULLABLE_BIT_FIELD_SIZE = 1;
    public static final int FIXED_BLOCK_SIZE = 2;
    public static final int VARIABLE_FIELD_COUNT = 2;
    public static final int VARIABLE_BLOCK_START = 10;
    public static final int MAX_SIZE = 1677721600;
    @Nullable
    public String id;
    @Nullable
    public Map<String, Integer> sounds;
    @Nonnull
    public SoundCategory category;
    
    public SoundSet() {
        this.category = SoundCategory.Music;
    }
    
    public SoundSet(@Nullable final String id, @Nullable final Map<String, Integer> sounds, @Nonnull final SoundCategory category) {
        this.category = SoundCategory.Music;
        this.id = id;
        this.sounds = sounds;
        this.category = category;
    }
    
    public SoundSet(@Nonnull final SoundSet other) {
        this.category = SoundCategory.Music;
        this.id = other.id;
        this.sounds = other.sounds;
        this.category = other.category;
    }
    
    @Nonnull
    public static SoundSet deserialize(@Nonnull final ByteBuf buf, final int offset) {
        final SoundSet obj = new SoundSet();
        final byte nullBits = buf.getByte(offset);
        obj.category = SoundCategory.fromValue(buf.getByte(offset + 1));
        if ((nullBits & 0x1) != 0x0) {
            final int varPos0 = offset + 10 + buf.getIntLE(offset + 2);
            final int idLen = VarInt.peek(buf, varPos0);
            if (idLen < 0) {
                throw ProtocolException.negativeLength("Id", idLen);
            }
            if (idLen > 4096000) {
                throw ProtocolException.stringTooLong("Id", idLen, 4096000);
            }
            obj.id = PacketIO.readVarString(buf, varPos0, PacketIO.UTF8);
        }
        if ((nullBits & 0x2) != 0x0) {
            final int varPos2 = offset + 10 + buf.getIntLE(offset + 6);
            final int soundsCount = VarInt.peek(buf, varPos2);
            if (soundsCount < 0) {
                throw ProtocolException.negativeLength("Sounds", soundsCount);
            }
            if (soundsCount > 4096000) {
                throw ProtocolException.dictionaryTooLarge("Sounds", soundsCount, 4096000);
            }
            final int varIntLen = VarInt.length(buf, varPos2);
            obj.sounds = new HashMap<String, Integer>(soundsCount);
            int dictPos = varPos2 + varIntLen;
            for (int i = 0; i < soundsCount; ++i) {
                final int keyLen = VarInt.peek(buf, dictPos);
                if (keyLen < 0) {
                    throw ProtocolException.negativeLength("key", keyLen);
                }
                if (keyLen > 4096000) {
                    throw ProtocolException.stringTooLong("key", keyLen, 4096000);
                }
                final int keyVarLen = VarInt.length(buf, dictPos);
                final String key = PacketIO.readVarString(buf, dictPos);
                dictPos += keyVarLen + keyLen;
                final int val = buf.getIntLE(dictPos);
                dictPos += 4;
                if (obj.sounds.put(key, val) != null) {
                    throw ProtocolException.duplicateKey("sounds", key);
                }
            }
        }
        return obj;
    }
    
    public static int computeBytesConsumed(@Nonnull final ByteBuf buf, final int offset) {
        final byte nullBits = buf.getByte(offset);
        int maxEnd = 10;
        if ((nullBits & 0x1) != 0x0) {
            final int fieldOffset0 = buf.getIntLE(offset + 2);
            int pos0 = offset + 10 + fieldOffset0;
            final int sl = VarInt.peek(buf, pos0);
            pos0 += VarInt.length(buf, pos0) + sl;
            if (pos0 - offset > maxEnd) {
                maxEnd = pos0 - offset;
            }
        }
        if ((nullBits & 0x2) != 0x0) {
            final int fieldOffset2 = buf.getIntLE(offset + 6);
            int pos2 = offset + 10 + fieldOffset2;
            final int dictLen = VarInt.peek(buf, pos2);
            pos2 += VarInt.length(buf, pos2);
            for (int i = 0; i < dictLen; ++i) {
                final int sl2 = VarInt.peek(buf, pos2);
                pos2 += VarInt.length(buf, pos2) + sl2;
                pos2 += 4;
            }
            if (pos2 - offset > maxEnd) {
                maxEnd = pos2 - offset;
            }
        }
        return maxEnd;
    }
    
    public void serialize(@Nonnull final ByteBuf buf) {
        final int startPos = buf.writerIndex();
        byte nullBits = 0;
        if (this.id != null) {
            nullBits |= 0x1;
        }
        if (this.sounds != null) {
            nullBits |= 0x2;
        }
        buf.writeByte(nullBits);
        buf.writeByte(this.category.getValue());
        final int idOffsetSlot = buf.writerIndex();
        buf.writeIntLE(0);
        final int soundsOffsetSlot = buf.writerIndex();
        buf.writeIntLE(0);
        final int varBlockStart = buf.writerIndex();
        if (this.id != null) {
            buf.setIntLE(idOffsetSlot, buf.writerIndex() - varBlockStart);
            PacketIO.writeVarString(buf, this.id, 4096000);
        }
        else {
            buf.setIntLE(idOffsetSlot, -1);
        }
        if (this.sounds != null) {
            buf.setIntLE(soundsOffsetSlot, buf.writerIndex() - varBlockStart);
            if (this.sounds.size() > 4096000) {
                throw ProtocolException.dictionaryTooLarge("Sounds", this.sounds.size(), 4096000);
            }
            VarInt.write(buf, this.sounds.size());
            for (final Map.Entry<String, Integer> e : this.sounds.entrySet()) {
                PacketIO.writeVarString(buf, e.getKey(), 4096000);
                buf.writeIntLE(e.getValue());
            }
        }
        else {
            buf.setIntLE(soundsOffsetSlot, -1);
        }
    }
    
    public int computeSize() {
        int size = 10;
        if (this.id != null) {
            size += PacketIO.stringSize(this.id);
        }
        if (this.sounds != null) {
            int soundsSize = 0;
            for (final Map.Entry<String, Integer> kvp : this.sounds.entrySet()) {
                soundsSize += PacketIO.stringSize(kvp.getKey()) + 4;
            }
            size += VarInt.size(this.sounds.size()) + soundsSize;
        }
        return size;
    }
    
    public static ValidationResult validateStructure(@Nonnull final ByteBuf buffer, final int offset) {
        if (buffer.readableBytes() - offset < 10) {
            return ValidationResult.error("Buffer too small: expected at least 10 bytes");
        }
        final byte nullBits = buffer.getByte(offset);
        if ((nullBits & 0x1) != 0x0) {
            final int idOffset = buffer.getIntLE(offset + 2);
            if (idOffset < 0) {
                return ValidationResult.error("Invalid offset for Id");
            }
            int pos = offset + 10 + idOffset;
            if (pos >= buffer.writerIndex()) {
                return ValidationResult.error("Offset out of bounds for Id");
            }
            final int idLen = VarInt.peek(buffer, pos);
            if (idLen < 0) {
                return ValidationResult.error("Invalid string length for Id");
            }
            if (idLen > 4096000) {
                return ValidationResult.error("Id exceeds max length 4096000");
            }
            pos += VarInt.length(buffer, pos);
            pos += idLen;
            if (pos > buffer.writerIndex()) {
                return ValidationResult.error("Buffer overflow reading Id");
            }
        }
        if ((nullBits & 0x2) != 0x0) {
            final int soundsOffset = buffer.getIntLE(offset + 6);
            if (soundsOffset < 0) {
                return ValidationResult.error("Invalid offset for Sounds");
            }
            int pos = offset + 10 + soundsOffset;
            if (pos >= buffer.writerIndex()) {
                return ValidationResult.error("Offset out of bounds for Sounds");
            }
            final int soundsCount = VarInt.peek(buffer, pos);
            if (soundsCount < 0) {
                return ValidationResult.error("Invalid dictionary count for Sounds");
            }
            if (soundsCount > 4096000) {
                return ValidationResult.error("Sounds exceeds max length 4096000");
            }
            pos += VarInt.length(buffer, pos);
            for (int i = 0; i < soundsCount; ++i) {
                final int keyLen = VarInt.peek(buffer, pos);
                if (keyLen < 0) {
                    return ValidationResult.error("Invalid string length for key");
                }
                if (keyLen > 4096000) {
                    return ValidationResult.error("key exceeds max length 4096000");
                }
                pos += VarInt.length(buffer, pos);
                pos += keyLen;
                if (pos > buffer.writerIndex()) {
                    return ValidationResult.error("Buffer overflow reading key");
                }
                pos += 4;
                if (pos > buffer.writerIndex()) {
                    return ValidationResult.error("Buffer overflow reading value");
                }
            }
        }
        return ValidationResult.OK;
    }
    
    public SoundSet clone() {
        final SoundSet copy = new SoundSet();
        copy.id = this.id;
        copy.sounds = ((this.sounds != null) ? new HashMap<String, Integer>(this.sounds) : null);
        copy.category = this.category;
        return copy;
    }
    
    @Override
    public boolean equals(final Object obj) {
        if (this == obj) {
            return true;
        }
        if (obj instanceof final SoundSet other) {
            return Objects.equals(this.id, other.id) && Objects.equals(this.sounds, other.sounds) && Objects.equals(this.category, other.category);
        }
        return false;
    }
    
    @Override
    public int hashCode() {
        return Objects.hash(this.id, this.sounds, this.category);
    }
}
