From f60cc506673543a5dd310a5f5c4109a2ec528fb0 Mon Sep 17 00:00:00 2001 From: Aaron Franke Date: Sun, 17 Jul 2022 20:53:34 -0500 Subject: [PATCH] [3.x] Add forwards-compatible aliases for pool/packed arrays --- core/variant_parser.cpp | 20 +++++++------------- 1 file changed, 7 insertions(+), 13 deletions(-) diff --git a/core/variant_parser.cpp b/core/variant_parser.cpp index 51810cc2aef..3ae37ad064f 100644 --- a/core/variant_parser.cpp +++ b/core/variant_parser.cpp @@ -1022,7 +1022,7 @@ Error VariantParser::parse_value(Token &token, Variant &value, Stream *p_stream, value = ie; #endif - } else if (id == "PoolByteArray" || id == "ByteArray") { + } else if (id == "PoolByteArray" || id == "PackedByteArray" || id == "ByteArray") { Vector args; Error err = _parse_construct(p_stream, args, line, r_err_str); if (err) { @@ -1040,8 +1040,7 @@ Error VariantParser::parse_value(Token &token, Variant &value, Stream *p_stream, } value = arr; - - } else if (id == "PoolIntArray" || id == "IntArray") { + } else if (id == "PoolIntArray" || id == "PackedInt32Array" || id == "PackedInt64Array" || id == "IntArray") { Vector args; Error err = _parse_construct(p_stream, args, line, r_err_str); if (err) { @@ -1059,8 +1058,7 @@ Error VariantParser::parse_value(Token &token, Variant &value, Stream *p_stream, } value = arr; - - } else if (id == "PoolRealArray" || id == "FloatArray") { + } else if (id == "PoolRealArray" || id == "PackedFloat32Array" || id == "PackedFloat64Array" || id == "FloatArray") { Vector args; Error err = _parse_construct(p_stream, args, line, r_err_str); if (err) { @@ -1078,8 +1076,7 @@ Error VariantParser::parse_value(Token &token, Variant &value, Stream *p_stream, } value = arr; - - } else if (id == "PoolStringArray" || id == "StringArray") { + } else if (id == "PoolStringArray" || id == "PackedStringArray" || id == "StringArray") { get_token(p_stream, token, line, r_err_str); if (token.type != TK_PARENTHESIS_OPEN) { r_err_str = "Expected '('"; @@ -1125,8 +1122,7 @@ Error VariantParser::parse_value(Token &token, Variant &value, Stream *p_stream, } value = arr; - - } else if (id == "PoolVector2Array" || id == "Vector2Array") { + } else if (id == "PoolVector2Array" || id == "PackedVector2Array" || id == "Vector2Array") { Vector args; Error err = _parse_construct(p_stream, args, line, r_err_str); if (err) { @@ -1144,8 +1140,7 @@ Error VariantParser::parse_value(Token &token, Variant &value, Stream *p_stream, } value = arr; - - } else if (id == "PoolVector3Array" || id == "Vector3Array") { + } else if (id == "PoolVector3Array" || id == "PackedVector3Array" || id == "Vector3Array") { Vector args; Error err = _parse_construct(p_stream, args, line, r_err_str); if (err) { @@ -1163,8 +1158,7 @@ Error VariantParser::parse_value(Token &token, Variant &value, Stream *p_stream, } value = arr; - - } else if (id == "PoolColorArray" || id == "ColorArray") { + } else if (id == "PoolColorArray" || id == "PackedColorArray" || id == "ColorArray") { Vector args; Error err = _parse_construct(p_stream, args, line, r_err_str); if (err) {