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

package com.hypixel.hytale.protocol;

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

public class AngledWielding
{
    public static final int NULLABLE_BIT_FIELD_SIZE = 0;
    public static final int FIXED_BLOCK_SIZE = 9;
    public static final int VARIABLE_FIELD_COUNT = 0;
    public static final int VARIABLE_BLOCK_START = 9;
    public static final int MAX_SIZE = 9;
    public float angleRad;
    public float angleDistanceRad;
    public boolean hasModifiers;
    
    public AngledWielding() {
    }
    
    public AngledWielding(final float angleRad, final float angleDistanceRad, final boolean hasModifiers) {
        this.angleRad = angleRad;
        this.angleDistanceRad = angleDistanceRad;
        this.hasModifiers = hasModifiers;
    }
    
    public AngledWielding(@Nonnull final AngledWielding other) {
        this.angleRad = other.angleRad;
        this.angleDistanceRad = other.angleDistanceRad;
        this.hasModifiers = other.hasModifiers;
    }
    
    @Nonnull
    public static AngledWielding deserialize(@Nonnull final ByteBuf buf, final int offset) {
        final AngledWielding obj = new AngledWielding();
        obj.angleRad = buf.getFloatLE(offset + 0);
        obj.angleDistanceRad = buf.getFloatLE(offset + 4);
        obj.hasModifiers = (buf.getByte(offset + 8) != 0);
        return obj;
    }
    
    public static int computeBytesConsumed(@Nonnull final ByteBuf buf, final int offset) {
        return 9;
    }
    
    public void serialize(@Nonnull final ByteBuf buf) {
        buf.writeFloatLE(this.angleRad);
        buf.writeFloatLE(this.angleDistanceRad);
        buf.writeByte(this.hasModifiers ? 1 : 0);
    }
    
    public int computeSize() {
        return 9;
    }
    
    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");
        }
        return ValidationResult.OK;
    }
    
    public AngledWielding clone() {
        final AngledWielding copy = new AngledWielding();
        copy.angleRad = this.angleRad;
        copy.angleDistanceRad = this.angleDistanceRad;
        copy.hasModifiers = this.hasModifiers;
        return copy;
    }
    
    @Override
    public boolean equals(final Object obj) {
        if (this == obj) {
            return true;
        }
        if (obj instanceof final AngledWielding other) {
            return this.angleRad == other.angleRad && this.angleDistanceRad == other.angleDistanceRad && this.hasModifiers == other.hasModifiers;
        }
        return false;
    }
    
    @Override
    public int hashCode() {
        return Objects.hash(this.angleRad, this.angleDistanceRad, this.hasModifiers);
    }
}
