9
9
import net .minecraft .nbt .DoubleTag ;
10
10
import net .minecraft .nbt .IntTag ;
11
11
import net .minecraft .nbt .ListTag ;
12
+ import net .minecraft .nbt .NbtOps ;
13
+ import net .minecraft .nbt .SnbtGrammar ;
12
14
import net .minecraft .nbt .SnbtPrinterTagVisitor ;
13
15
import net .minecraft .nbt .StringTag ;
14
16
import net .minecraft .nbt .Tag ;
@@ -20,7 +22,7 @@ public class CraftNBTTagConfigSerializer {
20
22
private static final Pattern ARRAY = Pattern .compile ("^\\ [.*]" );
21
23
private static final Pattern INTEGER = Pattern .compile ("[-+]?(?:0|[1-9][0-9]*)i" , Pattern .CASE_INSENSITIVE ); // Paper - fix regex
22
24
private static final Pattern DOUBLE = Pattern .compile ("[-+]?(?:[0-9]+[.]?|[0-9]*[.][0-9]+)(?:e[-+]?[0-9]+)?d" , Pattern .CASE_INSENSITIVE );
23
- private static final TagParser MOJANGSON_PARSER = new TagParser ( new StringReader ( "" ) );
25
+ private static final TagParser < Tag > MOJANGSON_PARSER = TagParser . create ( NbtOps . INSTANCE );
24
26
25
27
public static String serialize (@ NotNull final Tag base ) {
26
28
final SnbtPrinterTagVisitor snbtVisitor = new SnbtPrinterTagVisitor ();
@@ -31,7 +33,7 @@ public static Tag deserialize(final Object object) {
31
33
// The new logic expects the top level object to be a single string, holding the entire nbt tag as SNBT.
32
34
if (object instanceof final String snbtString ) {
33
35
try {
34
- return TagParser .parseTag (snbtString );
36
+ return TagParser .parseCompoundFully (snbtString );
35
37
} catch (final CommandSyntaxException e ) {
36
38
throw new RuntimeException ("Failed to deserialise nbt" , e );
37
39
}
@@ -65,7 +67,7 @@ private static Tag internalLegacyDeserialization(@NotNull final Object object) {
65
67
66
68
if (CraftNBTTagConfigSerializer .ARRAY .matcher (string ).matches ()) {
67
69
try {
68
- return new TagParser ( new StringReader ( string )). readArrayTag ( );
70
+ return MOJANGSON_PARSER . parseFully ( string );
69
71
} catch (CommandSyntaxException e ) {
70
72
throw new RuntimeException ("Could not deserialize found list " , e );
71
73
}
@@ -74,14 +76,18 @@ private static Tag internalLegacyDeserialization(@NotNull final Object object) {
74
76
} else if (CraftNBTTagConfigSerializer .DOUBLE .matcher (string ).matches ()) {
75
77
return DoubleTag .valueOf (Double .parseDouble (string .substring (0 , string .length () - 1 )));
76
78
} else {
77
- Tag nbtBase = CraftNBTTagConfigSerializer .MOJANGSON_PARSER .type (string );
79
+ try {
80
+ Tag nbtBase = CraftNBTTagConfigSerializer .MOJANGSON_PARSER .parseFully (string );
78
81
79
- if (nbtBase instanceof IntTag ) { // If this returns an integer, it did not use our method from above
80
- return StringTag .valueOf (nbtBase .getAsString ()); // It then is a string that was falsely read as an int
81
- } else if (nbtBase instanceof DoubleTag ) {
82
- return StringTag .valueOf (String .valueOf (((DoubleTag ) nbtBase ).getAsDouble ())); // Doubles add "d" at the end
83
- } else {
84
- return nbtBase ;
82
+ if (nbtBase instanceof IntTag ) { // If this returns an integer, it did not use our method from above
83
+ return StringTag .valueOf (nbtBase .toString ()); // It then is a string that was falsely read as an int
84
+ } else if (nbtBase instanceof DoubleTag ) {
85
+ return StringTag .valueOf (String .valueOf (((DoubleTag ) nbtBase ).doubleValue ())); // Doubles add "d" at the end
86
+ } else {
87
+ return nbtBase ;
88
+ }
89
+ } catch (final CommandSyntaxException commandSyntaxException ) {
90
+ throw new RuntimeException ("Could not deserialize found primitive " , commandSyntaxException );
85
91
}
86
92
}
87
93
}
0 commit comments