// 
// 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 ClampConfig
{
    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 min;
    public float max;
    public boolean normalize;
    
    public ClampConfig() {
    }
    
    public ClampConfig(final float min, final float max, final boolean normalize) {
        this.min = min;
        this.max = max;
        this.normalize = normalize;
    }
    
    public ClampConfig(@Nonnull final ClampConfig other) {
        this.min = other.min;
        this.max = other.max;
        this.normalize = other.normalize;
    }
    
    @Nonnull
    public static ClampConfig deserialize(@Nonnull final ByteBuf buf, final int offset) {
        final ClampConfig obj = new ClampConfig();
        obj.min = buf.getFloatLE(offset + 0);
        obj.max = buf.getFloatLE(offset + 4);
        obj.normalize = (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.min);
        buf.writeFloatLE(this.max);
        buf.writeByte(this.normalize ? 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 ClampConfig clone() {
        final ClampConfig copy = new ClampConfig();
        copy.min = this.min;
        copy.max = this.max;
        copy.normalize = this.normalize;
        return copy;
    }
    
    @Override
    public boolean equals(final Object obj) {
        if (this == obj) {
            return true;
        }
        if (obj instanceof final ClampConfig other) {
            return this.min == other.min && this.max == other.max && this.normalize == other.normalize;
        }
        return false;
    }
    
    @Override
    public int hashCode() {
        return Objects.hash(this.min, this.max, this.normalize);
    }
}
