1
1
package org .bukkit .craftbukkit .block ;
2
2
3
- import java . util .Locale ;
3
+ import io . papermc . paper . util .OldEnumHolderable ;
4
4
import net .minecraft .core .Holder ;
5
5
import net .minecraft .core .registries .Registries ;
6
- import org .bukkit .NamespacedKey ;
7
6
import org .bukkit .block .Biome ;
8
7
import org .bukkit .craftbukkit .CraftRegistry ;
9
- import org .bukkit . craftbukkit . util . Handleable ;
10
- import org .jetbrains .annotations .NotNull ;
8
+ import org .jspecify . annotations . NullMarked ;
9
+ import org .jspecify .annotations .Nullable ;
11
10
12
- public class CraftBiome implements Biome , Handleable <net .minecraft .world .level .biome .Biome > {
11
+ @ NullMarked
12
+ public class CraftBiome extends OldEnumHolderable <Biome , net .minecraft .world .level .biome .Biome > implements Biome {
13
13
14
14
private static int count = 0 ;
15
15
@@ -18,100 +18,25 @@ public static Biome minecraftToBukkit(net.minecraft.world.level.biome.Biome mine
18
18
}
19
19
20
20
public static Biome minecraftHolderToBukkit (Holder <net .minecraft .world .level .biome .Biome > minecraft ) {
21
- return CraftBiome . minecraftToBukkit (minecraft . value () );
21
+ return CraftRegistry . minecraftHolderToBukkit (minecraft , Registries . BIOME );
22
22
}
23
23
24
- public static net .minecraft .world .level .biome .Biome bukkitToMinecraft (Biome bukkit ) {
24
+ public static net .minecraft .world .level .biome .@ Nullable Biome bukkitToMinecraft (Biome bukkit ) {
25
25
if (bukkit == Biome .CUSTOM ) {
26
26
return null ;
27
27
}
28
28
29
29
return CraftRegistry .bukkitToMinecraft (bukkit );
30
30
}
31
31
32
- public static Holder <net .minecraft .world .level .biome .Biome > bukkitToMinecraftHolder (Biome bukkit ) {
32
+ public static @ Nullable Holder <net .minecraft .world .level .biome .Biome > bukkitToMinecraftHolder (Biome bukkit ) {
33
33
if (bukkit == Biome .CUSTOM ) {
34
34
return null ;
35
35
}
36
-
37
- net .minecraft .core .Registry <net .minecraft .world .level .biome .Biome > registry = CraftRegistry .getMinecraftRegistry (Registries .BIOME );
38
-
39
- if (registry .wrapAsHolder (CraftBiome .bukkitToMinecraft (bukkit )) instanceof Holder .Reference <net .minecraft .world .level .biome .Biome > holder ) {
40
- return holder ;
41
- }
42
-
43
- throw new IllegalArgumentException ("No Reference holder found for " + bukkit
44
- + ", this can happen if a plugin creates its own biome base with out properly registering it." );
45
- }
46
-
47
- private final NamespacedKey key ;
48
- private final net .minecraft .world .level .biome .Biome biomeBase ;
49
- private final String name ;
50
- private final int ordinal ;
51
-
52
- public CraftBiome (NamespacedKey key , net .minecraft .world .level .biome .Biome biomeBase ) {
53
- this .key = key ;
54
- this .biomeBase = biomeBase ;
55
- // For backwards compatibility, minecraft values will stile return the uppercase name without the namespace,
56
- // in case plugins use for example the name as key in a config file to receive biome specific values.
57
- // Custom biomes will return the key with namespace. For a plugin this should look than like a new biome
58
- // (which can always be added in new minecraft versions and the plugin should therefore handle it accordingly).
59
- if (NamespacedKey .MINECRAFT .equals (key .getNamespace ())) {
60
- this .name = key .getKey ().toUpperCase (Locale .ROOT );
61
- } else {
62
- this .name = key .toString ();
63
- }
64
- this .ordinal = CraftBiome .count ++;
65
- }
66
-
67
- @ Override
68
- public net .minecraft .world .level .biome .Biome getHandle () {
69
- return this .biomeBase ;
70
- }
71
-
72
- @ NotNull
73
- @ Override
74
- public NamespacedKey getKey () {
75
- return this .key ;
76
- }
77
-
78
- @ Override
79
- public int compareTo (@ NotNull Biome biome ) {
80
- return this .ordinal - biome .ordinal ();
81
- }
82
-
83
- @ NotNull
84
- @ Override
85
- public String name () {
86
- return this .name ;
87
- }
88
-
89
- @ Override
90
- public int ordinal () {
91
- return this .ordinal ;
92
- }
93
-
94
- @ Override
95
- public String toString () {
96
- // For backwards compatibility
97
- return this .name ();
98
- }
99
-
100
- @ Override
101
- public boolean equals (Object other ) {
102
- if (this == other ) {
103
- return true ;
104
- }
105
-
106
- if (!(other instanceof CraftBiome otherBiome )) {
107
- return false ;
108
- }
109
-
110
- return this .getKey ().equals (otherBiome .getKey ());
36
+ return CraftRegistry .bukkitToMinecraftHolder (bukkit , Registries .BIOME );
111
37
}
112
38
113
- @ Override
114
- public int hashCode () {
115
- return this .getKey ().hashCode ();
39
+ public CraftBiome (final Holder <net .minecraft .world .level .biome .Biome > holder ) {
40
+ super (holder , count ++);
116
41
}
117
42
}
0 commit comments