// 
// 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 java.util.Iterator;
import com.hypixel.hytale.protocol.io.PacketIO;
import java.util.HashMap;
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;
import com.hypixel.hytale.protocol.CraftingRecipe;
import java.util.Map;
import com.hypixel.hytale.protocol.Packet;

public class UpdateKnownRecipes implements Packet
{
    public static final int PACKET_ID = 228;
    public static final boolean IS_COMPRESSED = false;
    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 Map<String, CraftingRecipe> known;
    
    @Override
    public int getId() {
        return 228;
    }
    
    public UpdateKnownRecipes() {
    }
    
    public UpdateKnownRecipes(@Nullable final Map<String, CraftingRecipe> known) {
        this.known = known;
    }
    
    public UpdateKnownRecipes(@Nonnull final UpdateKnownRecipes other) {
        this.known = other.known;
    }
    
    @Nonnull
    public static UpdateKnownRecipes deserialize(@Nonnull final ByteBuf buf, final int offset) {
        final UpdateKnownRecipes obj = new UpdateKnownRecipes();
        final byte nullBits = buf.getByte(offset);
        int pos = offset + 1;
        if ((nullBits & 0x1) != 0x0) {
            final int knownCount = VarInt.peek(buf, pos);
            if (knownCount < 0) {
                throw ProtocolException.negativeLength("Known", knownCount);
            }
            if (knownCount > 4096000) {
                throw ProtocolException.dictionaryTooLarge("Known", knownCount, 4096000);
            }
            pos += VarInt.size(knownCount);
            obj.known = new HashMap<String, CraftingRecipe>(knownCount);
            for (int i = 0; i < knownCount; ++i) {
                final int keyLen = VarInt.peek(buf, pos);
                if (keyLen < 0) {
                    throw ProtocolException.negativeLength("key", keyLen);
                }
                if (keyLen > 4096000) {
                    throw ProtocolException.stringTooLong("key", keyLen, 4096000);
                }
                final int keyVarLen = VarInt.length(buf, pos);
                final String key = PacketIO.readVarString(buf, pos);
                pos += keyVarLen + keyLen;
                final CraftingRecipe val = CraftingRecipe.deserialize(buf, pos);
                pos += CraftingRecipe.computeBytesConsumed(buf, pos);
                if (obj.known.put(key, val) != null) {
                    throw ProtocolException.duplicateKey("known", key);
                }
            }
        }
        return obj;
    }
    
    public static int computeBytesConsumed(@Nonnull final ByteBuf buf, final int offset) {
        final byte nullBits = buf.getByte(offset);
        int pos = offset + 1;
        if ((nullBits & 0x1) != 0x0) {
            final int dictLen = VarInt.peek(buf, pos);
            pos += VarInt.length(buf, pos);
            for (int i = 0; i < dictLen; ++i) {
                final int sl = VarInt.peek(buf, pos);
                pos += VarInt.length(buf, pos) + sl;
                pos += CraftingRecipe.computeBytesConsumed(buf, pos);
            }
        }
        return pos - offset;
    }
    
    @Override
    public void serialize(@Nonnull final ByteBuf buf) {
        byte nullBits = 0;
        if (this.known != null) {
            nullBits |= 0x1;
        }
        buf.writeByte(nullBits);
        if (this.known != null) {
            if (this.known.size() > 4096000) {
                throw ProtocolException.dictionaryTooLarge("Known", this.known.size(), 4096000);
            }
            VarInt.write(buf, this.known.size());
            for (final Map.Entry<String, CraftingRecipe> e : this.known.entrySet()) {
                PacketIO.writeVarString(buf, e.getKey(), 4096000);
                e.getValue().serialize(buf);
            }
        }
    }
    
    @Override
    public int computeSize() {
        int size = 1;
        if (this.known != null) {
            int knownSize = 0;
            for (final Map.Entry<String, CraftingRecipe> kvp : this.known.entrySet()) {
                knownSize += PacketIO.stringSize(kvp.getKey()) + kvp.getValue().computeSize();
            }
            size += VarInt.size(this.known.size()) + knownSize;
        }
        return size;
    }
    
    public static ValidationResult validateStructure(@Nonnull final ByteBuf buffer, final int offset) {
        if (buffer.readableBytes() - offset < 1) {
            return ValidationResult.error("Buffer too small: expected at least 1 bytes");
        }
        final byte nullBits = buffer.getByte(offset);
        int pos = offset + 1;
        if ((nullBits & 0x1) != 0x0) {
            final int knownCount = VarInt.peek(buffer, pos);
            if (knownCount < 0) {
                return ValidationResult.error("Invalid dictionary count for Known");
            }
            if (knownCount > 4096000) {
                return ValidationResult.error("Known exceeds max length 4096000");
            }
            pos += VarInt.length(buffer, pos);
            for (int i = 0; i < knownCount; ++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 += CraftingRecipe.computeBytesConsumed(buffer, pos);
            }
        }
        return ValidationResult.OK;
    }
    
    public UpdateKnownRecipes clone() {
        final UpdateKnownRecipes copy = new UpdateKnownRecipes();
        if (this.known != null) {
            final Map<String, CraftingRecipe> m = new HashMap<String, CraftingRecipe>();
            for (final Map.Entry<String, CraftingRecipe> e : this.known.entrySet()) {
                m.put(e.getKey(), e.getValue().clone());
            }
            copy.known = m;
        }
        return copy;
    }
    
    @Override
    public boolean equals(final Object obj) {
        if (this == obj) {
            return true;
        }
        if (obj instanceof final UpdateKnownRecipes other) {
            return Objects.equals(this.known, other.known);
        }
        return false;
    }
    
    @Override
    public int hashCode() {
        return Objects.hash(this.known);
    }
}
