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

package com.hypixel.hytale.protocol.packets.world;

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

public class PlaySoundEvent2D implements Packet
{
    public static final int PACKET_ID = 154;
    public static final boolean IS_COMPRESSED = false;
    public static final int NULLABLE_BIT_FIELD_SIZE = 0;
    public static final int FIXED_BLOCK_SIZE = 13;
    public static final int VARIABLE_FIELD_COUNT = 0;
    public static final int VARIABLE_BLOCK_START = 13;
    public static final int MAX_SIZE = 13;
    public int soundEventIndex;
    @Nonnull
    public SoundCategory category;
    public float volumeModifier;
    public float pitchModifier;
    
    @Override
    public int getId() {
        return 154;
    }
    
    public PlaySoundEvent2D() {
        this.category = SoundCategory.Music;
    }
    
    public PlaySoundEvent2D(final int soundEventIndex, @Nonnull final SoundCategory category, final float volumeModifier, final float pitchModifier) {
        this.category = SoundCategory.Music;
        this.soundEventIndex = soundEventIndex;
        this.category = category;
        this.volumeModifier = volumeModifier;
        this.pitchModifier = pitchModifier;
    }
    
    public PlaySoundEvent2D(@Nonnull final PlaySoundEvent2D other) {
        this.category = SoundCategory.Music;
        this.soundEventIndex = other.soundEventIndex;
        this.category = other.category;
        this.volumeModifier = other.volumeModifier;
        this.pitchModifier = other.pitchModifier;
    }
    
    @Nonnull
    public static PlaySoundEvent2D deserialize(@Nonnull final ByteBuf buf, final int offset) {
        final PlaySoundEvent2D obj = new PlaySoundEvent2D();
        obj.soundEventIndex = buf.getIntLE(offset + 0);
        obj.category = SoundCategory.fromValue(buf.getByte(offset + 4));
        obj.volumeModifier = buf.getFloatLE(offset + 5);
        obj.pitchModifier = buf.getFloatLE(offset + 9);
        return obj;
    }
    
    public static int computeBytesConsumed(@Nonnull final ByteBuf buf, final int offset) {
        return 13;
    }
    
    @Override
    public void serialize(@Nonnull final ByteBuf buf) {
        buf.writeIntLE(this.soundEventIndex);
        buf.writeByte(this.category.getValue());
        buf.writeFloatLE(this.volumeModifier);
        buf.writeFloatLE(this.pitchModifier);
    }
    
    @Override
    public int computeSize() {
        return 13;
    }
    
    public static ValidationResult validateStructure(@Nonnull final ByteBuf buffer, final int offset) {
        if (buffer.readableBytes() - offset < 13) {
            return ValidationResult.error("Buffer too small: expected at least 13 bytes");
        }
        return ValidationResult.OK;
    }
    
    public PlaySoundEvent2D clone() {
        final PlaySoundEvent2D copy = new PlaySoundEvent2D();
        copy.soundEventIndex = this.soundEventIndex;
        copy.category = this.category;
        copy.volumeModifier = this.volumeModifier;
        copy.pitchModifier = this.pitchModifier;
        return copy;
    }
    
    @Override
    public boolean equals(final Object obj) {
        if (this == obj) {
            return true;
        }
        if (obj instanceof final PlaySoundEvent2D other) {
            return this.soundEventIndex == other.soundEventIndex && Objects.equals(this.category, other.category) && this.volumeModifier == other.volumeModifier && this.pitchModifier == other.pitchModifier;
        }
        return false;
    }
    
    @Override
    public int hashCode() {
        return Objects.hash(this.soundEventIndex, this.category, this.volumeModifier, this.pitchModifier);
    }
}
