2022-12-09 10:34:39 +01:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Jake Potrebic <jake.m.potrebic@gmail.com>
|
|
|
|
Date: Fri, 9 Dec 2022 01:34:03 -0800
|
2022-12-09 10:49:15 +01:00
|
|
|
Subject: [PATCH] fix Instruments
|
2022-12-09 10:34:39 +01:00
|
|
|
|
2022-12-09 10:49:15 +01:00
|
|
|
Add missing instrument enums
|
|
|
|
fix some wrong javadocs
|
2022-12-09 10:34:39 +01:00
|
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/Instrument.java b/src/main/java/org/bukkit/Instrument.java
|
2023-11-25 23:34:42 +01:00
|
|
|
index 032d7b812ddc0a85e316882c8f7de0c5a0a4fd30..8df26e0d7bea77bb257cddbc2ab9e969fa160681 100644
|
2022-12-09 10:34:39 +01:00
|
|
|
--- a/src/main/java/org/bukkit/Instrument.java
|
|
|
|
+++ b/src/main/java/org/bukkit/Instrument.java
|
2023-06-07 18:24:39 +02:00
|
|
|
@@ -7,7 +7,7 @@ import org.jetbrains.annotations.Nullable;
|
2022-12-09 10:49:15 +01:00
|
|
|
public enum Instrument {
|
|
|
|
|
|
|
|
/**
|
|
|
|
- * Piano is the standard instrument for a note block.
|
|
|
|
+ * Piano (Harp) is the standard instrument for a note block.
|
|
|
|
*/
|
2023-11-25 23:34:42 +01:00
|
|
|
PIANO(0x0, Sound.BLOCK_NOTE_BLOCK_HARP),
|
2022-12-09 10:49:15 +01:00
|
|
|
/**
|
2023-06-07 18:24:39 +02:00
|
|
|
@@ -21,7 +21,7 @@ public enum Instrument {
|
2022-12-09 10:49:15 +01:00
|
|
|
*/
|
2023-11-25 23:34:42 +01:00
|
|
|
SNARE_DRUM(0x2, Sound.BLOCK_NOTE_BLOCK_SNARE),
|
2022-12-09 10:49:15 +01:00
|
|
|
/**
|
|
|
|
- * Sticks are normally played when a note block is on top of a glass
|
|
|
|
+ * Sticks (Hat) are normally played when a note block is on top of a glass
|
|
|
|
* block.
|
|
|
|
*/
|
2023-11-25 23:34:42 +01:00
|
|
|
STICKS(0x3, Sound.BLOCK_NOTE_BLOCK_HAT),
|
|
|
|
@@ -78,39 +78,37 @@ public enum Instrument {
|
2023-06-07 18:24:39 +02:00
|
|
|
/**
|
|
|
|
* Zombie is normally played when a Zombie Head is on top of the note block.
|
2022-12-09 10:34:39 +01:00
|
|
|
*/
|
2023-11-25 23:34:42 +01:00
|
|
|
- ZOMBIE(Sound.BLOCK_NOTE_BLOCK_IMITATE_ZOMBIE),
|
|
|
|
+ ZOMBIE(0x10, Sound.BLOCK_NOTE_BLOCK_IMITATE_ZOMBIE), // Paper
|
2022-12-26 18:53:35 +01:00
|
|
|
/**
|
|
|
|
* Skeleton is normally played when a Skeleton Head is on top of the note block.
|
|
|
|
*/
|
2023-11-25 23:34:42 +01:00
|
|
|
- SKELETON(Sound.BLOCK_NOTE_BLOCK_IMITATE_SKELETON),
|
|
|
|
+ SKELETON(0x11, Sound.BLOCK_NOTE_BLOCK_IMITATE_SKELETON), // Paper
|
2022-12-26 18:53:35 +01:00
|
|
|
/**
|
|
|
|
* Creeper is normally played when a Creeper Head is on top of the note block.
|
|
|
|
*/
|
2023-11-25 23:34:42 +01:00
|
|
|
- CREEPER(Sound.BLOCK_NOTE_BLOCK_IMITATE_CREEPER),
|
|
|
|
+ CREEPER(0x12, Sound.BLOCK_NOTE_BLOCK_IMITATE_CREEPER), // Paper
|
2022-12-26 18:53:35 +01:00
|
|
|
/**
|
|
|
|
* Dragon is normally played when a Dragon Head is on top of the note block.
|
|
|
|
*/
|
2023-11-25 23:34:42 +01:00
|
|
|
- DRAGON(Sound.BLOCK_NOTE_BLOCK_IMITATE_ENDER_DRAGON),
|
|
|
|
+ DRAGON(0x13, Sound.BLOCK_NOTE_BLOCK_IMITATE_ENDER_DRAGON), // Paper
|
2022-12-26 18:53:35 +01:00
|
|
|
/**
|
|
|
|
* Wither Skeleton is normally played when a Wither Skeleton Head is on top of the note block.
|
|
|
|
*/
|
2023-11-25 23:34:42 +01:00
|
|
|
- WITHER_SKELETON(Sound.BLOCK_NOTE_BLOCK_IMITATE_WITHER_SKELETON),
|
|
|
|
+ WITHER_SKELETON(0x14, Sound.BLOCK_NOTE_BLOCK_IMITATE_WITHER_SKELETON), // Paper
|
2022-12-26 18:53:35 +01:00
|
|
|
/**
|
|
|
|
* Piglin is normally played when a Piglin Head is on top of the note block.
|
|
|
|
*/
|
2023-11-25 23:34:42 +01:00
|
|
|
- PIGLIN(Sound.BLOCK_NOTE_BLOCK_IMITATE_PIGLIN),
|
|
|
|
+ PIGLIN(0x15, Sound.BLOCK_NOTE_BLOCK_IMITATE_PIGLIN), // Paper
|
2022-12-26 18:53:35 +01:00
|
|
|
/**
|
|
|
|
* Custom Sound is normally played when a Player Head with the required data is on top of the note block.
|
|
|
|
*/
|
2023-11-25 23:34:42 +01:00
|
|
|
- CUSTOM_HEAD(null);
|
|
|
|
+ CUSTOM_HEAD(0x16, null); // Paper
|
2022-12-09 10:34:39 +01:00
|
|
|
|
|
|
|
private final byte type;
|
2023-11-25 23:34:42 +01:00
|
|
|
private final Sound sound;
|
2022-12-09 10:34:39 +01:00
|
|
|
private static final Map<Byte, Instrument> BY_DATA = Maps.newHashMap();
|
2022-12-26 18:53:35 +01:00
|
|
|
|
2023-11-25 23:34:42 +01:00
|
|
|
- private Instrument(final Sound sound) {
|
|
|
|
- this(-1, sound);
|
2022-12-26 18:53:35 +01:00
|
|
|
- }
|
|
|
|
+ // Paper - remove ctor (the server still uses the byte magic value)
|
|
|
|
|
2023-11-25 23:34:42 +01:00
|
|
|
private Instrument(final int type, final Sound sound) {
|
2022-12-26 18:53:35 +01:00
|
|
|
this.type = (byte) type;
|
2023-11-25 23:34:42 +01:00
|
|
|
@@ -130,9 +128,8 @@ public enum Instrument {
|
2022-12-26 18:53:35 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return The type ID of this instrument.
|
|
|
|
- * @deprecated Magic value
|
|
|
|
*/
|
|
|
|
- @Deprecated
|
|
|
|
+ @org.jetbrains.annotations.ApiStatus.Internal // Paper
|
|
|
|
public byte getType() {
|
|
|
|
return this.type;
|
|
|
|
}
|
2023-11-25 23:34:42 +01:00
|
|
|
@@ -142,9 +139,8 @@ public enum Instrument {
|
2022-12-26 18:53:35 +01:00
|
|
|
*
|
|
|
|
* @param type The type ID
|
|
|
|
* @return The instrument
|
|
|
|
- * @deprecated Magic value
|
|
|
|
*/
|
|
|
|
- @Deprecated
|
|
|
|
+ @org.jetbrains.annotations.ApiStatus.Internal // Paper
|
|
|
|
@Nullable
|
|
|
|
public static Instrument getByType(final byte type) {
|
|
|
|
return BY_DATA.get(type);
|
|
|
|
diff --git a/src/test/java/org/bukkit/InstrumentTest.java b/src/test/java/org/bukkit/InstrumentTest.java
|
2023-09-24 09:16:58 +02:00
|
|
|
index 8c1d88885de7d56c1b7c78d2e6e059b0648c982a..b177a47a5bda05bfe3598ec5e6771b92a73f0edf 100644
|
2022-12-26 18:53:35 +01:00
|
|
|
--- a/src/test/java/org/bukkit/InstrumentTest.java
|
|
|
|
+++ b/src/test/java/org/bukkit/InstrumentTest.java
|
|
|
|
@@ -8,9 +8,7 @@ public class InstrumentTest {
|
|
|
|
@Test
|
|
|
|
public void getByType() {
|
|
|
|
for (Instrument instrument : Instrument.values()) {
|
|
|
|
- if (instrument.getType() < 0) {
|
|
|
|
- continue;
|
|
|
|
- }
|
|
|
|
+ // Paper - byte magic values are still used
|
|
|
|
|
|
|
|
assertThat(Instrument.getByType(instrument.getType()), is(instrument));
|
|
|
|
}
|