// 
// 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 ModelParticle
{
    public static final int NULLABLE_BIT_FIELD_SIZE = 1;
    public static final int FIXED_BLOCK_SIZE = 34;
    public static final int VARIABLE_FIELD_COUNT = 2;
    public static final int VARIABLE_BLOCK_START = 42;
    public static final int MAX_SIZE = 32768052;
    @Nullable
    public String systemId;
    public float scale;
    @Nullable
    public Color color;
    @Nonnull
    public EntityPart targetEntityPart;
    @Nullable
    public String targetNodeName;
    @Nullable
    public Vector3f positionOffset;
    @Nullable
    public Direction rotationOffset;
    public boolean detachedFromModel;
    
    public ModelParticle() {
        this.targetEntityPart = EntityPart.Self;
    }
    
    public ModelParticle(@Nullable final String systemId, final float scale, @Nullable final Color color, @Nonnull final EntityPart targetEntityPart, @Nullable final String targetNodeName, @Nullable final Vector3f positionOffset, @Nullable final Direction rotationOffset, final boolean detachedFromModel) {
        this.targetEntityPart = EntityPart.Self;
        this.systemId = systemId;
        this.scale = scale;
        this.color = color;
        this.targetEntityPart = targetEntityPart;
        this.targetNodeName = targetNodeName;
        this.positionOffset = positionOffset;
        this.rotationOffset = rotationOffset;
        this.detachedFromModel = detachedFromModel;
    }
    
    public ModelParticle(@Nonnull final ModelParticle other) {
        this.targetEntityPart = EntityPart.Self;
        this.systemId = other.systemId;
        this.scale = other.scale;
        this.color = other.color;
        this.targetEntityPart = other.targetEntityPart;
        this.targetNodeName = other.targetNodeName;
        this.positionOffset = other.positionOffset;
        this.rotationOffset = other.rotationOffset;
        this.detachedFromModel = other.detachedFromModel;
    }
    
    @Nonnull
    public static ModelParticle deserialize(@Nonnull final ByteBuf buf, final int offset) {
        final ModelParticle obj = new ModelParticle();
        final byte nullBits = buf.getByte(offset);
        obj.scale = buf.getFloatLE(offset + 1);
        if ((nullBits & 0x1) != 0x0) {
            obj.color = Color.deserialize(buf, offset + 5);
        }
        obj.targetEntityPart = EntityPart.fromValue(buf.getByte(offset + 8));
        if ((nullBits & 0x2) != 0x0) {
            obj.positionOffset = Vector3f.deserialize(buf, offset + 9);
        }
        if ((nullBits & 0x4) != 0x0) {
            obj.rotationOffset = Direction.deserialize(buf, offset + 21);
        }
        obj.detachedFromModel = (buf.getByte(offset + 33) != 0);
        if ((nullBits & 0x8) != 0x0) {
            final int varPos0 = offset + 42 + buf.getIntLE(offset + 34);
            final int systemIdLen = VarInt.peek(buf, varPos0);
            if (systemIdLen < 0) {
                throw ProtocolException.negativeLength("SystemId", systemIdLen);
            }
            if (systemIdLen > 4096000) {
                throw ProtocolException.stringTooLong("SystemId", systemIdLen, 4096000);
            }
            obj.systemId = PacketIO.readVarString(buf, varPos0, PacketIO.UTF8);
        }
        if ((nullBits & 0x10) != 0x0) {
            final int varPos2 = offset + 42 + buf.getIntLE(offset + 38);
            final int targetNodeNameLen = VarInt.peek(buf, varPos2);
            if (targetNodeNameLen < 0) {
                throw ProtocolException.negativeLength("TargetNodeName", targetNodeNameLen);
            }
            if (targetNodeNameLen > 4096000) {
                throw ProtocolException.stringTooLong("TargetNodeName", targetNodeNameLen, 4096000);
            }
            obj.targetNodeName = PacketIO.readVarString(buf, varPos2, PacketIO.UTF8);
        }
        return obj;
    }
    
    public static int computeBytesConsumed(@Nonnull final ByteBuf buf, final int offset) {
        final byte nullBits = buf.getByte(offset);
        int maxEnd = 42;
        if ((nullBits & 0x8) != 0x0) {
            final int fieldOffset0 = buf.getIntLE(offset + 34);
            int pos0 = offset + 42 + fieldOffset0;
            final int sl = VarInt.peek(buf, pos0);
            pos0 += VarInt.length(buf, pos0) + sl;
            if (pos0 - offset > maxEnd) {
                maxEnd = pos0 - offset;
            }
        }
        if ((nullBits & 0x10) != 0x0) {
            final int fieldOffset2 = buf.getIntLE(offset + 38);
            int pos2 = offset + 42 + fieldOffset2;
            final int sl = VarInt.peek(buf, pos2);
            pos2 += VarInt.length(buf, pos2) + sl;
            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.color != null) {
            nullBits |= 0x1;
        }
        if (this.positionOffset != null) {
            nullBits |= 0x2;
        }
        if (this.rotationOffset != null) {
            nullBits |= 0x4;
        }
        if (this.systemId != null) {
            nullBits |= 0x8;
        }
        if (this.targetNodeName != null) {
            nullBits |= 0x10;
        }
        buf.writeByte(nullBits);
        buf.writeFloatLE(this.scale);
        if (this.color != null) {
            this.color.serialize(buf);
        }
        else {
            buf.writeZero(3);
        }
        buf.writeByte(this.targetEntityPart.getValue());
        if (this.positionOffset != null) {
            this.positionOffset.serialize(buf);
        }
        else {
            buf.writeZero(12);
        }
        if (this.rotationOffset != null) {
            this.rotationOffset.serialize(buf);
        }
        else {
            buf.writeZero(12);
        }
        buf.writeByte(this.detachedFromModel ? 1 : 0);
        final int systemIdOffsetSlot = buf.writerIndex();
        buf.writeIntLE(0);
        final int targetNodeNameOffsetSlot = buf.writerIndex();
        buf.writeIntLE(0);
        final int varBlockStart = buf.writerIndex();
        if (this.systemId != null) {
            buf.setIntLE(systemIdOffsetSlot, buf.writerIndex() - varBlockStart);
            PacketIO.writeVarString(buf, this.systemId, 4096000);
        }
        else {
            buf.setIntLE(systemIdOffsetSlot, -1);
        }
        if (this.targetNodeName != null) {
            buf.setIntLE(targetNodeNameOffsetSlot, buf.writerIndex() - varBlockStart);
            PacketIO.writeVarString(buf, this.targetNodeName, 4096000);
        }
        else {
            buf.setIntLE(targetNodeNameOffsetSlot, -1);
        }
    }
    
    public int computeSize() {
        int size = 42;
        if (this.systemId != null) {
            size += PacketIO.stringSize(this.systemId);
        }
        if (this.targetNodeName != null) {
            size += PacketIO.stringSize(this.targetNodeName);
        }
        return size;
    }
    
    public static ValidationResult validateStructure(@Nonnull final ByteBuf buffer, final int offset) {
        if (buffer.readableBytes() - offset < 42) {
            return ValidationResult.error("Buffer too small: expected at least 42 bytes");
        }
        final byte nullBits = buffer.getByte(offset);
        if ((nullBits & 0x8) != 0x0) {
            final int systemIdOffset = buffer.getIntLE(offset + 34);
            if (systemIdOffset < 0) {
                return ValidationResult.error("Invalid offset for SystemId");
            }
            int pos = offset + 42 + systemIdOffset;
            if (pos >= buffer.writerIndex()) {
                return ValidationResult.error("Offset out of bounds for SystemId");
            }
            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");
            }
        }
        if ((nullBits & 0x10) != 0x0) {
            final int targetNodeNameOffset = buffer.getIntLE(offset + 38);
            if (targetNodeNameOffset < 0) {
                return ValidationResult.error("Invalid offset for TargetNodeName");
            }
            int pos = offset + 42 + targetNodeNameOffset;
            if (pos >= buffer.writerIndex()) {
                return ValidationResult.error("Offset out of bounds for TargetNodeName");
            }
            final int targetNodeNameLen = VarInt.peek(buffer, pos);
            if (targetNodeNameLen < 0) {
                return ValidationResult.error("Invalid string length for TargetNodeName");
            }
            if (targetNodeNameLen > 4096000) {
                return ValidationResult.error("TargetNodeName exceeds max length 4096000");
            }
            pos += VarInt.length(buffer, pos);
            pos += targetNodeNameLen;
            if (pos > buffer.writerIndex()) {
                return ValidationResult.error("Buffer overflow reading TargetNodeName");
            }
        }
        return ValidationResult.OK;
    }
    
    public ModelParticle clone() {
        final ModelParticle copy = new ModelParticle();
        copy.systemId = this.systemId;
        copy.scale = this.scale;
        copy.color = ((this.color != null) ? this.color.clone() : null);
        copy.targetEntityPart = this.targetEntityPart;
        copy.targetNodeName = this.targetNodeName;
        copy.positionOffset = ((this.positionOffset != null) ? this.positionOffset.clone() : null);
        copy.rotationOffset = ((this.rotationOffset != null) ? this.rotationOffset.clone() : null);
        copy.detachedFromModel = this.detachedFromModel;
        return copy;
    }
    
    @Override
    public boolean equals(final Object obj) {
        if (this == obj) {
            return true;
        }
        if (obj instanceof final ModelParticle other) {
            return Objects.equals(this.systemId, other.systemId) && this.scale == other.scale && Objects.equals(this.color, other.color) && Objects.equals(this.targetEntityPart, other.targetEntityPart) && Objects.equals(this.targetNodeName, other.targetNodeName) && Objects.equals(this.positionOffset, other.positionOffset) && Objects.equals(this.rotationOffset, other.rotationOffset) && this.detachedFromModel == other.detachedFromModel;
        }
        return false;
    }
    
    @Override
    public int hashCode() {
        return Objects.hash(this.systemId, this.scale, this.color, this.targetEntityPart, this.targetNodeName, this.positionOffset, this.rotationOffset, this.detachedFromModel);
    }
}
