summaryrefslogtreewikicommitdiff
path: root/src/main/java/net/tylermurphy/hideAndSeek/util/protocollib/WrapperPlayServerNamedSoundEffect.java
blob: 5851a758a2884916d6fe59a894e8822f9d1218ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
/**
 * PacketWrapper - ProtocolLib wrappers for Minecraft packets
 * Copyright (C) dmulloy2 <http://dmulloy2.net>
 * Copyright (C) Kristian S. Strangeland
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

package net.tylermurphy.hideAndSeek.util.protocollib;

import org.bukkit.Sound;

import com.comphenix.protocol.PacketType;
import com.comphenix.protocol.events.PacketContainer;
import com.comphenix.protocol.wrappers.EnumWrappers.SoundCategory;

public class WrapperPlayServerNamedSoundEffect extends AbstractPacket {
    public static final PacketType TYPE =
            PacketType.Play.Server.NAMED_SOUND_EFFECT;

    public WrapperPlayServerNamedSoundEffect() {
        super(new PacketContainer(TYPE), TYPE);
        handle.getModifier().writeDefaults();
    }

    public WrapperPlayServerNamedSoundEffect(PacketContainer packet) {
        super(packet, TYPE);
    }

    public Sound getSoundEffect() {
        return handle.getSoundEffects().read(0);
    }

    public void setSoundEffect(Sound value) {
        handle.getSoundEffects().write(0, value);
    }

    public SoundCategory getSoundCategory() {
        return handle.getSoundCategories().read(0);
    }

    public void setSoundCategory(SoundCategory value) {
        handle.getSoundCategories().write(0, value);
    }

    /**
     * Retrieve Effect position X.
     * <p>
     * Notes: effect X multiplied by 8
     *
     * @return The current Effect position X
     */
    public int getEffectPositionX() {
        return handle.getIntegers().read(0);
    }

    /**
     * Set Effect position X.
     *
     * @param value - new value.
     */
    public void setEffectPositionX(int value) {
        handle.getIntegers().write(0, value);
    }

    /**
     * Retrieve Effect position Y.
     * <p>
     * Notes: effect Y multiplied by 8
     *
     * @return The current Effect position Y
     */
    public int getEffectPositionY() {
        return handle.getIntegers().read(1);
    }

    /**
     * Set Effect position Y.
     *
     * @param value - new value.
     */
    public void setEffectPositionY(int value) {
        handle.getIntegers().write(1, value);
    }

    /**
     * Retrieve Effect position Z.
     * <p>
     * Notes: effect Z multiplied by 8
     *
     * @return The current Effect position Z
     */
    public int getEffectPositionZ() {
        return handle.getIntegers().read(2);
    }

    /**
     * Set Effect position Z.
     *
     * @param value - new value.
     */
    public void setEffectPositionZ(int value) {
        handle.getIntegers().write(2, value);
    }

    /**
     * Retrieve Volume.
     * <p>
     * Notes: 1 is 100%, can be more
     *
     * @return The current Volume
     */
    public float getVolume() {
        return handle.getFloat().read(0);
    }

    /**
     * Set Volume.
     *
     * @param value - new value.
     */
    public void setVolume(float value) {
        handle.getFloat().write(0, value);
    }

    /**
     * Retrieve Pitch.
     * <p>
     * Notes: 63 is 100%, can be more
     *
     * @return The current Pitch
     */
    public float getPitch() {
        return handle.getFloat().read(1);
    }

    /**
     * Set Pitch.
     *
     * @param value - new value.
     */
    public void setPitch(float value) {
        handle.getFloat().write(1, value);
    }

}