123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514 |
- /**************************************************************************/
- /* variant_parser.cpp */
- /**************************************************************************/
- /* This file is part of: */
- /* GODOT ENGINE */
- /* https://godotengine.org */
- /**************************************************************************/
- /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
- /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
- /* */
- /* Permission is hereby granted, free of charge, to any person obtaining */
- /* a copy of this software and associated documentation files (the */
- /* "Software"), to deal in the Software without restriction, including */
- /* without limitation the rights to use, copy, modify, merge, publish, */
- /* distribute, sublicense, and/or sell copies of the Software, and to */
- /* permit persons to whom the Software is furnished to do so, subject to */
- /* the following conditions: */
- /* */
- /* The above copyright notice and this permission notice shall be */
- /* included in all copies or substantial portions of the Software. */
- /* */
- /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
- /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
- /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
- /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
- /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
- /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
- /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
- /**************************************************************************/
- #include "variant_parser.h"
- #include "core/crypto/crypto_core.h"
- #include "core/io/resource_loader.h"
- #include "core/object/script_language.h"
- #include "core/string/string_buffer.h"
- char32_t VariantParser::Stream::get_char() {
- // is within buffer?
- if (readahead_pointer < readahead_filled) {
- return readahead_buffer[readahead_pointer++];
- }
- // attempt to readahead
- readahead_filled = _read_buffer(readahead_buffer, readahead_enabled ? READAHEAD_SIZE : 1);
- if (readahead_filled) {
- readahead_pointer = 0;
- } else {
- // EOF
- readahead_pointer = 1;
- eof = true;
- return 0;
- }
- return get_char();
- }
- bool VariantParser::Stream::is_eof() const {
- if (readahead_enabled) {
- return eof;
- }
- return _is_eof();
- }
- bool VariantParser::StreamFile::is_utf8() const {
- return true;
- }
- bool VariantParser::StreamFile::_is_eof() const {
- return f->eof_reached();
- }
- uint32_t VariantParser::StreamFile::_read_buffer(char32_t *p_buffer, uint32_t p_num_chars) {
- // The buffer is assumed to include at least one character (for null terminator)
- ERR_FAIL_COND_V(!p_num_chars, 0);
- uint8_t *temp = (uint8_t *)alloca(p_num_chars);
- uint64_t num_read = f->get_buffer(temp, p_num_chars);
- ERR_FAIL_COND_V(num_read == UINT64_MAX, 0);
- // translate to wchar
- for (uint32_t n = 0; n < num_read; n++) {
- p_buffer[n] = temp[n];
- }
- // could be less than p_num_chars, or zero
- return num_read;
- }
- bool VariantParser::StreamString::is_utf8() const {
- return false;
- }
- bool VariantParser::StreamString::_is_eof() const {
- return pos > s.length();
- }
- uint32_t VariantParser::StreamString::_read_buffer(char32_t *p_buffer, uint32_t p_num_chars) {
- // The buffer is assumed to include at least one character (for null terminator)
- ERR_FAIL_COND_V(!p_num_chars, 0);
- ERR_FAIL_NULL_V(p_buffer, 0);
- int available = MAX(s.length() - pos, 0);
- if (available >= (int)p_num_chars) {
- const char32_t *src = s.ptr();
- src += pos;
- memcpy(p_buffer, src, p_num_chars * sizeof(char32_t));
- pos += p_num_chars;
- return p_num_chars;
- }
- // going to reach EOF
- if (available) {
- const char32_t *src = s.ptr();
- src += pos;
- memcpy(p_buffer, src, available * sizeof(char32_t));
- pos += available;
- }
- // add a zero
- p_buffer[available] = 0;
- return available;
- }
- /////////////////////////////////////////////////////////////////////////////////////////////////
- const char *VariantParser::tk_name[TK_MAX] = {
- "'{'",
- "'}'",
- "'['",
- "']'",
- "'('",
- "')'",
- "identifier",
- "string",
- "string_name",
- "number",
- "color",
- "':'",
- "','",
- "'.'",
- "'='",
- "EOF",
- "ERROR"
- };
- static double stor_fix(const String &p_str) {
- if (p_str == "inf") {
- return INFINITY;
- } else if (p_str == "inf_neg") {
- return -INFINITY;
- } else if (p_str == "nan") {
- return NAN;
- }
- return -1;
- }
- Error VariantParser::get_token(Stream *p_stream, Token &r_token, int &line, String &r_err_str) {
- bool string_name = false;
- while (true) {
- char32_t cchar;
- if (p_stream->saved) {
- cchar = p_stream->saved;
- p_stream->saved = 0;
- } else {
- cchar = p_stream->get_char();
- if (p_stream->is_eof()) {
- r_token.type = TK_EOF;
- return OK;
- }
- }
- switch (cchar) {
- case '\n': {
- line++;
- break;
- }
- case 0: {
- r_token.type = TK_EOF;
- return OK;
- } break;
- case '{': {
- r_token.type = TK_CURLY_BRACKET_OPEN;
- return OK;
- }
- case '}': {
- r_token.type = TK_CURLY_BRACKET_CLOSE;
- return OK;
- }
- case '[': {
- r_token.type = TK_BRACKET_OPEN;
- return OK;
- }
- case ']': {
- r_token.type = TK_BRACKET_CLOSE;
- return OK;
- }
- case '(': {
- r_token.type = TK_PARENTHESIS_OPEN;
- return OK;
- }
- case ')': {
- r_token.type = TK_PARENTHESIS_CLOSE;
- return OK;
- }
- case ':': {
- r_token.type = TK_COLON;
- return OK;
- }
- case ';': {
- while (true) {
- char32_t ch = p_stream->get_char();
- if (p_stream->is_eof()) {
- r_token.type = TK_EOF;
- return OK;
- }
- if (ch == '\n') {
- line++;
- break;
- }
- }
- break;
- }
- case ',': {
- r_token.type = TK_COMMA;
- return OK;
- }
- case '.': {
- r_token.type = TK_PERIOD;
- return OK;
- }
- case '=': {
- r_token.type = TK_EQUAL;
- return OK;
- }
- case '#': {
- StringBuffer<> color_str;
- color_str += '#';
- while (true) {
- char32_t ch = p_stream->get_char();
- if (p_stream->is_eof()) {
- r_token.type = TK_EOF;
- return OK;
- } else if (is_hex_digit(ch)) {
- color_str += ch;
- } else {
- p_stream->saved = ch;
- break;
- }
- }
- r_token.value = Color::html(color_str.as_string());
- r_token.type = TK_COLOR;
- return OK;
- }
- #ifndef DISABLE_DEPRECATED
- case '@': // Compatibility with 3.x StringNames.
- #endif
- case '&': { // StringName.
- cchar = p_stream->get_char();
- if (cchar != '"') {
- r_err_str = "Expected '\"' after '&'";
- r_token.type = TK_ERROR;
- return ERR_PARSE_ERROR;
- }
- string_name = true;
- [[fallthrough]];
- }
- case '"': {
- String str;
- char32_t prev = 0;
- while (true) {
- char32_t ch = p_stream->get_char();
- if (ch == 0) {
- r_err_str = "Unterminated String";
- r_token.type = TK_ERROR;
- return ERR_PARSE_ERROR;
- } else if (ch == '"') {
- break;
- } else if (ch == '\\') {
- //escaped characters...
- char32_t next = p_stream->get_char();
- if (next == 0) {
- r_err_str = "Unterminated String";
- r_token.type = TK_ERROR;
- return ERR_PARSE_ERROR;
- }
- char32_t res = 0;
- switch (next) {
- case 'b':
- res = 8;
- break;
- case 't':
- res = 9;
- break;
- case 'n':
- res = 10;
- break;
- case 'f':
- res = 12;
- break;
- case 'r':
- res = 13;
- break;
- case 'U':
- case 'u': {
- // Hexadecimal sequence.
- int hex_len = (next == 'U') ? 6 : 4;
- for (int j = 0; j < hex_len; j++) {
- char32_t c = p_stream->get_char();
- if (c == 0) {
- r_err_str = "Unterminated String";
- r_token.type = TK_ERROR;
- return ERR_PARSE_ERROR;
- }
- if (!is_hex_digit(c)) {
- r_err_str = "Malformed hex constant in string";
- r_token.type = TK_ERROR;
- return ERR_PARSE_ERROR;
- }
- char32_t v;
- if (is_digit(c)) {
- v = c - '0';
- } else if (c >= 'a' && c <= 'f') {
- v = c - 'a';
- v += 10;
- } else if (c >= 'A' && c <= 'F') {
- v = c - 'A';
- v += 10;
- } else {
- ERR_PRINT("Bug parsing hex constant.");
- v = 0;
- }
- res <<= 4;
- res |= v;
- }
- } break;
- default: {
- res = next;
- } break;
- }
- // Parse UTF-16 pair.
- if ((res & 0xfffffc00) == 0xd800) {
- if (prev == 0) {
- prev = res;
- continue;
- } else {
- r_err_str = "Invalid UTF-16 sequence in string, unpaired lead surrogate";
- r_token.type = TK_ERROR;
- return ERR_PARSE_ERROR;
- }
- } else if ((res & 0xfffffc00) == 0xdc00) {
- if (prev == 0) {
- r_err_str = "Invalid UTF-16 sequence in string, unpaired trail surrogate";
- r_token.type = TK_ERROR;
- return ERR_PARSE_ERROR;
- } else {
- res = (prev << 10UL) + res - ((0xd800 << 10UL) + 0xdc00 - 0x10000);
- prev = 0;
- }
- }
- if (prev != 0) {
- r_err_str = "Invalid UTF-16 sequence in string, unpaired lead surrogate";
- r_token.type = TK_ERROR;
- return ERR_PARSE_ERROR;
- }
- str += res;
- } else {
- if (prev != 0) {
- r_err_str = "Invalid UTF-16 sequence in string, unpaired lead surrogate";
- r_token.type = TK_ERROR;
- return ERR_PARSE_ERROR;
- }
- if (ch == '\n') {
- line++;
- }
- str += ch;
- }
- }
- if (prev != 0) {
- r_err_str = "Invalid UTF-16 sequence in string, unpaired lead surrogate";
- r_token.type = TK_ERROR;
- return ERR_PARSE_ERROR;
- }
- if (p_stream->is_utf8()) {
- str.parse_utf8(str.ascii(true).get_data());
- }
- if (string_name) {
- r_token.type = TK_STRING_NAME;
- r_token.value = StringName(str);
- } else {
- r_token.type = TK_STRING;
- r_token.value = str;
- }
- return OK;
- } break;
- default: {
- if (cchar <= 32) {
- break;
- }
- if (cchar == '-' || (cchar >= '0' && cchar <= '9')) {
- //a number
- StringBuffer<> num;
- #define READING_SIGN 0
- #define READING_INT 1
- #define READING_DEC 2
- #define READING_EXP 3
- #define READING_DONE 4
- int reading = READING_INT;
- if (cchar == '-') {
- num += '-';
- cchar = p_stream->get_char();
- }
- char32_t c = cchar;
- bool exp_sign = false;
- bool exp_beg = false;
- bool is_float = false;
- while (true) {
- switch (reading) {
- case READING_INT: {
- if (is_digit(c)) {
- //pass
- } else if (c == '.') {
- reading = READING_DEC;
- is_float = true;
- } else if (c == 'e') {
- reading = READING_EXP;
- is_float = true;
- } else {
- reading = READING_DONE;
- }
- } break;
- case READING_DEC: {
- if (is_digit(c)) {
- } else if (c == 'e') {
- reading = READING_EXP;
- } else {
- reading = READING_DONE;
- }
- } break;
- case READING_EXP: {
- if (is_digit(c)) {
- exp_beg = true;
- } else if ((c == '-' || c == '+') && !exp_sign && !exp_beg) {
- exp_sign = true;
- } else {
- reading = READING_DONE;
- }
- } break;
- }
- if (reading == READING_DONE) {
- break;
- }
- num += c;
- c = p_stream->get_char();
- }
- p_stream->saved = c;
- r_token.type = TK_NUMBER;
- if (is_float) {
- r_token.value = num.as_double();
- } else {
- r_token.value = num.as_int();
- }
- return OK;
- } else if (is_ascii_alphabet_char(cchar) || is_underscore(cchar)) {
- StringBuffer<> id;
- bool first = true;
- while (is_ascii_alphabet_char(cchar) || is_underscore(cchar) || (!first && is_digit(cchar))) {
- id += cchar;
- cchar = p_stream->get_char();
- first = false;
- }
- p_stream->saved = cchar;
- r_token.type = TK_IDENTIFIER;
- r_token.value = id.as_string();
- return OK;
- } else {
- r_err_str = "Unexpected character.";
- r_token.type = TK_ERROR;
- return ERR_PARSE_ERROR;
- }
- }
- }
- }
- r_token.type = TK_ERROR;
- return ERR_PARSE_ERROR;
- }
- Error VariantParser::_parse_enginecfg(Stream *p_stream, Vector<String> &strings, int &line, String &r_err_str) {
- Token token;
- get_token(p_stream, token, line, r_err_str);
- if (token.type != TK_PARENTHESIS_OPEN) {
- r_err_str = "Expected '(' in old-style project.godot construct";
- return ERR_PARSE_ERROR;
- }
- String accum;
- while (true) {
- char32_t c = p_stream->get_char();
- if (p_stream->is_eof()) {
- r_err_str = "Unexpected EOF while parsing old-style project.godot construct";
- return ERR_PARSE_ERROR;
- }
- if (c == ',') {
- strings.push_back(accum.strip_edges());
- accum = String();
- } else if (c == ')') {
- strings.push_back(accum.strip_edges());
- return OK;
- } else if (c == '\n') {
- line++;
- }
- }
- }
- template <typename T>
- Error VariantParser::_parse_construct(Stream *p_stream, Vector<T> &r_construct, int &line, String &r_err_str) {
- Token token;
- get_token(p_stream, token, line, r_err_str);
- if (token.type != TK_PARENTHESIS_OPEN) {
- r_err_str = "Expected '(' in constructor";
- return ERR_PARSE_ERROR;
- }
- bool first = true;
- while (true) {
- if (!first) {
- get_token(p_stream, token, line, r_err_str);
- if (token.type == TK_COMMA) {
- //do none
- } else if (token.type == TK_PARENTHESIS_CLOSE) {
- break;
- } else {
- r_err_str = "Expected ',' or ')' in constructor";
- return ERR_PARSE_ERROR;
- }
- }
- get_token(p_stream, token, line, r_err_str);
- if (first && token.type == TK_PARENTHESIS_CLOSE) {
- break;
- } else if (token.type != TK_NUMBER) {
- bool valid = false;
- if (token.type == TK_IDENTIFIER) {
- double real = stor_fix(token.value);
- if (real != -1) {
- token.type = TK_NUMBER;
- token.value = real;
- valid = true;
- }
- }
- if (!valid) {
- r_err_str = "Expected float in constructor";
- return ERR_PARSE_ERROR;
- }
- }
- r_construct.push_back(token.value);
- first = false;
- }
- return OK;
- }
- Error VariantParser::_parse_byte_array(Stream *p_stream, Vector<uint8_t> &r_construct, int &line, String &r_err_str) {
- Token token;
- get_token(p_stream, token, line, r_err_str);
- if (token.type != TK_PARENTHESIS_OPEN) {
- r_err_str = "Expected '(' in constructor";
- return ERR_PARSE_ERROR;
- }
- get_token(p_stream, token, line, r_err_str);
- if (token.type == TK_STRING) {
- // Base64 encoded array.
- String base64_encoded_string = token.value;
- int strlen = base64_encoded_string.length();
- CharString cstr = base64_encoded_string.ascii();
- size_t arr_len = 0;
- r_construct.resize(strlen / 4 * 3 + 1);
- uint8_t *w = r_construct.ptrw();
- Error err = CryptoCore::b64_decode(&w[0], r_construct.size(), &arr_len, (unsigned char *)cstr.get_data(), strlen);
- if (err) {
- r_err_str = "Invalid base64-encoded string";
- return ERR_PARSE_ERROR;
- }
- r_construct.resize(arr_len);
- get_token(p_stream, token, line, r_err_str);
- if (token.type != TK_PARENTHESIS_CLOSE) {
- r_err_str = "Expected ')' in constructor";
- return ERR_PARSE_ERROR;
- }
- } else if (token.type == TK_NUMBER || token.type == TK_IDENTIFIER) {
- // Individual elements.
- while (true) {
- if (token.type != TK_NUMBER) {
- bool valid = false;
- if (token.type == TK_IDENTIFIER) {
- double real = stor_fix(token.value);
- if (real != -1) {
- token.type = TK_NUMBER;
- token.value = real;
- valid = true;
- }
- }
- if (!valid) {
- r_err_str = "Expected number in constructor";
- return ERR_PARSE_ERROR;
- }
- }
- r_construct.push_back(token.value);
- get_token(p_stream, token, line, r_err_str);
- if (token.type == TK_COMMA) {
- //do none
- } else if (token.type == TK_PARENTHESIS_CLOSE) {
- break;
- } else {
- r_err_str = "Expected ',' or ')' in constructor";
- return ERR_PARSE_ERROR;
- }
- get_token(p_stream, token, line, r_err_str);
- }
- } else if (token.type == TK_PARENTHESIS_CLOSE) {
- // Empty array.
- return OK;
- } else {
- r_err_str = "Expected base64 string, or list of numbers in constructor";
- return ERR_PARSE_ERROR;
- }
- return OK;
- }
- Error VariantParser::parse_value(Token &token, Variant &value, Stream *p_stream, int &line, String &r_err_str, ResourceParser *p_res_parser) {
- if (token.type == TK_CURLY_BRACKET_OPEN) {
- Dictionary d;
- Error err = _parse_dictionary(d, p_stream, line, r_err_str, p_res_parser);
- if (err) {
- return err;
- }
- value = d;
- return OK;
- } else if (token.type == TK_BRACKET_OPEN) {
- Array a;
- Error err = _parse_array(a, p_stream, line, r_err_str, p_res_parser);
- if (err) {
- return err;
- }
- value = a;
- return OK;
- } else if (token.type == TK_IDENTIFIER) {
- String id = token.value;
- if (id == "true") {
- value = true;
- } else if (id == "false") {
- value = false;
- } else if (id == "null" || id == "nil") {
- value = Variant();
- } else if (id == "inf") {
- value = INFINITY;
- } else if (id == "inf_neg") {
- value = -INFINITY;
- } else if (id == "nan") {
- value = NAN;
- } else if (id == "Vector2") {
- Vector<real_t> args;
- Error err = _parse_construct<real_t>(p_stream, args, line, r_err_str);
- if (err) {
- return err;
- }
- if (args.size() != 2) {
- r_err_str = "Expected 2 arguments for constructor";
- return ERR_PARSE_ERROR;
- }
- value = Vector2(args[0], args[1]);
- } else if (id == "Vector2i") {
- Vector<int32_t> args;
- Error err = _parse_construct<int32_t>(p_stream, args, line, r_err_str);
- if (err) {
- return err;
- }
- if (args.size() != 2) {
- r_err_str = "Expected 2 arguments for constructor";
- return ERR_PARSE_ERROR;
- }
- value = Vector2i(args[0], args[1]);
- } else if (id == "Rect2") {
- Vector<real_t> args;
- Error err = _parse_construct<real_t>(p_stream, args, line, r_err_str);
- if (err) {
- return err;
- }
- if (args.size() != 4) {
- r_err_str = "Expected 4 arguments for constructor";
- return ERR_PARSE_ERROR;
- }
- value = Rect2(args[0], args[1], args[2], args[3]);
- } else if (id == "Rect2i") {
- Vector<int32_t> args;
- Error err = _parse_construct<int32_t>(p_stream, args, line, r_err_str);
- if (err) {
- return err;
- }
- if (args.size() != 4) {
- r_err_str = "Expected 4 arguments for constructor";
- return ERR_PARSE_ERROR;
- }
- value = Rect2i(args[0], args[1], args[2], args[3]);
- } else if (id == "Vector3") {
- Vector<real_t> args;
- Error err = _parse_construct<real_t>(p_stream, args, line, r_err_str);
- if (err) {
- return err;
- }
- if (args.size() != 3) {
- r_err_str = "Expected 3 arguments for constructor";
- return ERR_PARSE_ERROR;
- }
- value = Vector3(args[0], args[1], args[2]);
- } else if (id == "Vector3i") {
- Vector<int32_t> args;
- Error err = _parse_construct<int32_t>(p_stream, args, line, r_err_str);
- if (err) {
- return err;
- }
- if (args.size() != 3) {
- r_err_str = "Expected 3 arguments for constructor";
- return ERR_PARSE_ERROR;
- }
- value = Vector3i(args[0], args[1], args[2]);
- } else if (id == "Vector4") {
- Vector<real_t> args;
- Error err = _parse_construct<real_t>(p_stream, args, line, r_err_str);
- if (err) {
- return err;
- }
- if (args.size() != 4) {
- r_err_str = "Expected 4 arguments for constructor";
- return ERR_PARSE_ERROR;
- }
- value = Vector4(args[0], args[1], args[2], args[3]);
- } else if (id == "Vector4i") {
- Vector<int32_t> args;
- Error err = _parse_construct<int32_t>(p_stream, args, line, r_err_str);
- if (err) {
- return err;
- }
- if (args.size() != 4) {
- r_err_str = "Expected 4 arguments for constructor";
- return ERR_PARSE_ERROR;
- }
- value = Vector4i(args[0], args[1], args[2], args[3]);
- } else if (id == "Transform2D" || id == "Matrix32") { //compatibility
- Vector<real_t> args;
- Error err = _parse_construct<real_t>(p_stream, args, line, r_err_str);
- if (err) {
- return err;
- }
- if (args.size() != 6) {
- r_err_str = "Expected 6 arguments for constructor";
- return ERR_PARSE_ERROR;
- }
- Transform2D m;
- m[0] = Vector2(args[0], args[1]);
- m[1] = Vector2(args[2], args[3]);
- m[2] = Vector2(args[4], args[5]);
- value = m;
- } else if (id == "Plane") {
- Vector<real_t> args;
- Error err = _parse_construct<real_t>(p_stream, args, line, r_err_str);
- if (err) {
- return err;
- }
- if (args.size() != 4) {
- r_err_str = "Expected 4 arguments for constructor";
- return ERR_PARSE_ERROR;
- }
- value = Plane(args[0], args[1], args[2], args[3]);
- } else if (id == "Quaternion" || id == "Quat") { // "Quat" kept for compatibility
- Vector<real_t> args;
- Error err = _parse_construct<real_t>(p_stream, args, line, r_err_str);
- if (err) {
- return err;
- }
- if (args.size() != 4) {
- r_err_str = "Expected 4 arguments for constructor";
- return ERR_PARSE_ERROR;
- }
- value = Quaternion(args[0], args[1], args[2], args[3]);
- } else if (id == "AABB" || id == "Rect3") {
- Vector<real_t> args;
- Error err = _parse_construct<real_t>(p_stream, args, line, r_err_str);
- if (err) {
- return err;
- }
- if (args.size() != 6) {
- r_err_str = "Expected 6 arguments for constructor";
- return ERR_PARSE_ERROR;
- }
- value = AABB(Vector3(args[0], args[1], args[2]), Vector3(args[3], args[4], args[5]));
- } else if (id == "Basis" || id == "Matrix3") { //compatibility
- Vector<real_t> args;
- Error err = _parse_construct<real_t>(p_stream, args, line, r_err_str);
- if (err) {
- return err;
- }
- if (args.size() != 9) {
- r_err_str = "Expected 9 arguments for constructor";
- return ERR_PARSE_ERROR;
- }
- value = Basis(args[0], args[1], args[2], args[3], args[4], args[5], args[6], args[7], args[8]);
- } else if (id == "Transform3D" || id == "Transform") { // "Transform" kept for compatibility with Godot <4.
- Vector<real_t> args;
- Error err = _parse_construct<real_t>(p_stream, args, line, r_err_str);
- if (err) {
- return err;
- }
- if (args.size() != 12) {
- r_err_str = "Expected 12 arguments for constructor";
- return ERR_PARSE_ERROR;
- }
- value = Transform3D(Basis(args[0], args[1], args[2], args[3], args[4], args[5], args[6], args[7], args[8]), Vector3(args[9], args[10], args[11]));
- } else if (id == "Projection") { // "Transform" kept for compatibility with Godot <4.
- Vector<real_t> args;
- Error err = _parse_construct<real_t>(p_stream, args, line, r_err_str);
- if (err) {
- return err;
- }
- if (args.size() != 16) {
- r_err_str = "Expected 16 arguments for constructor";
- return ERR_PARSE_ERROR;
- }
- value = Projection(Vector4(args[0], args[1], args[2], args[3]), Vector4(args[4], args[5], args[6], args[7]), Vector4(args[8], args[9], args[10], args[11]), Vector4(args[12], args[13], args[14], args[15]));
- } else if (id == "Color") {
- Vector<float> args;
- Error err = _parse_construct<float>(p_stream, args, line, r_err_str);
- if (err) {
- return err;
- }
- if (args.size() != 4) {
- r_err_str = "Expected 4 arguments for constructor";
- return ERR_PARSE_ERROR;
- }
- value = Color(args[0], args[1], args[2], args[3]);
- } else if (id == "NodePath") {
- get_token(p_stream, token, line, r_err_str);
- if (token.type != TK_PARENTHESIS_OPEN) {
- r_err_str = "Expected '('";
- return ERR_PARSE_ERROR;
- }
- get_token(p_stream, token, line, r_err_str);
- if (token.type != TK_STRING) {
- r_err_str = "Expected string as argument for NodePath()";
- return ERR_PARSE_ERROR;
- }
- value = NodePath(String(token.value));
- get_token(p_stream, token, line, r_err_str);
- if (token.type != TK_PARENTHESIS_CLOSE) {
- r_err_str = "Expected ')'";
- return ERR_PARSE_ERROR;
- }
- } else if (id == "RID") {
- get_token(p_stream, token, line, r_err_str);
- if (token.type != TK_PARENTHESIS_OPEN) {
- r_err_str = "Expected '('";
- return ERR_PARSE_ERROR;
- }
- get_token(p_stream, token, line, r_err_str);
- // Permit empty RID.
- if (token.type == TK_PARENTHESIS_CLOSE) {
- value = RID();
- return OK;
- } else if (token.type != TK_NUMBER) {
- r_err_str = "Expected number as argument or ')'";
- return ERR_PARSE_ERROR;
- }
- value = RID::from_uint64(token.value);
- get_token(p_stream, token, line, r_err_str);
- if (token.type != TK_PARENTHESIS_CLOSE) {
- r_err_str = "Expected ')'";
- return ERR_PARSE_ERROR;
- }
- } else if (id == "Signal") {
- get_token(p_stream, token, line, r_err_str);
- if (token.type != TK_PARENTHESIS_OPEN) {
- r_err_str = "Expected '('";
- return ERR_PARSE_ERROR;
- }
- // Load as empty.
- value = Signal();
- get_token(p_stream, token, line, r_err_str);
- if (token.type != TK_PARENTHESIS_CLOSE) {
- r_err_str = "Expected ')'";
- return ERR_PARSE_ERROR;
- }
- } else if (id == "Callable") {
- get_token(p_stream, token, line, r_err_str);
- if (token.type != TK_PARENTHESIS_OPEN) {
- r_err_str = "Expected '('";
- return ERR_PARSE_ERROR;
- }
- // Load as empty.
- value = Callable();
- get_token(p_stream, token, line, r_err_str);
- if (token.type != TK_PARENTHESIS_CLOSE) {
- r_err_str = "Expected ')'";
- return ERR_PARSE_ERROR;
- }
- } else if (id == "Object") {
- get_token(p_stream, token, line, r_err_str);
- if (token.type != TK_PARENTHESIS_OPEN) {
- r_err_str = "Expected '('";
- return ERR_PARSE_ERROR;
- }
- get_token(p_stream, token, line, r_err_str);
- if (token.type != TK_IDENTIFIER) {
- r_err_str = "Expected identifier with type of object";
- return ERR_PARSE_ERROR;
- }
- String type = token.value;
- Object *obj = ClassDB::instantiate(type);
- if (!obj) {
- r_err_str = "Can't instantiate Object() of type: " + type;
- return ERR_PARSE_ERROR;
- }
- Ref<RefCounted> ref = Ref<RefCounted>(Object::cast_to<RefCounted>(obj));
- get_token(p_stream, token, line, r_err_str);
- if (token.type != TK_COMMA) {
- r_err_str = "Expected ',' after object type";
- return ERR_PARSE_ERROR;
- }
- bool at_key = true;
- String key;
- bool need_comma = false;
- while (true) {
- if (p_stream->is_eof()) {
- r_err_str = "Unexpected End of File while parsing Object()";
- return ERR_FILE_CORRUPT;
- }
- if (at_key) {
- Error err = get_token(p_stream, token, line, r_err_str);
- if (err != OK) {
- return err;
- }
- if (token.type == TK_PARENTHESIS_CLOSE) {
- value = ref.is_valid() ? Variant(ref) : Variant(obj);
- return OK;
- }
- if (need_comma) {
- if (token.type != TK_COMMA) {
- r_err_str = "Expected '}' or ','";
- return ERR_PARSE_ERROR;
- } else {
- need_comma = false;
- continue;
- }
- }
- if (token.type != TK_STRING) {
- r_err_str = "Expected property name as string";
- return ERR_PARSE_ERROR;
- }
- key = token.value;
- err = get_token(p_stream, token, line, r_err_str);
- if (err != OK) {
- return err;
- }
- if (token.type != TK_COLON) {
- r_err_str = "Expected ':'";
- return ERR_PARSE_ERROR;
- }
- at_key = false;
- } else {
- Error err = get_token(p_stream, token, line, r_err_str);
- if (err != OK) {
- return err;
- }
- Variant v;
- err = parse_value(token, v, p_stream, line, r_err_str, p_res_parser);
- if (err) {
- return err;
- }
- obj->set(key, v);
- need_comma = true;
- at_key = true;
- }
- }
- } else if (id == "Resource" || id == "SubResource" || id == "ExtResource") {
- get_token(p_stream, token, line, r_err_str);
- if (token.type != TK_PARENTHESIS_OPEN) {
- r_err_str = "Expected '('";
- return ERR_PARSE_ERROR;
- }
- if (p_res_parser && id == "Resource" && p_res_parser->func) {
- Ref<Resource> res;
- Error err = p_res_parser->func(p_res_parser->userdata, p_stream, res, line, r_err_str);
- if (err) {
- return err;
- }
- value = res;
- } else if (p_res_parser && id == "ExtResource" && p_res_parser->ext_func) {
- Ref<Resource> res;
- Error err = p_res_parser->ext_func(p_res_parser->userdata, p_stream, res, line, r_err_str);
- if (err) {
- // If the file is missing, the error can be ignored.
- if (err != ERR_FILE_NOT_FOUND && err != ERR_CANT_OPEN && err != ERR_FILE_CANT_OPEN) {
- return err;
- }
- }
- value = res;
- } else if (p_res_parser && id == "SubResource" && p_res_parser->sub_func) {
- Ref<Resource> res;
- Error err = p_res_parser->sub_func(p_res_parser->userdata, p_stream, res, line, r_err_str);
- if (err) {
- return err;
- }
- value = res;
- } else {
- get_token(p_stream, token, line, r_err_str);
- if (token.type == TK_STRING) {
- String path = token.value;
- Ref<Resource> res = ResourceLoader::load(path);
- if (res.is_null()) {
- r_err_str = "Can't load resource at path: '" + path + "'.";
- return ERR_PARSE_ERROR;
- }
- get_token(p_stream, token, line, r_err_str);
- if (token.type != TK_PARENTHESIS_CLOSE) {
- r_err_str = "Expected ')'";
- return ERR_PARSE_ERROR;
- }
- value = res;
- } else {
- r_err_str = "Expected string as argument for Resource().";
- return ERR_PARSE_ERROR;
- }
- }
- } else if (id == "Dictionary") {
- Error err = OK;
- get_token(p_stream, token, line, r_err_str);
- if (token.type != TK_BRACKET_OPEN) {
- r_err_str = "Expected '['";
- return ERR_PARSE_ERROR;
- }
- get_token(p_stream, token, line, r_err_str);
- if (token.type != TK_IDENTIFIER) {
- r_err_str = "Expected type identifier for key";
- return ERR_PARSE_ERROR;
- }
- static HashMap<StringName, Variant::Type> builtin_types;
- if (builtin_types.is_empty()) {
- for (int i = 1; i < Variant::VARIANT_MAX; i++) {
- builtin_types[Variant::get_type_name((Variant::Type)i)] = (Variant::Type)i;
- }
- }
- Dictionary dict;
- Variant::Type key_type = Variant::NIL;
- StringName key_class_name;
- Variant key_script;
- bool got_comma_token = false;
- if (builtin_types.has(token.value)) {
- key_type = builtin_types.get(token.value);
- } else if (token.value == "Resource" || token.value == "SubResource" || token.value == "ExtResource") {
- Variant resource;
- err = parse_value(token, resource, p_stream, line, r_err_str, p_res_parser);
- if (err) {
- if (token.value == "Resource" && err == ERR_PARSE_ERROR && r_err_str == "Expected '('" && token.type == TK_COMMA) {
- err = OK;
- r_err_str = String();
- key_type = Variant::OBJECT;
- key_class_name = token.value;
- got_comma_token = true;
- } else {
- return err;
- }
- } else {
- Ref<Script> script = resource;
- if (script.is_valid() && script->is_valid()) {
- key_type = Variant::OBJECT;
- key_class_name = script->get_instance_base_type();
- key_script = script;
- }
- }
- } else if (ClassDB::class_exists(token.value)) {
- key_type = Variant::OBJECT;
- key_class_name = token.value;
- }
- if (!got_comma_token) {
- get_token(p_stream, token, line, r_err_str);
- if (token.type != TK_COMMA) {
- r_err_str = "Expected ',' after key type";
- return ERR_PARSE_ERROR;
- }
- }
- get_token(p_stream, token, line, r_err_str);
- if (token.type != TK_IDENTIFIER) {
- r_err_str = "Expected type identifier for value";
- return ERR_PARSE_ERROR;
- }
- Variant::Type value_type = Variant::NIL;
- StringName value_class_name;
- Variant value_script;
- bool got_bracket_token = false;
- if (builtin_types.has(token.value)) {
- value_type = builtin_types.get(token.value);
- } else if (token.value == "Resource" || token.value == "SubResource" || token.value == "ExtResource") {
- Variant resource;
- err = parse_value(token, resource, p_stream, line, r_err_str, p_res_parser);
- if (err) {
- if (token.value == "Resource" && err == ERR_PARSE_ERROR && r_err_str == "Expected '('" && token.type == TK_BRACKET_CLOSE) {
- err = OK;
- r_err_str = String();
- value_type = Variant::OBJECT;
- value_class_name = token.value;
- got_comma_token = true;
- } else {
- return err;
- }
- } else {
- Ref<Script> script = resource;
- if (script.is_valid() && script->is_valid()) {
- value_type = Variant::OBJECT;
- value_class_name = script->get_instance_base_type();
- value_script = script;
- }
- }
- } else if (ClassDB::class_exists(token.value)) {
- value_type = Variant::OBJECT;
- value_class_name = token.value;
- }
- if (key_type != Variant::NIL || value_type != Variant::NIL) {
- dict.set_typed(key_type, key_class_name, key_script, value_type, value_class_name, value_script);
- }
- if (!got_bracket_token) {
- get_token(p_stream, token, line, r_err_str);
- if (token.type != TK_BRACKET_CLOSE) {
- r_err_str = "Expected ']'";
- return ERR_PARSE_ERROR;
- }
- }
- get_token(p_stream, token, line, r_err_str);
- if (token.type != TK_PARENTHESIS_OPEN) {
- r_err_str = "Expected '('";
- return ERR_PARSE_ERROR;
- }
- get_token(p_stream, token, line, r_err_str);
- if (token.type != TK_CURLY_BRACKET_OPEN) {
- r_err_str = "Expected '{'";
- return ERR_PARSE_ERROR;
- }
- Dictionary values;
- err = _parse_dictionary(values, p_stream, line, r_err_str, p_res_parser);
- if (err) {
- return err;
- }
- get_token(p_stream, token, line, r_err_str);
- if (token.type != TK_PARENTHESIS_CLOSE) {
- r_err_str = "Expected ')'";
- return ERR_PARSE_ERROR;
- }
- dict.assign(values);
- value = dict;
- } else if (id == "Array") {
- Error err = OK;
- get_token(p_stream, token, line, r_err_str);
- if (token.type != TK_BRACKET_OPEN) {
- r_err_str = "Expected '['";
- return ERR_PARSE_ERROR;
- }
- get_token(p_stream, token, line, r_err_str);
- if (token.type != TK_IDENTIFIER) {
- r_err_str = "Expected type identifier";
- return ERR_PARSE_ERROR;
- }
- static HashMap<String, Variant::Type> builtin_types;
- if (builtin_types.is_empty()) {
- for (int i = 1; i < Variant::VARIANT_MAX; i++) {
- builtin_types[Variant::get_type_name((Variant::Type)i)] = (Variant::Type)i;
- }
- }
- Array array = Array();
- bool got_bracket_token = false;
- if (builtin_types.has(token.value)) {
- array.set_typed(builtin_types.get(token.value), StringName(), Variant());
- } else if (token.value == "Resource" || token.value == "SubResource" || token.value == "ExtResource") {
- Variant resource;
- err = parse_value(token, resource, p_stream, line, r_err_str, p_res_parser);
- if (err) {
- if (token.value == "Resource" && err == ERR_PARSE_ERROR && r_err_str == "Expected '('" && token.type == TK_BRACKET_CLOSE) {
- err = OK;
- r_err_str = String();
- array.set_typed(Variant::OBJECT, token.value, Variant());
- got_bracket_token = true;
- } else {
- return err;
- }
- } else {
- Ref<Script> script = resource;
- if (script.is_valid() && script->is_valid()) {
- array.set_typed(Variant::OBJECT, script->get_instance_base_type(), script);
- }
- }
- } else if (ClassDB::class_exists(token.value)) {
- array.set_typed(Variant::OBJECT, token.value, Variant());
- }
- if (!got_bracket_token) {
- get_token(p_stream, token, line, r_err_str);
- if (token.type != TK_BRACKET_CLOSE) {
- r_err_str = "Expected ']'";
- return ERR_PARSE_ERROR;
- }
- }
- get_token(p_stream, token, line, r_err_str);
- if (token.type != TK_PARENTHESIS_OPEN) {
- r_err_str = "Expected '('";
- return ERR_PARSE_ERROR;
- }
- get_token(p_stream, token, line, r_err_str);
- if (token.type != TK_BRACKET_OPEN) {
- r_err_str = "Expected '['";
- return ERR_PARSE_ERROR;
- }
- Array values;
- err = _parse_array(values, p_stream, line, r_err_str, p_res_parser);
- if (err) {
- return err;
- }
- get_token(p_stream, token, line, r_err_str);
- if (token.type != TK_PARENTHESIS_CLOSE) {
- r_err_str = "Expected ')'";
- return ERR_PARSE_ERROR;
- }
- array.assign(values);
- value = array;
- } else if (id == "PackedByteArray" || id == "PoolByteArray" || id == "ByteArray") {
- Vector<uint8_t> args;
- Error err = _parse_byte_array(p_stream, args, line, r_err_str);
- if (err) {
- return err;
- }
- Vector<uint8_t> arr;
- {
- int len = args.size();
- arr.resize(len);
- uint8_t *w = arr.ptrw();
- for (int i = 0; i < len; i++) {
- w[i] = args[i];
- }
- }
- value = arr;
- } else if (id == "PackedInt32Array" || id == "PackedIntArray" || id == "PoolIntArray" || id == "IntArray") {
- Vector<int32_t> args;
- Error err = _parse_construct<int32_t>(p_stream, args, line, r_err_str);
- if (err) {
- return err;
- }
- Vector<int32_t> arr;
- {
- int32_t len = args.size();
- arr.resize(len);
- int32_t *w = arr.ptrw();
- for (int32_t i = 0; i < len; i++) {
- w[i] = int32_t(args[i]);
- }
- }
- value = arr;
- } else if (id == "PackedInt64Array") {
- Vector<int64_t> args;
- Error err = _parse_construct<int64_t>(p_stream, args, line, r_err_str);
- if (err) {
- return err;
- }
- Vector<int64_t> arr;
- {
- int64_t len = args.size();
- arr.resize(len);
- int64_t *w = arr.ptrw();
- for (int64_t i = 0; i < len; i++) {
- w[i] = int64_t(args[i]);
- }
- }
- value = arr;
- } else if (id == "PackedFloat32Array" || id == "PackedRealArray" || id == "PoolRealArray" || id == "FloatArray") {
- Vector<float> args;
- Error err = _parse_construct<float>(p_stream, args, line, r_err_str);
- if (err) {
- return err;
- }
- Vector<float> arr;
- {
- int len = args.size();
- arr.resize(len);
- float *w = arr.ptrw();
- for (int i = 0; i < len; i++) {
- w[i] = args[i];
- }
- }
- value = arr;
- } else if (id == "PackedFloat64Array") {
- Vector<double> args;
- Error err = _parse_construct<double>(p_stream, args, line, r_err_str);
- if (err) {
- return err;
- }
- Vector<double> arr;
- {
- int len = args.size();
- arr.resize(len);
- double *w = arr.ptrw();
- for (int i = 0; i < len; i++) {
- w[i] = args[i];
- }
- }
- value = arr;
- } else if (id == "PackedStringArray" || id == "PoolStringArray" || id == "StringArray") {
- get_token(p_stream, token, line, r_err_str);
- if (token.type != TK_PARENTHESIS_OPEN) {
- r_err_str = "Expected '('";
- return ERR_PARSE_ERROR;
- }
- Vector<String> cs;
- bool first = true;
- while (true) {
- if (!first) {
- get_token(p_stream, token, line, r_err_str);
- if (token.type == TK_COMMA) {
- //do none
- } else if (token.type == TK_PARENTHESIS_CLOSE) {
- break;
- } else {
- r_err_str = "Expected ',' or ')'";
- return ERR_PARSE_ERROR;
- }
- }
- get_token(p_stream, token, line, r_err_str);
- if (token.type == TK_PARENTHESIS_CLOSE) {
- break;
- } else if (token.type != TK_STRING) {
- r_err_str = "Expected string";
- return ERR_PARSE_ERROR;
- }
- first = false;
- cs.push_back(token.value);
- }
- Vector<String> arr;
- {
- int len = cs.size();
- arr.resize(len);
- String *w = arr.ptrw();
- for (int i = 0; i < len; i++) {
- w[i] = cs[i];
- }
- }
- value = arr;
- } else if (id == "PackedVector2Array" || id == "PoolVector2Array" || id == "Vector2Array") {
- Vector<real_t> args;
- Error err = _parse_construct<real_t>(p_stream, args, line, r_err_str);
- if (err) {
- return err;
- }
- Vector<Vector2> arr;
- {
- int len = args.size() / 2;
- arr.resize(len);
- Vector2 *w = arr.ptrw();
- for (int i = 0; i < len; i++) {
- w[i] = Vector2(args[i * 2 + 0], args[i * 2 + 1]);
- }
- }
- value = arr;
- } else if (id == "PackedVector3Array" || id == "PoolVector3Array" || id == "Vector3Array") {
- Vector<real_t> args;
- Error err = _parse_construct<real_t>(p_stream, args, line, r_err_str);
- if (err) {
- return err;
- }
- Vector<Vector3> arr;
- {
- int len = args.size() / 3;
- arr.resize(len);
- Vector3 *w = arr.ptrw();
- for (int i = 0; i < len; i++) {
- w[i] = Vector3(args[i * 3 + 0], args[i * 3 + 1], args[i * 3 + 2]);
- }
- }
- value = arr;
- } else if (id == "PackedVector4Array" || id == "PoolVector4Array" || id == "Vector4Array") {
- Vector<real_t> args;
- Error err = _parse_construct<real_t>(p_stream, args, line, r_err_str);
- if (err) {
- return err;
- }
- Vector<Vector4> arr;
- {
- int len = args.size() / 4;
- arr.resize(len);
- Vector4 *w = arr.ptrw();
- for (int i = 0; i < len; i++) {
- w[i] = Vector4(args[i * 4 + 0], args[i * 4 + 1], args[i * 4 + 2], args[i * 4 + 3]);
- }
- }
- value = arr;
- } else if (id == "PackedColorArray" || id == "PoolColorArray" || id == "ColorArray") {
- Vector<float> args;
- Error err = _parse_construct<float>(p_stream, args, line, r_err_str);
- if (err) {
- return err;
- }
- Vector<Color> arr;
- {
- int len = args.size() / 4;
- arr.resize(len);
- Color *w = arr.ptrw();
- for (int i = 0; i < len; i++) {
- w[i] = Color(args[i * 4 + 0], args[i * 4 + 1], args[i * 4 + 2], args[i * 4 + 3]);
- }
- }
- value = arr;
- } else {
- r_err_str = "Unexpected identifier: '" + id + "'.";
- return ERR_PARSE_ERROR;
- }
- // All above branches end up here unless they had an early return.
- return OK;
- } else if (token.type == TK_NUMBER) {
- value = token.value;
- return OK;
- } else if (token.type == TK_STRING) {
- value = token.value;
- return OK;
- } else if (token.type == TK_STRING_NAME) {
- value = token.value;
- return OK;
- } else if (token.type == TK_COLOR) {
- value = token.value;
- return OK;
- } else {
- r_err_str = "Expected value, got " + String(tk_name[token.type]) + ".";
- return ERR_PARSE_ERROR;
- }
- }
- Error VariantParser::_parse_array(Array &array, Stream *p_stream, int &line, String &r_err_str, ResourceParser *p_res_parser) {
- Token token;
- bool need_comma = false;
- while (true) {
- if (p_stream->is_eof()) {
- r_err_str = "Unexpected End of File while parsing array";
- return ERR_FILE_CORRUPT;
- }
- Error err = get_token(p_stream, token, line, r_err_str);
- if (err != OK) {
- return err;
- }
- if (token.type == TK_BRACKET_CLOSE) {
- return OK;
- }
- if (need_comma) {
- if (token.type != TK_COMMA) {
- r_err_str = "Expected ','";
- return ERR_PARSE_ERROR;
- } else {
- need_comma = false;
- continue;
- }
- }
- Variant v;
- err = parse_value(token, v, p_stream, line, r_err_str, p_res_parser);
- if (err) {
- return err;
- }
- array.push_back(v);
- need_comma = true;
- }
- }
- Error VariantParser::_parse_dictionary(Dictionary &object, Stream *p_stream, int &line, String &r_err_str, ResourceParser *p_res_parser) {
- bool at_key = true;
- Variant key;
- Token token;
- bool need_comma = false;
- while (true) {
- if (p_stream->is_eof()) {
- r_err_str = "Unexpected End of File while parsing dictionary";
- return ERR_FILE_CORRUPT;
- }
- if (at_key) {
- Error err = get_token(p_stream, token, line, r_err_str);
- if (err != OK) {
- return err;
- }
- if (token.type == TK_CURLY_BRACKET_CLOSE) {
- return OK;
- }
- if (need_comma) {
- if (token.type != TK_COMMA) {
- r_err_str = "Expected '}' or ','";
- return ERR_PARSE_ERROR;
- } else {
- need_comma = false;
- continue;
- }
- }
- err = parse_value(token, key, p_stream, line, r_err_str, p_res_parser);
- if (err) {
- return err;
- }
- err = get_token(p_stream, token, line, r_err_str);
- if (err != OK) {
- return err;
- }
- if (token.type != TK_COLON) {
- r_err_str = "Expected ':'";
- return ERR_PARSE_ERROR;
- }
- at_key = false;
- } else {
- Error err = get_token(p_stream, token, line, r_err_str);
- if (err != OK) {
- return err;
- }
- Variant v;
- err = parse_value(token, v, p_stream, line, r_err_str, p_res_parser);
- if (err && err != ERR_FILE_MISSING_DEPENDENCIES) {
- return err;
- }
- object[key] = v;
- need_comma = true;
- at_key = true;
- }
- }
- }
- Error VariantParser::_parse_tag(Token &token, Stream *p_stream, int &line, String &r_err_str, Tag &r_tag, ResourceParser *p_res_parser, bool p_simple_tag) {
- r_tag.fields.clear();
- if (token.type != TK_BRACKET_OPEN) {
- r_err_str = "Expected '['";
- return ERR_PARSE_ERROR;
- }
- if (p_simple_tag) {
- r_tag.name = "";
- r_tag.fields.clear();
- bool escaping = false;
- if (p_stream->is_utf8()) {
- CharString cs;
- while (true) {
- char c = p_stream->get_char();
- if (p_stream->is_eof()) {
- r_err_str = "Unexpected EOF while parsing simple tag";
- return ERR_PARSE_ERROR;
- }
- if (c == ']') {
- if (escaping) {
- escaping = false;
- } else {
- break;
- }
- } else if (c == '\\') {
- escaping = true;
- } else {
- escaping = false;
- }
- cs += c;
- }
- r_tag.name.parse_utf8(cs.get_data(), cs.length());
- } else {
- while (true) {
- char32_t c = p_stream->get_char();
- if (p_stream->is_eof()) {
- r_err_str = "Unexpected EOF while parsing simple tag";
- return ERR_PARSE_ERROR;
- }
- if (c == ']') {
- if (escaping) {
- escaping = false;
- } else {
- break;
- }
- } else if (c == '\\') {
- escaping = true;
- } else {
- escaping = false;
- }
- r_tag.name += String::chr(c);
- }
- }
- r_tag.name = r_tag.name.strip_edges();
- return OK;
- }
- get_token(p_stream, token, line, r_err_str);
- if (token.type != TK_IDENTIFIER) {
- r_err_str = "Expected identifier (tag name)";
- return ERR_PARSE_ERROR;
- }
- r_tag.name = token.value;
- bool parsing_tag = true;
- while (true) {
- if (p_stream->is_eof()) {
- r_err_str = "Unexpected End of File while parsing tag: " + r_tag.name;
- return ERR_FILE_CORRUPT;
- }
- get_token(p_stream, token, line, r_err_str);
- if (token.type == TK_BRACKET_CLOSE) {
- break;
- }
- if (parsing_tag && token.type == TK_PERIOD) {
- r_tag.name += "."; //support tags such as [someprop.Android] for specific platforms
- get_token(p_stream, token, line, r_err_str);
- } else if (parsing_tag && token.type == TK_COLON) {
- r_tag.name += ":"; //support tags such as [someprop.Android] for specific platforms
- get_token(p_stream, token, line, r_err_str);
- } else {
- parsing_tag = false;
- }
- if (token.type != TK_IDENTIFIER) {
- r_err_str = "Expected Identifier";
- return ERR_PARSE_ERROR;
- }
- String id = token.value;
- if (parsing_tag) {
- r_tag.name += id;
- continue;
- }
- get_token(p_stream, token, line, r_err_str);
- if (token.type != TK_EQUAL) {
- return ERR_PARSE_ERROR;
- }
- get_token(p_stream, token, line, r_err_str);
- Variant value;
- Error err = parse_value(token, value, p_stream, line, r_err_str, p_res_parser);
- if (err) {
- return err;
- }
- r_tag.fields[id] = value;
- }
- return OK;
- }
- Error VariantParser::parse_tag(Stream *p_stream, int &line, String &r_err_str, Tag &r_tag, ResourceParser *p_res_parser, bool p_simple_tag) {
- Token token;
- get_token(p_stream, token, line, r_err_str);
- if (token.type == TK_EOF) {
- return ERR_FILE_EOF;
- }
- if (token.type != TK_BRACKET_OPEN) {
- r_err_str = "Expected '['";
- return ERR_PARSE_ERROR;
- }
- return _parse_tag(token, p_stream, line, r_err_str, r_tag, p_res_parser, p_simple_tag);
- }
- Error VariantParser::parse_tag_assign_eof(Stream *p_stream, int &line, String &r_err_str, Tag &r_tag, String &r_assign, Variant &r_value, ResourceParser *p_res_parser, bool p_simple_tag) {
- //assign..
- r_assign = "";
- String what;
- while (true) {
- char32_t c;
- if (p_stream->saved) {
- c = p_stream->saved;
- p_stream->saved = 0;
- } else {
- c = p_stream->get_char();
- }
- if (p_stream->is_eof()) {
- return ERR_FILE_EOF;
- }
- if (c == ';') { //comment
- while (true) {
- char32_t ch = p_stream->get_char();
- if (p_stream->is_eof()) {
- return ERR_FILE_EOF;
- }
- if (ch == '\n') {
- line++;
- break;
- }
- }
- continue;
- }
- if (c == '[' && what.length() == 0) {
- //it's a tag!
- p_stream->saved = '['; //go back one
- Error err = parse_tag(p_stream, line, r_err_str, r_tag, p_res_parser, p_simple_tag);
- return err;
- }
- if (c > 32) {
- if (c == '"') { //quoted
- p_stream->saved = '"';
- Token tk;
- Error err = get_token(p_stream, tk, line, r_err_str);
- if (err) {
- return err;
- }
- if (tk.type != TK_STRING) {
- r_err_str = "Error reading quoted string";
- return ERR_INVALID_DATA;
- }
- what = tk.value;
- } else if (c != '=') {
- what += String::chr(c);
- } else {
- r_assign = what;
- Token token;
- get_token(p_stream, token, line, r_err_str);
- Error err = parse_value(token, r_value, p_stream, line, r_err_str, p_res_parser);
- return err;
- }
- } else if (c == '\n') {
- line++;
- }
- }
- }
- Error VariantParser::parse(Stream *p_stream, Variant &r_ret, String &r_err_str, int &r_err_line, ResourceParser *p_res_parser) {
- Token token;
- Error err = get_token(p_stream, token, r_err_line, r_err_str);
- if (err) {
- return err;
- }
- if (token.type == TK_EOF) {
- return ERR_FILE_EOF;
- }
- return parse_value(token, r_ret, p_stream, r_err_line, r_err_str, p_res_parser);
- }
- //////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////////////////////////
- static String rtos_fix(double p_value) {
- if (p_value == 0.0) {
- return "0"; //avoid negative zero (-0) being written, which may annoy git, svn, etc. for changes when they don't exist.
- } else if (isnan(p_value)) {
- return "nan";
- } else if (isinf(p_value)) {
- if (p_value > 0) {
- return "inf";
- } else {
- return "inf_neg";
- }
- } else {
- return rtoss(p_value);
- }
- }
- Error VariantWriter::write(const Variant &p_variant, StoreStringFunc p_store_string_func, void *p_store_string_ud, EncodeResourceFunc p_encode_res_func, void *p_encode_res_ud, int p_recursion_count, bool p_compat) {
- switch (p_variant.get_type()) {
- case Variant::NIL: {
- p_store_string_func(p_store_string_ud, "null");
- } break;
- case Variant::BOOL: {
- p_store_string_func(p_store_string_ud, p_variant.operator bool() ? "true" : "false");
- } break;
- case Variant::INT: {
- p_store_string_func(p_store_string_ud, itos(p_variant.operator int64_t()));
- } break;
- case Variant::FLOAT: {
- String s = rtos_fix(p_variant.operator double());
- if (s != "inf" && s != "inf_neg" && s != "nan") {
- if (!s.contains_char('.') && !s.contains_char('e')) {
- s += ".0";
- }
- }
- p_store_string_func(p_store_string_ud, s);
- } break;
- case Variant::STRING: {
- String str = p_variant;
- str = "\"" + str.c_escape_multiline() + "\"";
- p_store_string_func(p_store_string_ud, str);
- } break;
- // Math types.
- case Variant::VECTOR2: {
- Vector2 v = p_variant;
- p_store_string_func(p_store_string_ud, "Vector2(" + rtos_fix(v.x) + ", " + rtos_fix(v.y) + ")");
- } break;
- case Variant::VECTOR2I: {
- Vector2i v = p_variant;
- p_store_string_func(p_store_string_ud, "Vector2i(" + itos(v.x) + ", " + itos(v.y) + ")");
- } break;
- case Variant::RECT2: {
- Rect2 aabb = p_variant;
- p_store_string_func(p_store_string_ud, "Rect2(" + rtos_fix(aabb.position.x) + ", " + rtos_fix(aabb.position.y) + ", " + rtos_fix(aabb.size.x) + ", " + rtos_fix(aabb.size.y) + ")");
- } break;
- case Variant::RECT2I: {
- Rect2i aabb = p_variant;
- p_store_string_func(p_store_string_ud, "Rect2i(" + itos(aabb.position.x) + ", " + itos(aabb.position.y) + ", " + itos(aabb.size.x) + ", " + itos(aabb.size.y) + ")");
- } break;
- case Variant::VECTOR3: {
- Vector3 v = p_variant;
- p_store_string_func(p_store_string_ud, "Vector3(" + rtos_fix(v.x) + ", " + rtos_fix(v.y) + ", " + rtos_fix(v.z) + ")");
- } break;
- case Variant::VECTOR3I: {
- Vector3i v = p_variant;
- p_store_string_func(p_store_string_ud, "Vector3i(" + itos(v.x) + ", " + itos(v.y) + ", " + itos(v.z) + ")");
- } break;
- case Variant::VECTOR4: {
- Vector4 v = p_variant;
- p_store_string_func(p_store_string_ud, "Vector4(" + rtos_fix(v.x) + ", " + rtos_fix(v.y) + ", " + rtos_fix(v.z) + ", " + rtos_fix(v.w) + ")");
- } break;
- case Variant::VECTOR4I: {
- Vector4i v = p_variant;
- p_store_string_func(p_store_string_ud, "Vector4i(" + itos(v.x) + ", " + itos(v.y) + ", " + itos(v.z) + ", " + itos(v.w) + ")");
- } break;
- case Variant::PLANE: {
- Plane p = p_variant;
- p_store_string_func(p_store_string_ud, "Plane(" + rtos_fix(p.normal.x) + ", " + rtos_fix(p.normal.y) + ", " + rtos_fix(p.normal.z) + ", " + rtos_fix(p.d) + ")");
- } break;
- case Variant::AABB: {
- AABB aabb = p_variant;
- p_store_string_func(p_store_string_ud, "AABB(" + rtos_fix(aabb.position.x) + ", " + rtos_fix(aabb.position.y) + ", " + rtos_fix(aabb.position.z) + ", " + rtos_fix(aabb.size.x) + ", " + rtos_fix(aabb.size.y) + ", " + rtos_fix(aabb.size.z) + ")");
- } break;
- case Variant::QUATERNION: {
- Quaternion quaternion = p_variant;
- p_store_string_func(p_store_string_ud, "Quaternion(" + rtos_fix(quaternion.x) + ", " + rtos_fix(quaternion.y) + ", " + rtos_fix(quaternion.z) + ", " + rtos_fix(quaternion.w) + ")");
- } break;
- case Variant::TRANSFORM2D: {
- String s = "Transform2D(";
- Transform2D m3 = p_variant;
- for (int i = 0; i < 3; i++) {
- for (int j = 0; j < 2; j++) {
- if (i != 0 || j != 0) {
- s += ", ";
- }
- s += rtos_fix(m3.columns[i][j]);
- }
- }
- p_store_string_func(p_store_string_ud, s + ")");
- } break;
- case Variant::BASIS: {
- String s = "Basis(";
- Basis m3 = p_variant;
- for (int i = 0; i < 3; i++) {
- for (int j = 0; j < 3; j++) {
- if (i != 0 || j != 0) {
- s += ", ";
- }
- s += rtos_fix(m3.rows[i][j]);
- }
- }
- p_store_string_func(p_store_string_ud, s + ")");
- } break;
- case Variant::TRANSFORM3D: {
- String s = "Transform3D(";
- Transform3D t = p_variant;
- Basis &m3 = t.basis;
- for (int i = 0; i < 3; i++) {
- for (int j = 0; j < 3; j++) {
- if (i != 0 || j != 0) {
- s += ", ";
- }
- s += rtos_fix(m3.rows[i][j]);
- }
- }
- s = s + ", " + rtos_fix(t.origin.x) + ", " + rtos_fix(t.origin.y) + ", " + rtos_fix(t.origin.z);
- p_store_string_func(p_store_string_ud, s + ")");
- } break;
- case Variant::PROJECTION: {
- String s = "Projection(";
- Projection t = p_variant;
- for (int i = 0; i < 4; i++) {
- for (int j = 0; j < 4; j++) {
- if (i != 0 || j != 0) {
- s += ", ";
- }
- s += rtos_fix(t.columns[i][j]);
- }
- }
- p_store_string_func(p_store_string_ud, s + ")");
- } break;
- // Misc types.
- case Variant::COLOR: {
- Color c = p_variant;
- p_store_string_func(p_store_string_ud, "Color(" + rtos_fix(c.r) + ", " + rtos_fix(c.g) + ", " + rtos_fix(c.b) + ", " + rtos_fix(c.a) + ")");
- } break;
- case Variant::STRING_NAME: {
- String str = p_variant;
- str = "&\"" + str.c_escape() + "\"";
- p_store_string_func(p_store_string_ud, str);
- } break;
- case Variant::NODE_PATH: {
- String str = p_variant;
- str = "NodePath(\"" + str.c_escape() + "\")";
- p_store_string_func(p_store_string_ud, str);
- } break;
- case Variant::RID: {
- RID rid = p_variant;
- if (rid == RID()) {
- p_store_string_func(p_store_string_ud, "RID()");
- } else {
- p_store_string_func(p_store_string_ud, "RID(" + itos(rid.get_id()) + ")");
- }
- } break;
- // Do not really store these, but ensure that assignments are not empty.
- case Variant::SIGNAL: {
- p_store_string_func(p_store_string_ud, "Signal()");
- } break;
- case Variant::CALLABLE: {
- p_store_string_func(p_store_string_ud, "Callable()");
- } break;
- case Variant::OBJECT: {
- if (unlikely(p_recursion_count > MAX_RECURSION)) {
- ERR_PRINT("Max recursion reached");
- p_store_string_func(p_store_string_ud, "null");
- return OK;
- }
- p_recursion_count++;
- Object *obj = p_variant.get_validated_object();
- if (!obj) {
- p_store_string_func(p_store_string_ud, "null");
- break; // don't save it
- }
- Ref<Resource> res = p_variant;
- if (res.is_valid()) {
- //is resource
- String res_text;
- //try external function
- if (p_encode_res_func) {
- res_text = p_encode_res_func(p_encode_res_ud, res);
- }
- //try path because it's a file
- if (res_text.is_empty() && res->get_path().is_resource_file()) {
- //external resource
- String path = res->get_path();
- res_text = "Resource(\"" + path + "\")";
- }
- //could come up with some sort of text
- if (!res_text.is_empty()) {
- p_store_string_func(p_store_string_ud, res_text);
- break;
- }
- }
- //store as generic object
- p_store_string_func(p_store_string_ud, "Object(" + obj->get_class() + ",");
- List<PropertyInfo> props;
- obj->get_property_list(&props);
- bool first = true;
- for (const PropertyInfo &E : props) {
- if (E.usage & PROPERTY_USAGE_STORAGE || E.usage & PROPERTY_USAGE_SCRIPT_VARIABLE) {
- //must be serialized
- if (first) {
- first = false;
- } else {
- p_store_string_func(p_store_string_ud, ",");
- }
- p_store_string_func(p_store_string_ud, "\"" + E.name + "\":");
- write(obj->get(E.name), p_store_string_func, p_store_string_ud, p_encode_res_func, p_encode_res_ud, p_recursion_count, p_compat);
- }
- }
- p_store_string_func(p_store_string_ud, ")\n");
- } break;
- case Variant::DICTIONARY: {
- Dictionary dict = p_variant;
- if (dict.is_typed()) {
- p_store_string_func(p_store_string_ud, "Dictionary[");
- Variant::Type key_builtin_type = (Variant::Type)dict.get_typed_key_builtin();
- StringName key_class_name = dict.get_typed_key_class_name();
- Ref<Script> key_script = dict.get_typed_key_script();
- if (key_script.is_valid()) {
- String resource_text;
- if (p_encode_res_func) {
- resource_text = p_encode_res_func(p_encode_res_ud, key_script);
- }
- if (resource_text.is_empty() && key_script->get_path().is_resource_file()) {
- resource_text = "Resource(\"" + key_script->get_path() + "\")";
- }
- if (!resource_text.is_empty()) {
- p_store_string_func(p_store_string_ud, resource_text);
- } else {
- ERR_PRINT("Failed to encode a path to a custom script for a dictionary key type.");
- p_store_string_func(p_store_string_ud, key_class_name);
- }
- } else if (key_class_name != StringName()) {
- p_store_string_func(p_store_string_ud, key_class_name);
- } else if (key_builtin_type == Variant::NIL) {
- p_store_string_func(p_store_string_ud, "Variant");
- } else {
- p_store_string_func(p_store_string_ud, Variant::get_type_name(key_builtin_type));
- }
- p_store_string_func(p_store_string_ud, ", ");
- Variant::Type value_builtin_type = (Variant::Type)dict.get_typed_value_builtin();
- StringName value_class_name = dict.get_typed_value_class_name();
- Ref<Script> value_script = dict.get_typed_value_script();
- if (value_script.is_valid()) {
- String resource_text;
- if (p_encode_res_func) {
- resource_text = p_encode_res_func(p_encode_res_ud, value_script);
- }
- if (resource_text.is_empty() && value_script->get_path().is_resource_file()) {
- resource_text = "Resource(\"" + value_script->get_path() + "\")";
- }
- if (!resource_text.is_empty()) {
- p_store_string_func(p_store_string_ud, resource_text);
- } else {
- ERR_PRINT("Failed to encode a path to a custom script for a dictionary value type.");
- p_store_string_func(p_store_string_ud, value_class_name);
- }
- } else if (value_class_name != StringName()) {
- p_store_string_func(p_store_string_ud, value_class_name);
- } else if (value_builtin_type == Variant::NIL) {
- p_store_string_func(p_store_string_ud, "Variant");
- } else {
- p_store_string_func(p_store_string_ud, Variant::get_type_name(value_builtin_type));
- }
- p_store_string_func(p_store_string_ud, "](");
- }
- if (unlikely(p_recursion_count > MAX_RECURSION)) {
- ERR_PRINT("Max recursion reached");
- p_store_string_func(p_store_string_ud, "{}");
- } else {
- List<Variant> keys;
- dict.get_key_list(&keys);
- keys.sort_custom<StringLikeVariantOrder>();
- if (keys.is_empty()) {
- // Avoid unnecessary line break.
- p_store_string_func(p_store_string_ud, "{}");
- } else {
- p_recursion_count++;
- p_store_string_func(p_store_string_ud, "{\n");
- for (List<Variant>::Element *E = keys.front(); E; E = E->next()) {
- write(E->get(), p_store_string_func, p_store_string_ud, p_encode_res_func, p_encode_res_ud, p_recursion_count, p_compat);
- p_store_string_func(p_store_string_ud, ": ");
- write(dict[E->get()], p_store_string_func, p_store_string_ud, p_encode_res_func, p_encode_res_ud, p_recursion_count, p_compat);
- if (E->next()) {
- p_store_string_func(p_store_string_ud, ",\n");
- } else {
- p_store_string_func(p_store_string_ud, "\n");
- }
- }
- p_store_string_func(p_store_string_ud, "}");
- }
- }
- if (dict.is_typed()) {
- p_store_string_func(p_store_string_ud, ")");
- }
- } break;
- case Variant::ARRAY: {
- Array array = p_variant;
- if (array.is_typed()) {
- p_store_string_func(p_store_string_ud, "Array[");
- Variant::Type builtin_type = (Variant::Type)array.get_typed_builtin();
- StringName class_name = array.get_typed_class_name();
- Ref<Script> script = array.get_typed_script();
- if (script.is_valid()) {
- String resource_text = String();
- if (p_encode_res_func) {
- resource_text = p_encode_res_func(p_encode_res_ud, script);
- }
- if (resource_text.is_empty() && script->get_path().is_resource_file()) {
- resource_text = "Resource(\"" + script->get_path() + "\")";
- }
- if (!resource_text.is_empty()) {
- p_store_string_func(p_store_string_ud, resource_text);
- } else {
- ERR_PRINT("Failed to encode a path to a custom script for an array type.");
- p_store_string_func(p_store_string_ud, class_name);
- }
- } else if (class_name != StringName()) {
- p_store_string_func(p_store_string_ud, class_name);
- } else {
- p_store_string_func(p_store_string_ud, Variant::get_type_name(builtin_type));
- }
- p_store_string_func(p_store_string_ud, "](");
- }
- if (unlikely(p_recursion_count > MAX_RECURSION)) {
- ERR_PRINT("Max recursion reached");
- p_store_string_func(p_store_string_ud, "[]");
- } else {
- p_recursion_count++;
- p_store_string_func(p_store_string_ud, "[");
- bool first = true;
- for (const Variant &var : array) {
- if (first) {
- first = false;
- } else {
- p_store_string_func(p_store_string_ud, ", ");
- }
- write(var, p_store_string_func, p_store_string_ud, p_encode_res_func, p_encode_res_ud, p_recursion_count, p_compat);
- }
- p_store_string_func(p_store_string_ud, "]");
- }
- if (array.is_typed()) {
- p_store_string_func(p_store_string_ud, ")");
- }
- } break;
- case Variant::PACKED_BYTE_ARRAY: {
- p_store_string_func(p_store_string_ud, "PackedByteArray(");
- Vector<uint8_t> data = p_variant;
- if (p_compat) {
- int len = data.size();
- const uint8_t *ptr = data.ptr();
- for (int i = 0; i < len; i++) {
- if (i > 0) {
- p_store_string_func(p_store_string_ud, ", ");
- }
- p_store_string_func(p_store_string_ud, itos(ptr[i]));
- }
- } else if (data.size() > 0) {
- p_store_string_func(p_store_string_ud, "\"");
- p_store_string_func(p_store_string_ud, CryptoCore::b64_encode_str(data.ptr(), data.size()));
- p_store_string_func(p_store_string_ud, "\"");
- }
- p_store_string_func(p_store_string_ud, ")");
- } break;
- case Variant::PACKED_INT32_ARRAY: {
- p_store_string_func(p_store_string_ud, "PackedInt32Array(");
- Vector<int32_t> data = p_variant;
- int32_t len = data.size();
- const int32_t *ptr = data.ptr();
- for (int32_t i = 0; i < len; i++) {
- if (i > 0) {
- p_store_string_func(p_store_string_ud, ", ");
- }
- p_store_string_func(p_store_string_ud, itos(ptr[i]));
- }
- p_store_string_func(p_store_string_ud, ")");
- } break;
- case Variant::PACKED_INT64_ARRAY: {
- p_store_string_func(p_store_string_ud, "PackedInt64Array(");
- Vector<int64_t> data = p_variant;
- int64_t len = data.size();
- const int64_t *ptr = data.ptr();
- for (int64_t i = 0; i < len; i++) {
- if (i > 0) {
- p_store_string_func(p_store_string_ud, ", ");
- }
- p_store_string_func(p_store_string_ud, itos(ptr[i]));
- }
- p_store_string_func(p_store_string_ud, ")");
- } break;
- case Variant::PACKED_FLOAT32_ARRAY: {
- p_store_string_func(p_store_string_ud, "PackedFloat32Array(");
- Vector<float> data = p_variant;
- int len = data.size();
- const float *ptr = data.ptr();
- for (int i = 0; i < len; i++) {
- if (i > 0) {
- p_store_string_func(p_store_string_ud, ", ");
- }
- p_store_string_func(p_store_string_ud, rtos_fix(ptr[i]));
- }
- p_store_string_func(p_store_string_ud, ")");
- } break;
- case Variant::PACKED_FLOAT64_ARRAY: {
- p_store_string_func(p_store_string_ud, "PackedFloat64Array(");
- Vector<double> data = p_variant;
- int len = data.size();
- const double *ptr = data.ptr();
- for (int i = 0; i < len; i++) {
- if (i > 0) {
- p_store_string_func(p_store_string_ud, ", ");
- }
- p_store_string_func(p_store_string_ud, rtos_fix(ptr[i]));
- }
- p_store_string_func(p_store_string_ud, ")");
- } break;
- case Variant::PACKED_STRING_ARRAY: {
- p_store_string_func(p_store_string_ud, "PackedStringArray(");
- Vector<String> data = p_variant;
- int len = data.size();
- const String *ptr = data.ptr();
- for (int i = 0; i < len; i++) {
- if (i > 0) {
- p_store_string_func(p_store_string_ud, ", ");
- }
- p_store_string_func(p_store_string_ud, "\"" + ptr[i].c_escape() + "\"");
- }
- p_store_string_func(p_store_string_ud, ")");
- } break;
- case Variant::PACKED_VECTOR2_ARRAY: {
- p_store_string_func(p_store_string_ud, "PackedVector2Array(");
- Vector<Vector2> data = p_variant;
- int len = data.size();
- const Vector2 *ptr = data.ptr();
- for (int i = 0; i < len; i++) {
- if (i > 0) {
- p_store_string_func(p_store_string_ud, ", ");
- }
- p_store_string_func(p_store_string_ud, rtos_fix(ptr[i].x) + ", " + rtos_fix(ptr[i].y));
- }
- p_store_string_func(p_store_string_ud, ")");
- } break;
- case Variant::PACKED_VECTOR3_ARRAY: {
- p_store_string_func(p_store_string_ud, "PackedVector3Array(");
- Vector<Vector3> data = p_variant;
- int len = data.size();
- const Vector3 *ptr = data.ptr();
- for (int i = 0; i < len; i++) {
- if (i > 0) {
- p_store_string_func(p_store_string_ud, ", ");
- }
- p_store_string_func(p_store_string_ud, rtos_fix(ptr[i].x) + ", " + rtos_fix(ptr[i].y) + ", " + rtos_fix(ptr[i].z));
- }
- p_store_string_func(p_store_string_ud, ")");
- } break;
- case Variant::PACKED_COLOR_ARRAY: {
- p_store_string_func(p_store_string_ud, "PackedColorArray(");
- Vector<Color> data = p_variant;
- int len = data.size();
- const Color *ptr = data.ptr();
- for (int i = 0; i < len; i++) {
- if (i > 0) {
- p_store_string_func(p_store_string_ud, ", ");
- }
- p_store_string_func(p_store_string_ud, rtos_fix(ptr[i].r) + ", " + rtos_fix(ptr[i].g) + ", " + rtos_fix(ptr[i].b) + ", " + rtos_fix(ptr[i].a));
- }
- p_store_string_func(p_store_string_ud, ")");
- } break;
- case Variant::PACKED_VECTOR4_ARRAY: {
- p_store_string_func(p_store_string_ud, "PackedVector4Array(");
- Vector<Vector4> data = p_variant;
- int len = data.size();
- const Vector4 *ptr = data.ptr();
- for (int i = 0; i < len; i++) {
- if (i > 0) {
- p_store_string_func(p_store_string_ud, ", ");
- }
- p_store_string_func(p_store_string_ud, rtos_fix(ptr[i].x) + ", " + rtos_fix(ptr[i].y) + ", " + rtos_fix(ptr[i].z) + ", " + rtos_fix(ptr[i].w));
- }
- p_store_string_func(p_store_string_ud, ")");
- } break;
- default: {
- ERR_PRINT("Unknown variant type");
- return ERR_BUG;
- }
- }
- return OK;
- }
- static Error _write_to_str(void *ud, const String &p_string) {
- String *str = (String *)ud;
- (*str) += p_string;
- return OK;
- }
- Error VariantWriter::write_to_string(const Variant &p_variant, String &r_string, EncodeResourceFunc p_encode_res_func, void *p_encode_res_ud, bool p_compat) {
- r_string = String();
- return write(p_variant, _write_to_str, &r_string, p_encode_res_func, p_encode_res_ud, 0, p_compat);
- }
|