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

package com.hypixel.hytale.protocol;

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 WorldParticle
{
    public static final int NULLABLE_BIT_FIELD_SIZE = 1;
    public static final int FIXED_BLOCK_SIZE = 32;
    public static final int VARIABLE_FIELD_COUNT = 1;
    public static final int VARIABLE_BLOCK_START = 32;
    public static final int MAX_SIZE = 16384037;
    @Nullable
    public String systemId;
    public float scale;
    @Nullable
    public Color color;
    @Nullable
    public Vector3f positionOffset;
    @Nullable
    public Direction rotationOffset;
    
    public WorldParticle() {
    }
    
    public WorldParticle(@Nullable final String systemId, final float scale, @Nullable final Color color, @Nullable final Vector3f positionOffset, @Nullable final Direction rotationOffset) {
        this.systemId = systemId;
        this.scale = scale;
        this.color = color;
        this.positionOffset = positionOffset;
        this.rotationOffset = rotationOffset;
    }
    
    public WorldParticle(@Nonnull final WorldParticle other) {
        this.systemId = other.systemId;
        this.scale = other.scale;
        this.color = other.color;
        this.positionOffset = other.positionOffset;
        this.rotationOffset = other.rotationOffset;
    }
    
    @Nonnull
    public static WorldParticle deserialize(@Nonnull final ByteBuf buf, final int offset) {
        final WorldParticle obj = new WorldParticle();
        final byte nullBits = buf.getByte(offset);
        obj.scale = buf.getFloatLE(offset + 1);
        if ((nullBits & 0x1) != 0x0) {
            obj.color = Color.deserialize(buf, offset + 5);
        }
        if ((nullBits & 0x2) != 0x0) {
            obj.positionOffset = Vector3f.deserialize(buf, offset + 8);
        }
        if ((nullBits & 0x4) != 0x0) {
            obj.rotationOffset = Direction.deserialize(buf, offset + 20);
        }
        int pos = offset + 32;
        if ((nullBits & 0x8) != 0x0) {
            final int systemIdLen = VarInt.peek(buf, pos);
            if (systemIdLen < 0) {
                throw ProtocolException.negativeLength("SystemId", systemIdLen);
            }
            if (systemIdLen > 4096000) {
                throw ProtocolException.stringTooLong("SystemId", systemIdLen, 4096000);
            }
            final int systemIdVarLen = VarInt.length(buf, pos);
            obj.systemId = PacketIO.readVarString(buf, pos, PacketIO.UTF8);
            pos += systemIdVarLen + systemIdLen;
        }
        return obj;
    }
    
    public static int computeBytesConsumed(@Nonnull final ByteBuf buf, final int offset) {
        final byte nullBits = buf.getByte(offset);
        int pos = offset + 32;
        if ((nullBits & 0x8) != 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.color != null) {
            nullBits |= 0x1;
        }
        if (this.positionOffset != null) {
            nullBits |= 0x2;
        }
        if (this.rotationOffset != null) {
            nullBits |= 0x4;
        }
        if (this.systemId != null) {
            nullBits |= 0x8;
        }
        buf.writeByte(nullBits);
        buf.writeFloatLE(this.scale);
        if (this.color != null) {
            this.color.serialize(buf);
        }
        else {
            buf.writeZero(3);
        }
        if (this.positionOffset != null) {
            this.positionOffset.serialize(buf);
        }
        else {
            buf.writeZero(12);
        }
        if (this.rotationOffset != null) {
            this.rotationOffset.serialize(buf);
        }
        else {
            buf.writeZero(12);
        }
        if (this.systemId != null) {
            PacketIO.writeVarString(buf, this.systemId, 4096000);
        }
    }
    
    public int computeSize() {
        int size = 32;
        if (this.systemId != null) {
            size += PacketIO.stringSize(this.systemId);
        }
        return size;
    }
    
    public static ValidationResult validateStructure(@Nonnull final ByteBuf buffer, final int offset) {
        if (buffer.readableBytes() - offset < 32) {
            return ValidationResult.error("Buffer too small: expected at least 32 bytes");
        }
        final byte nullBits = buffer.getByte(offset);
        int pos = offset + 32;
        if ((nullBits & 0x8) != 0x0) {
            final int systemIdLen = VarInt.peek(buffer, pos);
            if (systemIdLen < 0) {
                return ValidationResult.error("Invalid string length for SystemId");
            }
            if (systemIdLen > 4096000) {
                return ValidationResult.error("SystemId exceeds max length 4096000");
            }
            pos += VarInt.length(buffer, pos);
            pos += systemIdLen;
            if (pos > buffer.writerIndex()) {
                return ValidationResult.error("Buffer overflow reading SystemId");
            }
        }
        return ValidationResult.OK;
    }
    
    public WorldParticle clone() {
        final WorldParticle copy = new WorldParticle();
        copy.systemId = this.systemId;
        copy.scale = this.scale;
        copy.color = ((this.color != null) ? this.color.clone() : null);
        copy.positionOffset = ((this.positionOffset != null) ? this.positionOffset.clone() : null);
        copy.rotationOffset = ((this.rotationOffset != null) ? this.rotationOffset.clone() : null);
        return copy;
    }
    
    @Override
    public boolean equals(final Object obj) {
        if (this == obj) {
            return true;
        }
        if (obj instanceof final WorldParticle other) {
            return Objects.equals(this.systemId, other.systemId) && this.scale == other.scale && Objects.equals(this.color, other.color) && Objects.equals(this.positionOffset, other.positionOffset) && Objects.equals(this.rotationOffset, other.rotationOffset);
        }
        return false;
    }
    
    @Override
    public int hashCode() {
        return Objects.hash(this.systemId, this.scale, this.color, this.positionOffset, this.rotationOffset);
    }
}
