| 
									
										
										
										
											2016-06-18 14:46:12 +02:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*  variant_parser.cpp                                                   */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       This file is part of:                           */ | 
					
						
							|  |  |  | /*                           GODOT ENGINE                                */ | 
					
						
							| 
									
										
										
										
											2017-08-27 14:16:55 +02:00
										 |  |  | /*                      https://godotengine.org                          */ | 
					
						
							| 
									
										
										
										
											2016-06-18 14:46:12 +02:00
										 |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2022-01-13 09:45:09 +01:00
										 |  |  | /* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur.                 */ | 
					
						
							|  |  |  | /* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md).   */ | 
					
						
							| 
									
										
										
										
											2016-06-18 14:46:12 +02:00
										 |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* 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.                */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2018-01-05 00:50:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | #include "variant_parser.h"
 | 
					
						
							| 
									
										
										
										
											2017-01-16 08:04:19 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-11 18:13:45 +02:00
										 |  |  | #include "core/io/resource_loader.h"
 | 
					
						
							|  |  |  | #include "core/os/input_event.h"
 | 
					
						
							|  |  |  | #include "core/os/keyboard.h"
 | 
					
						
							| 
									
										
										
										
											2017-09-05 11:04:33 +07:00
										 |  |  | #include "core/string_buffer.h"
 | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | CharType VariantParser::StreamFile::get_char() { | 
					
						
							|  |  |  | 	return f->get_8(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool VariantParser::StreamFile::is_utf8() const { | 
					
						
							|  |  |  | 	return true; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | bool VariantParser::StreamFile::is_eof() const { | 
					
						
							|  |  |  | 	return f->eof_reached(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-31 00:54:00 -03:00
										 |  |  | CharType VariantParser::StreamString::get_char() { | 
					
						
							| 
									
										
										
										
											2020-02-10 09:18:58 +01:00
										 |  |  | 	if (pos > s.length()) { | 
					
						
							| 
									
										
										
										
											2015-12-31 00:54:00 -03:00
										 |  |  | 		return 0; | 
					
						
							| 
									
										
										
										
											2020-02-10 09:18:58 +01:00
										 |  |  | 	} else if (pos == s.length()) { | 
					
						
							|  |  |  | 		// You need to try to read again when you have reached the end for EOF to be reported,
 | 
					
						
							|  |  |  | 		// so this works the same as files (like StreamFile does)
 | 
					
						
							|  |  |  | 		pos++; | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2015-12-31 00:54:00 -03:00
										 |  |  | 		return s[pos++]; | 
					
						
							| 
									
										
										
										
											2020-02-10 09:18:58 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-12-31 00:54:00 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool VariantParser::StreamString::is_utf8() const { | 
					
						
							|  |  |  | 	return false; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | bool VariantParser::StreamString::is_eof() const { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	return pos > s.length(); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:54:00 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | /////////////////////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | const char *VariantParser::tk_name[TK_MAX] = { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 	"'{'", | 
					
						
							|  |  |  | 	"'}'", | 
					
						
							|  |  |  | 	"'['", | 
					
						
							|  |  |  | 	"']'", | 
					
						
							|  |  |  | 	"'('", | 
					
						
							|  |  |  | 	"')'", | 
					
						
							|  |  |  | 	"identifier", | 
					
						
							|  |  |  | 	"string", | 
					
						
							|  |  |  | 	"number", | 
					
						
							| 
									
										
										
										
											2015-12-31 14:30:50 -03:00
										 |  |  | 	"color", | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 	"':'", | 
					
						
							|  |  |  | 	"','", | 
					
						
							| 
									
										
										
										
											2016-01-07 09:04:44 -03:00
										 |  |  | 	"'.'", | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 	"'='", | 
					
						
							|  |  |  | 	"EOF", | 
					
						
							|  |  |  | 	"ERROR" | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-23 10:12:19 +05:30
										 |  |  | static double stor_fix(const String &p_str) { | 
					
						
							|  |  |  | 	if (p_str == "inf") { | 
					
						
							|  |  |  | 		return Math_INF; | 
					
						
							|  |  |  | 	} else if (p_str == "inf_neg") { | 
					
						
							|  |  |  | 		return -Math_INF; | 
					
						
							|  |  |  | 	} else if (p_str == "nan") { | 
					
						
							|  |  |  | 		return Math_NAN; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return -1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | Error VariantParser::get_token(Stream *p_stream, Token &r_token, int &line, String &r_err_str) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 	while (true) { | 
					
						
							|  |  |  | 		CharType cchar; | 
					
						
							|  |  |  | 		if (p_stream->saved) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			cchar = p_stream->saved; | 
					
						
							|  |  |  | 			p_stream->saved = 0; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			cchar = p_stream->get_char(); | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 			if (p_stream->is_eof()) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				r_token.type = TK_EOF; | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 				return OK; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		switch (cchar) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			case '\n': { | 
					
						
							|  |  |  | 				line++; | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			}; | 
					
						
							|  |  |  | 			case 0: { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				r_token.type = TK_EOF; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				return OK; | 
					
						
							|  |  |  | 			} break; | 
					
						
							|  |  |  | 			case '{': { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				r_token.type = TK_CURLY_BRACKET_OPEN; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				return OK; | 
					
						
							|  |  |  | 			}; | 
					
						
							|  |  |  | 			case '}': { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				r_token.type = TK_CURLY_BRACKET_CLOSE; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				return OK; | 
					
						
							|  |  |  | 			}; | 
					
						
							|  |  |  | 			case '[': { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				r_token.type = TK_BRACKET_OPEN; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				return OK; | 
					
						
							|  |  |  | 			}; | 
					
						
							|  |  |  | 			case ']': { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				r_token.type = TK_BRACKET_CLOSE; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				return OK; | 
					
						
							|  |  |  | 			}; | 
					
						
							|  |  |  | 			case '(': { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				r_token.type = TK_PARENTHESIS_OPEN; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				return OK; | 
					
						
							|  |  |  | 			}; | 
					
						
							|  |  |  | 			case ')': { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				r_token.type = TK_PARENTHESIS_CLOSE; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				return OK; | 
					
						
							|  |  |  | 			}; | 
					
						
							|  |  |  | 			case ':': { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				r_token.type = TK_COLON; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				return OK; | 
					
						
							|  |  |  | 			}; | 
					
						
							| 
									
										
										
										
											2015-12-31 10:25:21 -03:00
										 |  |  | 			case ';': { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				while (true) { | 
					
						
							|  |  |  | 					CharType ch = p_stream->get_char(); | 
					
						
							| 
									
										
										
										
											2015-12-31 10:25:21 -03:00
										 |  |  | 					if (p_stream->is_eof()) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 						r_token.type = TK_EOF; | 
					
						
							| 
									
										
										
										
											2015-12-31 10:25:21 -03:00
										 |  |  | 						return OK; | 
					
						
							|  |  |  | 					} | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 					if (ch == '\n') { | 
					
						
							| 
									
										
										
										
											2015-12-31 10:25:21 -03:00
										 |  |  | 						break; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 					} | 
					
						
							| 
									
										
										
										
											2015-12-31 10:25:21 -03:00
										 |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			}; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			case ',': { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				r_token.type = TK_COMMA; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				return OK; | 
					
						
							|  |  |  | 			}; | 
					
						
							| 
									
										
										
										
											2016-01-07 09:04:44 -03:00
										 |  |  | 			case '.': { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				r_token.type = TK_PERIOD; | 
					
						
							| 
									
										
										
										
											2016-01-07 09:04:44 -03:00
										 |  |  | 				return OK; | 
					
						
							|  |  |  | 			}; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			case '=': { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				r_token.type = TK_EQUAL; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				return OK; | 
					
						
							|  |  |  | 			}; | 
					
						
							| 
									
										
										
										
											2015-12-31 14:30:50 -03:00
										 |  |  | 			case '#': { | 
					
						
							| 
									
										
										
										
											2018-01-20 20:03:17 +01:00
										 |  |  | 				StringBuffer<> color_str; | 
					
						
							| 
									
										
										
										
											2017-09-05 11:04:33 +07:00
										 |  |  | 				color_str += '#'; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				while (true) { | 
					
						
							|  |  |  | 					CharType ch = p_stream->get_char(); | 
					
						
							| 
									
										
										
										
											2015-12-31 14:30:50 -03:00
										 |  |  | 					if (p_stream->is_eof()) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 						r_token.type = TK_EOF; | 
					
						
							| 
									
										
										
										
											2015-12-31 14:30:50 -03:00
										 |  |  | 						return OK; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 					} else if ((ch >= '0' && ch <= '9') || (ch >= 'a' && ch <= 'f') || (ch >= 'A' && ch <= 'F')) { | 
					
						
							| 
									
										
										
										
											2017-09-05 11:04:33 +07:00
										 |  |  | 						color_str += ch; | 
					
						
							| 
									
										
										
										
											2015-12-31 14:30:50 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 					} else { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 						p_stream->saved = ch; | 
					
						
							| 
									
										
										
										
											2015-12-31 14:30:50 -03:00
										 |  |  | 						break; | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-05 11:04:33 +07:00
										 |  |  | 				r_token.value = Color::html(color_str.as_string()); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				r_token.type = TK_COLOR; | 
					
						
							| 
									
										
										
										
											2015-12-31 14:30:50 -03:00
										 |  |  | 				return OK; | 
					
						
							|  |  |  | 			}; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			case '"': { | 
					
						
							|  |  |  | 				String str; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				while (true) { | 
					
						
							|  |  |  | 					CharType ch = p_stream->get_char(); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 					if (ch == 0) { | 
					
						
							|  |  |  | 						r_err_str = "Unterminated String"; | 
					
						
							|  |  |  | 						r_token.type = TK_ERROR; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 						return ERR_PARSE_ERROR; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 					} else if (ch == '"') { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 						break; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 					} else if (ch == '\\') { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 						//escaped characters...
 | 
					
						
							|  |  |  | 						CharType next = p_stream->get_char(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 						if (next == 0) { | 
					
						
							|  |  |  | 							r_err_str = "Unterminated String"; | 
					
						
							|  |  |  | 							r_token.type = TK_ERROR; | 
					
						
							|  |  |  | 							return ERR_PARSE_ERROR; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 						} | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 						CharType res = 0; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 						switch (next) { | 
					
						
							| 
									
										
										
										
											2021-05-04 14:35:44 +02:00
										 |  |  | 							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; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 							case 'u': { | 
					
						
							|  |  |  | 								//hexnumbarh - oct is deprecated
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 								for (int j = 0; j < 4; j++) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 									CharType c = p_stream->get_char(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 									if (c == 0) { | 
					
						
							|  |  |  | 										r_err_str = "Unterminated String"; | 
					
						
							|  |  |  | 										r_token.type = TK_ERROR; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 										return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 									} | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 									if (!((c >= '0' && c <= '9') || (c >= 'a' && c <= 'f') || (c >= 'A' && c <= 'F'))) { | 
					
						
							|  |  |  | 										r_err_str = "Malformed hex constant in string"; | 
					
						
							|  |  |  | 										r_token.type = TK_ERROR; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 										return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 									} | 
					
						
							|  |  |  | 									CharType v; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 									if (c >= '0' && c <= '9') { | 
					
						
							|  |  |  | 										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; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 									} else { | 
					
						
							|  |  |  | 										ERR_PRINT("BUG"); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 										v = 0; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 									} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 									res <<= 4; | 
					
						
							|  |  |  | 									res |= v; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 								} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 							} break; | 
					
						
							|  |  |  | 							//case '\"': res='\"'; break;
 | 
					
						
							|  |  |  | 							//case '\\': res='\\'; break;
 | 
					
						
							|  |  |  | 							//case '/': res='/'; break;
 | 
					
						
							|  |  |  | 							default: { | 
					
						
							|  |  |  | 								res = next; | 
					
						
							|  |  |  | 								//r_err_str="Invalid escape sequence";
 | 
					
						
							|  |  |  | 								//return ERR_PARSE_ERROR;
 | 
					
						
							|  |  |  | 							} break; | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 						str += res; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 					} else { | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 						if (ch == '\n') { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 							line++; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 						} | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 						str += ch; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 				if (p_stream->is_utf8()) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 					str.parse_utf8(str.ascii(true).get_data()); | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				r_token.type = TK_STRING; | 
					
						
							|  |  |  | 				r_token.value = str; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				return OK; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			} break; | 
					
						
							|  |  |  | 			default: { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				if (cchar <= 32) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 					break; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				if (cchar == '-' || (cchar >= '0' && cchar <= '9')) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 					//a number
 | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-20 20:03:17 +01:00
										 |  |  | 					StringBuffer<> num; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | #define READING_SIGN 0
 | 
					
						
							|  |  |  | #define READING_INT 1
 | 
					
						
							|  |  |  | #define READING_DEC 2
 | 
					
						
							|  |  |  | #define READING_EXP 3
 | 
					
						
							|  |  |  | #define READING_DONE 4
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 					int reading = READING_INT; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 					if (cchar == '-') { | 
					
						
							|  |  |  | 						num += '-'; | 
					
						
							|  |  |  | 						cchar = p_stream->get_char(); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 					} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					CharType c = cchar; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 					bool exp_sign = false; | 
					
						
							|  |  |  | 					bool exp_beg = false; | 
					
						
							|  |  |  | 					bool is_float = false; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 					while (true) { | 
					
						
							|  |  |  | 						switch (reading) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 							case READING_INT: { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 								if (c >= '0' && c <= '9') { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 									//pass
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 								} else if (c == '.') { | 
					
						
							|  |  |  | 									reading = READING_DEC; | 
					
						
							|  |  |  | 									is_float = true; | 
					
						
							|  |  |  | 								} else if (c == 'e') { | 
					
						
							|  |  |  | 									reading = READING_EXP; | 
					
						
							| 
									
										
										
										
											2017-08-21 23:51:46 +02:00
										 |  |  | 									is_float = true; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 								} else { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 									reading = READING_DONE; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 								} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 							} break; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 							case READING_DEC: { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 								if (c >= '0' && c <= '9') { | 
					
						
							|  |  |  | 								} else if (c == 'e') { | 
					
						
							|  |  |  | 									reading = READING_EXP; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 								} else { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 									reading = READING_DONE; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 								} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 							} break; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 							case READING_EXP: { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 								if (c >= '0' && c <= '9') { | 
					
						
							|  |  |  | 									exp_beg = true; | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 								} else if ((c == '-' || c == '+') && !exp_sign && !exp_beg) { | 
					
						
							|  |  |  | 									exp_sign = true; | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 								} else { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 									reading = READING_DONE; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 								} | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 							} break; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 						} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 						if (reading == READING_DONE) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 							break; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 						} | 
					
						
							| 
									
										
										
										
											2017-09-05 11:04:33 +07:00
										 |  |  | 						num += c; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 						c = p_stream->get_char(); | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 					p_stream->saved = c; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 					r_token.type = TK_NUMBER; | 
					
						
							| 
									
										
										
										
											2016-02-01 19:17:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 					if (is_float) { | 
					
						
							| 
									
										
										
										
											2017-09-05 11:04:33 +07:00
										 |  |  | 						r_token.value = num.as_double(); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 					} else { | 
					
						
							| 
									
										
										
										
											2017-09-05 11:04:33 +07:00
										 |  |  | 						r_token.value = num.as_int(); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 					} | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 					return OK; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				} else if ((cchar >= 'A' && cchar <= 'Z') || (cchar >= 'a' && cchar <= 'z') || cchar == '_') { | 
					
						
							| 
									
										
										
										
											2018-01-20 20:03:17 +01:00
										 |  |  | 					StringBuffer<> id; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 					bool first = true; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 					while ((cchar >= 'A' && cchar <= 'Z') || (cchar >= 'a' && cchar <= 'z') || cchar == '_' || (!first && cchar >= '0' && cchar <= '9')) { | 
					
						
							| 
									
										
										
										
											2017-09-05 11:04:33 +07:00
										 |  |  | 						id += cchar; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 						cchar = p_stream->get_char(); | 
					
						
							|  |  |  | 						first = false; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 					} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 					p_stream->saved = cchar; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 					r_token.type = TK_IDENTIFIER; | 
					
						
							| 
									
										
										
										
											2017-09-05 11:04:33 +07:00
										 |  |  | 					r_token.value = id.as_string(); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 					return OK; | 
					
						
							|  |  |  | 				} else { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 					r_err_str = "Unexpected character."; | 
					
						
							|  |  |  | 					r_token.type = TK_ERROR; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 					return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	r_token.type = TK_ERROR; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 	return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | Error VariantParser::_parse_enginecfg(Stream *p_stream, Vector<String> &strings, int &line, String &r_err_str) { | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 	Token token; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	get_token(p_stream, token, line, r_err_str); | 
					
						
							|  |  |  | 	if (token.type != TK_PARENTHESIS_OPEN) { | 
					
						
							| 
									
										
										
										
											2017-05-01 17:44:52 +02:00
										 |  |  | 		r_err_str = "Expected '(' in old-style project.godot construct"; | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 		return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	String accum; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	while (true) { | 
					
						
							|  |  |  | 		CharType c = p_stream->get_char(); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (p_stream->is_eof()) { | 
					
						
							| 
									
										
										
										
											2017-05-01 17:44:52 +02:00
										 |  |  | 			r_err_str = "Unexpected EOF while parsing old-style project.godot construct"; | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 			return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		if (c == ',') { | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 			strings.push_back(accum.strip_edges()); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			accum = String(); | 
					
						
							|  |  |  | 		} else if (c == ')') { | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 			strings.push_back(accum.strip_edges()); | 
					
						
							|  |  |  | 			return OK; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		} else if (c == '\n') { | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 			line++; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | template <class T> | 
					
						
							|  |  |  | Error VariantParser::_parse_construct(Stream *p_stream, Vector<T> &r_construct, int &line, String &r_err_str) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 	Token token; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	get_token(p_stream, token, line, r_err_str); | 
					
						
							|  |  |  | 	if (token.type != TK_PARENTHESIS_OPEN) { | 
					
						
							|  |  |  | 		r_err_str = "Expected '(' in constructor"; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 		return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	bool first = true; | 
					
						
							|  |  |  | 	while (true) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 		if (!first) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			get_token(p_stream, token, line, r_err_str); | 
					
						
							|  |  |  | 			if (token.type == TK_COMMA) { | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 				//do none
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			} else if (token.type == TK_PARENTHESIS_CLOSE) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				break; | 
					
						
							|  |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				r_err_str = "Expected ',' or ')' in constructor"; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		get_token(p_stream, token, line, r_err_str); | 
					
						
							| 
									
										
										
										
											2016-01-10 23:22:48 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		if (first && token.type == TK_PARENTHESIS_CLOSE) { | 
					
						
							| 
									
										
										
										
											2016-01-10 23:22:48 -03:00
										 |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		} else if (token.type != TK_NUMBER) { | 
					
						
							| 
									
										
										
										
											2020-07-23 10:12:19 +05:30
										 |  |  | 			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; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		r_construct.push_back(token.value); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		first = false; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return OK; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 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) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 		Dictionary d; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		Error err = _parse_dictionary(d, p_stream, line, r_err_str, p_res_parser); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 		if (err) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			return err; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		value = d; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 		return OK; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	} else if (token.type == TK_BRACKET_OPEN) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 		Array a; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		Error err = _parse_array(a, p_stream, line, r_err_str, p_res_parser); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 		if (err) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			return err; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		value = a; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 		return OK; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	} else if (token.type == TK_IDENTIFIER) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 		String id = token.value; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 		if (id == "true") { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			value = true; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 		} else if (id == "false") { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			value = false; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 		} else if (id == "null" || id == "nil") { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			value = Variant(); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 		} else if (id == "inf") { | 
					
						
							| 
									
										
										
										
											2020-02-09 00:46:13 -05:00
										 |  |  | 			value = Math_INF; | 
					
						
							| 
									
										
										
										
											2020-07-23 10:12:19 +05:30
										 |  |  | 		} else if (id == "inf_neg") { | 
					
						
							|  |  |  | 			value = -Math_INF; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 		} else if (id == "nan") { | 
					
						
							| 
									
										
										
										
											2020-02-09 00:46:13 -05:00
										 |  |  | 			value = Math_NAN; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 		} else if (id == "Vector2") { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			Vector<float> args; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			Error err = _parse_construct<float>(p_stream, args, line, r_err_str); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			if (err) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				return err; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			if (args.size() != 2) { | 
					
						
							|  |  |  | 				r_err_str = "Expected 2 arguments for constructor"; | 
					
						
							| 
									
										
										
										
											2020-06-08 11:36:41 +02:00
										 |  |  | 				return ERR_PARSE_ERROR; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			value = Vector2(args[0], args[1]); | 
					
						
							|  |  |  | 		} else if (id == "Rect2") { | 
					
						
							| 
									
										
										
										
											2015-12-12 17:10:43 -03:00
										 |  |  | 			Vector<float> args; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			Error err = _parse_construct<float>(p_stream, args, line, r_err_str); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			if (err) { | 
					
						
							| 
									
										
										
										
											2015-12-12 17:10:43 -03:00
										 |  |  | 				return err; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2015-12-12 17:10:43 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			if (args.size() != 4) { | 
					
						
							|  |  |  | 				r_err_str = "Expected 4 arguments for constructor"; | 
					
						
							| 
									
										
										
										
											2020-06-08 11:36:41 +02:00
										 |  |  | 				return ERR_PARSE_ERROR; | 
					
						
							| 
									
										
										
										
											2015-12-12 17:10:43 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			value = Rect2(args[0], args[1], args[2], args[3]); | 
					
						
							|  |  |  | 		} else if (id == "Vector3") { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			Vector<float> args; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			Error err = _parse_construct<float>(p_stream, args, line, r_err_str); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			if (err) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				return err; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			if (args.size() != 3) { | 
					
						
							|  |  |  | 				r_err_str = "Expected 3 arguments for constructor"; | 
					
						
							| 
									
										
										
										
											2020-06-08 11:36:41 +02:00
										 |  |  | 				return ERR_PARSE_ERROR; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			value = Vector3(args[0], args[1], args[2]); | 
					
						
							|  |  |  | 		} else if (id == "Transform2D" || id == "Matrix32") { //compatibility
 | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			Vector<float> args; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			Error err = _parse_construct<float>(p_stream, args, line, r_err_str); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			if (err) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				return err; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			if (args.size() != 6) { | 
					
						
							|  |  |  | 				r_err_str = "Expected 6 arguments for constructor"; | 
					
						
							| 
									
										
										
										
											2020-06-08 11:36:41 +02:00
										 |  |  | 				return ERR_PARSE_ERROR; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2020-06-08 11:36:41 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-11 00:52:51 -03:00
										 |  |  | 			Transform2D m; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			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") { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			Vector<float> args; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			Error err = _parse_construct<float>(p_stream, args, line, r_err_str); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			if (err) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				return err; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			if (args.size() != 4) { | 
					
						
							|  |  |  | 				r_err_str = "Expected 4 arguments for constructor"; | 
					
						
							| 
									
										
										
										
											2020-06-08 11:36:41 +02:00
										 |  |  | 				return ERR_PARSE_ERROR; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			value = Plane(args[0], args[1], args[2], args[3]); | 
					
						
							|  |  |  | 		} else if (id == "Quat") { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			Vector<float> args; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			Error err = _parse_construct<float>(p_stream, args, line, r_err_str); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			if (err) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				return err; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			if (args.size() != 4) { | 
					
						
							|  |  |  | 				r_err_str = "Expected 4 arguments for constructor"; | 
					
						
							| 
									
										
										
										
											2020-06-08 11:36:41 +02:00
										 |  |  | 				return ERR_PARSE_ERROR; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			value = Quat(args[0], args[1], args[2], args[3]); | 
					
						
							| 
									
										
										
										
											2017-11-20 08:25:43 -03:00
										 |  |  | 		} else if (id == "AABB" || id == "Rect3") { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			Vector<float> args; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			Error err = _parse_construct<float>(p_stream, args, line, r_err_str); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			if (err) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				return err; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			if (args.size() != 6) { | 
					
						
							|  |  |  | 				r_err_str = "Expected 6 arguments for constructor"; | 
					
						
							| 
									
										
										
										
											2020-06-08 11:36:41 +02:00
										 |  |  | 				return ERR_PARSE_ERROR; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-16 21:09:00 -05:00
										 |  |  | 			value = AABB(Vector3(args[0], args[1], args[2]), Vector3(args[3], args[4], args[5])); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		} else if (id == "Basis" || id == "Matrix3") { //compatibility
 | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			Vector<float> args; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			Error err = _parse_construct<float>(p_stream, args, line, r_err_str); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			if (err) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				return err; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			if (args.size() != 9) { | 
					
						
							|  |  |  | 				r_err_str = "Expected 9 arguments for constructor"; | 
					
						
							| 
									
										
										
										
											2020-06-08 11:36:41 +02:00
										 |  |  | 				return ERR_PARSE_ERROR; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			value = Basis(args[0], args[1], args[2], args[3], args[4], args[5], args[6], args[7], args[8]); | 
					
						
							|  |  |  | 		} else if (id == "Transform") { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			Vector<float> args; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			Error err = _parse_construct<float>(p_stream, args, line, r_err_str); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			if (err) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				return err; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			if (args.size() != 12) { | 
					
						
							|  |  |  | 				r_err_str = "Expected 12 arguments for constructor"; | 
					
						
							| 
									
										
										
										
											2020-06-08 11:36:41 +02:00
										 |  |  | 				return ERR_PARSE_ERROR; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			value = Transform(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 == "Color") { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			Vector<float> args; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			Error err = _parse_construct<float>(p_stream, args, line, r_err_str); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			if (err) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				return err; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			if (args.size() != 4) { | 
					
						
							|  |  |  | 				r_err_str = "Expected 4 arguments for constructor"; | 
					
						
							| 
									
										
										
										
											2020-06-08 11:36:41 +02:00
										 |  |  | 				return ERR_PARSE_ERROR; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			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 '('"; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			get_token(p_stream, token, line, r_err_str); | 
					
						
							|  |  |  | 			if (token.type != TK_STRING) { | 
					
						
							|  |  |  | 				r_err_str = "Expected string as argument for NodePath()"; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			value = NodePath(String(token.value)); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			get_token(p_stream, token, line, r_err_str); | 
					
						
							|  |  |  | 			if (token.type != TK_PARENTHESIS_CLOSE) { | 
					
						
							|  |  |  | 				r_err_str = "Expected ')'"; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		} else if (id == "RID") { | 
					
						
							|  |  |  | 			get_token(p_stream, token, line, r_err_str); | 
					
						
							|  |  |  | 			if (token.type != TK_PARENTHESIS_OPEN) { | 
					
						
							|  |  |  | 				r_err_str = "Expected '('"; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			get_token(p_stream, token, line, r_err_str); | 
					
						
							|  |  |  | 			if (token.type != TK_NUMBER) { | 
					
						
							|  |  |  | 				r_err_str = "Expected number as argument"; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			value = token.value; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			get_token(p_stream, token, line, r_err_str); | 
					
						
							|  |  |  | 			if (token.type != TK_PARENTHESIS_CLOSE) { | 
					
						
							|  |  |  | 				r_err_str = "Expected ')'"; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-05-28 21:46:48 -03:00
										 |  |  | 		} 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::instance(type); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (!obj) { | 
					
						
							|  |  |  | 				r_err_str = "Can't instance Object() of type: " + type; | 
					
						
							|  |  |  | 				return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-17 12:24:55 +01:00
										 |  |  | 			REF ref = REF(Object::cast_to<Reference>(obj)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-28 21:46:48 -03:00
										 |  |  | 			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; | 
					
						
							| 
									
										
										
										
											2019-02-12 21:10:08 +01:00
										 |  |  | 			Token token2; | 
					
						
							| 
									
										
										
										
											2017-05-28 21:46:48 -03:00
										 |  |  | 			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) { | 
					
						
							| 
									
										
										
										
											2019-02-12 21:10:08 +01:00
										 |  |  | 					Error err = get_token(p_stream, token2, line, r_err_str); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 					if (err != OK) { | 
					
						
							| 
									
										
										
										
											2017-05-28 21:46:48 -03:00
										 |  |  | 						return err; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 					} | 
					
						
							| 
									
										
										
										
											2017-05-28 21:46:48 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-12 21:10:08 +01:00
										 |  |  | 					if (token2.type == TK_PARENTHESIS_CLOSE) { | 
					
						
							| 
									
										
										
										
											2020-12-17 12:24:55 +01:00
										 |  |  | 						value = ref.is_valid() ? Variant(ref) : Variant(obj); | 
					
						
							| 
									
										
										
										
											2017-05-28 21:46:48 -03:00
										 |  |  | 						return OK; | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					if (need_comma) { | 
					
						
							| 
									
										
										
										
											2019-02-12 21:10:08 +01:00
										 |  |  | 						if (token2.type != TK_COMMA) { | 
					
						
							| 
									
										
										
										
											2017-05-28 21:46:48 -03:00
										 |  |  | 							r_err_str = "Expected '}' or ','"; | 
					
						
							|  |  |  | 							return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 						} else { | 
					
						
							|  |  |  | 							need_comma = false; | 
					
						
							|  |  |  | 							continue; | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-12 21:10:08 +01:00
										 |  |  | 					if (token2.type != TK_STRING) { | 
					
						
							| 
									
										
										
										
											2017-05-28 21:46:48 -03:00
										 |  |  | 						r_err_str = "Expected property name as string"; | 
					
						
							|  |  |  | 						return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-12 21:10:08 +01:00
										 |  |  | 					key = token2.value; | 
					
						
							| 
									
										
										
										
											2017-05-28 21:46:48 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-12 21:10:08 +01:00
										 |  |  | 					err = get_token(p_stream, token2, line, r_err_str); | 
					
						
							| 
									
										
										
										
											2017-05-28 21:46:48 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 					if (err != OK) { | 
					
						
							| 
									
										
										
										
											2017-05-28 21:46:48 -03:00
										 |  |  | 						return err; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 					} | 
					
						
							| 
									
										
										
										
											2019-02-12 21:10:08 +01:00
										 |  |  | 					if (token2.type != TK_COLON) { | 
					
						
							| 
									
										
										
										
											2017-05-28 21:46:48 -03:00
										 |  |  | 						r_err_str = "Expected ':'"; | 
					
						
							|  |  |  | 						return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 					at_key = false; | 
					
						
							|  |  |  | 				} else { | 
					
						
							| 
									
										
										
										
											2019-02-12 21:10:08 +01:00
										 |  |  | 					Error err = get_token(p_stream, token2, line, r_err_str); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 					if (err != OK) { | 
					
						
							| 
									
										
										
										
											2017-05-28 21:46:48 -03:00
										 |  |  | 						return err; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 					} | 
					
						
							| 
									
										
										
										
											2017-05-28 21:46:48 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 					Variant v; | 
					
						
							| 
									
										
										
										
											2019-02-12 21:10:08 +01:00
										 |  |  | 					err = parse_value(token2, v, p_stream, line, r_err_str, p_res_parser); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 					if (err) { | 
					
						
							| 
									
										
										
										
											2017-05-28 21:46:48 -03:00
										 |  |  | 						return err; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 					} | 
					
						
							| 
									
										
										
										
											2017-05-28 21:46:48 -03:00
										 |  |  | 					obj->set(key, v); | 
					
						
							|  |  |  | 					need_comma = true; | 
					
						
							|  |  |  | 					at_key = true; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		} 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 '('"; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			if (p_res_parser && id == "Resource" && p_res_parser->func) { | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 				RES res; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				Error err = p_res_parser->func(p_res_parser->userdata, p_stream, res, line, r_err_str); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 				if (err) { | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 					return err; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				value = res; | 
					
						
							|  |  |  | 			} else if (p_res_parser && id == "ExtResource" && p_res_parser->ext_func) { | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 				RES res; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				Error err = p_res_parser->ext_func(p_res_parser->userdata, p_stream, res, line, r_err_str); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 				if (err) { | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 					return err; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				value = res; | 
					
						
							|  |  |  | 			} else if (p_res_parser && id == "SubResource" && p_res_parser->sub_func) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				RES res; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				Error err = p_res_parser->sub_func(p_res_parser->userdata, p_stream, res, line, r_err_str); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 				if (err) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 					return err; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				value = res; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				get_token(p_stream, token, line, r_err_str); | 
					
						
							|  |  |  | 				if (token.type == TK_STRING) { | 
					
						
							|  |  |  | 					String path = token.value; | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 					RES res = ResourceLoader::load(path); | 
					
						
							|  |  |  | 					if (res.is_null()) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 						r_err_str = "Can't load resource at path: '" + path + "'."; | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 						return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 					get_token(p_stream, token, line, r_err_str); | 
					
						
							|  |  |  | 					if (token.type != TK_PARENTHESIS_CLOSE) { | 
					
						
							|  |  |  | 						r_err_str = "Expected ')'"; | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 						return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 					value = res; | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 				} else { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 					r_err_str = "Expected string as argument for Resource()."; | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 					return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | #ifndef DISABLE_DEPRECATED
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		} else if (id == "InputEvent") { | 
					
						
							|  |  |  | 			get_token(p_stream, token, line, r_err_str); | 
					
						
							|  |  |  | 			if (token.type != TK_PARENTHESIS_OPEN) { | 
					
						
							|  |  |  | 				r_err_str = "Expected '('"; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			get_token(p_stream, token, line, r_err_str); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			if (token.type != TK_IDENTIFIER) { | 
					
						
							|  |  |  | 				r_err_str = "Expected identifier"; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-12 21:10:08 +01:00
										 |  |  | 			String id2 = token.value; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 			Ref<InputEvent> ie; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-12 21:10:08 +01:00
										 |  |  | 			if (id2 == "NONE") { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				get_token(p_stream, token, line, r_err_str); | 
					
						
							| 
									
										
										
										
											2016-10-03 02:40:53 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				if (token.type != TK_PARENTHESIS_CLOSE) { | 
					
						
							|  |  |  | 					r_err_str = "Expected ')'"; | 
					
						
							| 
									
										
										
										
											2016-10-03 02:40:53 +02:00
										 |  |  | 					return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-12 21:10:08 +01:00
										 |  |  | 			} else if (id2 == "KEY") { | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 				Ref<InputEventKey> key; | 
					
						
							|  |  |  | 				key.instance(); | 
					
						
							|  |  |  | 				ie = key; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				get_token(p_stream, token, line, r_err_str); | 
					
						
							|  |  |  | 				if (token.type != TK_COMMA) { | 
					
						
							|  |  |  | 					r_err_str = "Expected ','"; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 					return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				get_token(p_stream, token, line, r_err_str); | 
					
						
							|  |  |  | 				if (token.type == TK_IDENTIFIER) { | 
					
						
							|  |  |  | 					String name = token.value; | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 					key->set_scancode(find_keycode(name)); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				} else if (token.type == TK_NUMBER) { | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 					key->set_scancode(token.value); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				} else { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 					r_err_str = "Expected string or integer for keycode"; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 					return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				get_token(p_stream, token, line, r_err_str); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				if (token.type == TK_COMMA) { | 
					
						
							|  |  |  | 					get_token(p_stream, token, line, r_err_str); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 					if (token.type != TK_IDENTIFIER) { | 
					
						
							|  |  |  | 						r_err_str = "Expected identifier with modifier flas"; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 						return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 					String mods = token.value; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 					if (mods.findn("C") != -1) { | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 						key->set_control(true); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 					} | 
					
						
							|  |  |  | 					if (mods.findn("A") != -1) { | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 						key->set_alt(true); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 					} | 
					
						
							|  |  |  | 					if (mods.findn("S") != -1) { | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 						key->set_shift(true); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 					} | 
					
						
							|  |  |  | 					if (mods.findn("M") != -1) { | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 						key->set_metakey(true); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 					} | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 					get_token(p_stream, token, line, r_err_str); | 
					
						
							|  |  |  | 					if (token.type != TK_PARENTHESIS_CLOSE) { | 
					
						
							|  |  |  | 						r_err_str = "Expected ')'"; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 						return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				} else if (token.type != TK_PARENTHESIS_CLOSE) { | 
					
						
							|  |  |  | 					r_err_str = "Expected ')' or modifier flags."; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 					return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-12 21:10:08 +01:00
										 |  |  | 			} else if (id2 == "MBUTTON") { | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 				Ref<InputEventMouseButton> mb; | 
					
						
							|  |  |  | 				mb.instance(); | 
					
						
							|  |  |  | 				ie = mb; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				get_token(p_stream, token, line, r_err_str); | 
					
						
							|  |  |  | 				if (token.type != TK_COMMA) { | 
					
						
							|  |  |  | 					r_err_str = "Expected ','"; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 					return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				get_token(p_stream, token, line, r_err_str); | 
					
						
							|  |  |  | 				if (token.type != TK_NUMBER) { | 
					
						
							|  |  |  | 					r_err_str = "Expected button index"; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 					return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 				mb->set_button_index(token.value); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				get_token(p_stream, token, line, r_err_str); | 
					
						
							|  |  |  | 				if (token.type != TK_PARENTHESIS_CLOSE) { | 
					
						
							|  |  |  | 					r_err_str = "Expected ')'"; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 					return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-12 21:10:08 +01:00
										 |  |  | 			} else if (id2 == "JBUTTON") { | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 				Ref<InputEventJoypadButton> jb; | 
					
						
							|  |  |  | 				jb.instance(); | 
					
						
							|  |  |  | 				ie = jb; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				get_token(p_stream, token, line, r_err_str); | 
					
						
							|  |  |  | 				if (token.type != TK_COMMA) { | 
					
						
							|  |  |  | 					r_err_str = "Expected ','"; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 					return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				get_token(p_stream, token, line, r_err_str); | 
					
						
							|  |  |  | 				if (token.type != TK_NUMBER) { | 
					
						
							|  |  |  | 					r_err_str = "Expected button index"; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 					return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 				jb->set_button_index(token.value); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				get_token(p_stream, token, line, r_err_str); | 
					
						
							|  |  |  | 				if (token.type != TK_PARENTHESIS_CLOSE) { | 
					
						
							|  |  |  | 					r_err_str = "Expected ')'"; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 					return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-12 21:10:08 +01:00
										 |  |  | 			} else if (id2 == "JAXIS") { | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 				Ref<InputEventJoypadMotion> jm; | 
					
						
							|  |  |  | 				jm.instance(); | 
					
						
							|  |  |  | 				ie = jm; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				get_token(p_stream, token, line, r_err_str); | 
					
						
							|  |  |  | 				if (token.type != TK_COMMA) { | 
					
						
							|  |  |  | 					r_err_str = "Expected ','"; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 					return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				get_token(p_stream, token, line, r_err_str); | 
					
						
							|  |  |  | 				if (token.type != TK_NUMBER) { | 
					
						
							|  |  |  | 					r_err_str = "Expected axis index"; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 					return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 				jm->set_axis(token.value); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				get_token(p_stream, token, line, r_err_str); | 
					
						
							| 
									
										
										
										
											2016-01-02 09:37:16 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				if (token.type != TK_COMMA) { | 
					
						
							|  |  |  | 					r_err_str = "Expected ',' after axis index"; | 
					
						
							| 
									
										
										
										
											2016-01-02 09:37:16 -03:00
										 |  |  | 					return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				get_token(p_stream, token, line, r_err_str); | 
					
						
							|  |  |  | 				if (token.type != TK_NUMBER) { | 
					
						
							|  |  |  | 					r_err_str = "Expected axis sign"; | 
					
						
							| 
									
										
										
										
											2016-01-02 09:37:16 -03:00
										 |  |  | 					return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 				jm->set_axis_value(token.value); | 
					
						
							| 
									
										
										
										
											2016-01-02 09:37:16 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				get_token(p_stream, token, line, r_err_str); | 
					
						
							| 
									
										
										
										
											2016-01-02 09:37:16 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				if (token.type != TK_PARENTHESIS_CLOSE) { | 
					
						
							|  |  |  | 					r_err_str = "Expected ')' for jaxis"; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 					return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				r_err_str = "Invalid input event type."; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			value = ie; | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		} else if (id == "PoolByteArray" || id == "ByteArray") { | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 			Vector<uint8_t> args; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			Error err = _parse_construct<uint8_t>(p_stream, args, line, r_err_str); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			if (err) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				return err; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-07 18:25:37 -03:00
										 |  |  | 			PoolVector<uint8_t> arr; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				int len = args.size(); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				arr.resize(len); | 
					
						
							| 
									
										
										
										
											2017-01-07 18:25:37 -03:00
										 |  |  | 				PoolVector<uint8_t>::Write w = arr.write(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				for (int i = 0; i < len; i++) { | 
					
						
							|  |  |  | 					w[i] = args[i]; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			value = arr; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		} else if (id == "PoolIntArray" || id == "IntArray") { | 
					
						
							| 
									
										
										
										
											2016-10-06 16:36:05 -04:00
										 |  |  | 			Vector<int> args; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			Error err = _parse_construct<int>(p_stream, args, line, r_err_str); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			if (err) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				return err; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-07 18:25:37 -03:00
										 |  |  | 			PoolVector<int> arr; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				int len = args.size(); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				arr.resize(len); | 
					
						
							| 
									
										
										
										
											2017-01-07 18:25:37 -03:00
										 |  |  | 				PoolVector<int>::Write w = arr.write(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				for (int i = 0; i < len; i++) { | 
					
						
							|  |  |  | 					w[i] = int(args[i]); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			value = arr; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-20 12:51:15 +03:00
										 |  |  | 		} else if (id == "PoolRealArray" || id == "FloatArray") { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			Vector<float> args; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			Error err = _parse_construct<float>(p_stream, args, line, r_err_str); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			if (err) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				return err; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-07 18:25:37 -03:00
										 |  |  | 			PoolVector<float> arr; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				int len = args.size(); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				arr.resize(len); | 
					
						
							| 
									
										
										
										
											2017-01-07 18:25:37 -03:00
										 |  |  | 				PoolVector<float>::Write w = arr.write(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				for (int i = 0; i < len; i++) { | 
					
						
							|  |  |  | 					w[i] = args[i]; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			value = arr; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		} else if (id == "PoolStringArray" || id == "StringArray") { | 
					
						
							|  |  |  | 			get_token(p_stream, token, line, r_err_str); | 
					
						
							|  |  |  | 			if (token.type != TK_PARENTHESIS_OPEN) { | 
					
						
							|  |  |  | 				r_err_str = "Expected '('"; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			Vector<String> cs; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			bool first = true; | 
					
						
							|  |  |  | 			while (true) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				if (!first) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 					get_token(p_stream, token, line, r_err_str); | 
					
						
							|  |  |  | 					if (token.type == TK_COMMA) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 						//do none
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 					} else if (token.type == TK_PARENTHESIS_CLOSE) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 						break; | 
					
						
							|  |  |  | 					} else { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 						r_err_str = "Expected ',' or ')'"; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 						return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				get_token(p_stream, token, line, r_err_str); | 
					
						
							| 
									
										
										
										
											2016-01-08 21:09:13 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				if (token.type == TK_PARENTHESIS_CLOSE) { | 
					
						
							| 
									
										
										
										
											2016-07-27 17:59:42 +03:00
										 |  |  | 					break; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				} else if (token.type != TK_STRING) { | 
					
						
							|  |  |  | 					r_err_str = "Expected string"; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 					return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				first = false; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				cs.push_back(token.value); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-07 18:25:37 -03:00
										 |  |  | 			PoolVector<String> arr; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				int len = cs.size(); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				arr.resize(len); | 
					
						
							| 
									
										
										
										
											2017-01-07 18:25:37 -03:00
										 |  |  | 				PoolVector<String>::Write w = arr.write(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				for (int i = 0; i < len; i++) { | 
					
						
							|  |  |  | 					w[i] = cs[i]; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			value = arr; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		} else if (id == "PoolVector2Array" || id == "Vector2Array") { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			Vector<float> args; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			Error err = _parse_construct<float>(p_stream, args, line, r_err_str); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			if (err) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				return err; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-07 18:25:37 -03:00
										 |  |  | 			PoolVector<Vector2> arr; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				int len = args.size() / 2; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				arr.resize(len); | 
					
						
							| 
									
										
										
										
											2017-01-07 18:25:37 -03:00
										 |  |  | 				PoolVector<Vector2>::Write w = arr.write(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				for (int i = 0; i < len; i++) { | 
					
						
							|  |  |  | 					w[i] = Vector2(args[i * 2 + 0], args[i * 2 + 1]); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			value = arr; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		} else if (id == "PoolVector3Array" || id == "Vector3Array") { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			Vector<float> args; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			Error err = _parse_construct<float>(p_stream, args, line, r_err_str); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			if (err) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				return err; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-07 18:25:37 -03:00
										 |  |  | 			PoolVector<Vector3> arr; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				int len = args.size() / 3; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				arr.resize(len); | 
					
						
							| 
									
										
										
										
											2017-01-07 18:25:37 -03:00
										 |  |  | 				PoolVector<Vector3>::Write w = arr.write(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				for (int i = 0; i < len; i++) { | 
					
						
							|  |  |  | 					w[i] = Vector3(args[i * 3 + 0], args[i * 3 + 1], args[i * 3 + 2]); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			value = arr; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		} else if (id == "PoolColorArray" || id == "ColorArray") { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			Vector<float> args; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			Error err = _parse_construct<float>(p_stream, args, line, r_err_str); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			if (err) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				return err; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-07 18:25:37 -03:00
										 |  |  | 			PoolVector<Color> arr; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				int len = args.size() / 4; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				arr.resize(len); | 
					
						
							| 
									
										
										
										
											2017-01-07 18:25:37 -03:00
										 |  |  | 				PoolVector<Color>::Write w = arr.write(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				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]); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			value = arr; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			r_err_str = "Unexpected identifier: '" + id + "'."; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-08 11:36:41 +02:00
										 |  |  | 		// All above branches end up here unless they had an early return.
 | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 		return OK; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	} else if (token.type == TK_NUMBER) { | 
					
						
							|  |  |  | 		value = token.value; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 		return OK; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	} else if (token.type == TK_STRING) { | 
					
						
							|  |  |  | 		value = token.value; | 
					
						
							| 
									
										
										
										
											2015-12-31 14:30:50 -03:00
										 |  |  | 		return OK; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	} else if (token.type == TK_COLOR) { | 
					
						
							|  |  |  | 		value = token.value; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 		return OK; | 
					
						
							|  |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		r_err_str = "Expected value, got " + String(tk_name[token.type]) + "."; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 		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; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	bool need_comma = false; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	while (true) { | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 		if (p_stream->is_eof()) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			r_err_str = "Unexpected End of File while parsing array"; | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 			return ERR_FILE_CORRUPT; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		Error err = get_token(p_stream, token, line, r_err_str); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 		if (err != OK) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			return err; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		if (token.type == TK_BRACKET_CLOSE) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			return OK; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (need_comma) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			if (token.type != TK_COMMA) { | 
					
						
							|  |  |  | 				r_err_str = "Expected ','"; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				need_comma = false; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				continue; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		Variant v; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		err = parse_value(token, v, p_stream, line, r_err_str, p_res_parser); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 		if (err) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			return err; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		array.push_back(v); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		need_comma = true; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Error VariantParser::_parse_dictionary(Dictionary &object, Stream *p_stream, int &line, String &r_err_str, ResourceParser *p_res_parser) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	bool at_key = true; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 	Variant key; | 
					
						
							|  |  |  | 	Token token; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	bool need_comma = false; | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	while (true) { | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 		if (p_stream->is_eof()) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			r_err_str = "Unexpected End of File while parsing dictionary"; | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 			return ERR_FILE_CORRUPT; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (at_key) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			Error err = get_token(p_stream, token, line, r_err_str); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			if (err != OK) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				return err; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			if (token.type == TK_CURLY_BRACKET_CLOSE) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				return OK; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (need_comma) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				if (token.type != TK_COMMA) { | 
					
						
							|  |  |  | 					r_err_str = "Expected '}' or ','"; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 					return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 				} else { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 					need_comma = false; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 					continue; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			err = parse_value(token, key, p_stream, line, r_err_str, p_res_parser); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			if (err) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				return err; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			err = get_token(p_stream, token, line, r_err_str); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			if (err != OK) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				return err; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			if (token.type != TK_COLON) { | 
					
						
							|  |  |  | 				r_err_str = "Expected ':'"; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			at_key = false; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			Error err = get_token(p_stream, token, line, r_err_str); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			if (err != OK) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				return err; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			Variant v; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			err = parse_value(token, v, p_stream, line, r_err_str, p_res_parser); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			if (err) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 				return err; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			object[key] = v; | 
					
						
							|  |  |  | 			need_comma = true; | 
					
						
							|  |  |  | 			at_key = true; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 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) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 	r_tag.fields.clear(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	if (token.type != TK_BRACKET_OPEN) { | 
					
						
							|  |  |  | 		r_err_str = "Expected '['"; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 		return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-08 19:00:45 -03:00
										 |  |  | 	if (p_simple_tag) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		r_tag.name = ""; | 
					
						
							| 
									
										
										
										
											2016-01-08 19:00:45 -03:00
										 |  |  | 		r_tag.fields.clear(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-05 15:46:10 +03:00
										 |  |  | 		if (p_stream->is_utf8()) { | 
					
						
							|  |  |  | 			CharString cs; | 
					
						
							|  |  |  | 			while (true) { | 
					
						
							|  |  |  | 				CharType 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 == ']') { | 
					
						
							|  |  |  | 					break; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				cs += c; | 
					
						
							| 
									
										
										
										
											2016-01-08 19:00:45 -03:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2021-07-05 15:46:10 +03:00
										 |  |  | 			r_tag.name.parse_utf8(cs.get_data(), cs.length()); | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			while (true) { | 
					
						
							|  |  |  | 				CharType 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 == ']') { | 
					
						
							|  |  |  | 					break; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				r_tag.name += String::chr(c); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2016-01-08 19:00:45 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		r_tag.name = r_tag.name.strip_edges(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		return OK; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	get_token(p_stream, token, line, r_err_str); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	if (token.type != TK_IDENTIFIER) { | 
					
						
							|  |  |  | 		r_err_str = "Expected identifier (tag name)"; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 		return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	r_tag.name = token.value; | 
					
						
							|  |  |  | 	bool parsing_tag = true; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	while (true) { | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 		if (p_stream->is_eof()) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			r_err_str = "Unexpected End of File while parsing tag: " + r_tag.name; | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 			return ERR_FILE_CORRUPT; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		get_token(p_stream, token, line, r_err_str); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 		if (token.type == TK_BRACKET_CLOSE) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		if (parsing_tag && token.type == TK_PERIOD) { | 
					
						
							| 
									
										
										
										
											2018-09-12 21:38:39 -04:00
										 |  |  | 			r_tag.name += "."; //support tags such as [someprop.Android] for specific platforms
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			get_token(p_stream, token, line, r_err_str); | 
					
						
							|  |  |  | 		} else if (parsing_tag && token.type == TK_COLON) { | 
					
						
							| 
									
										
										
										
											2018-09-12 21:38:39 -04:00
										 |  |  | 			r_tag.name += ":"; //support tags such as [someprop.Android] for specific platforms
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			get_token(p_stream, token, line, r_err_str); | 
					
						
							| 
									
										
										
										
											2016-01-07 09:04:44 -03:00
										 |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			parsing_tag = false; | 
					
						
							| 
									
										
										
										
											2016-01-07 09:04:44 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		if (token.type != TK_IDENTIFIER) { | 
					
						
							|  |  |  | 			r_err_str = "Expected Identifier"; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		String id = token.value; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-07 09:04:44 -03:00
										 |  |  | 		if (parsing_tag) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			r_tag.name += id; | 
					
						
							| 
									
										
										
										
											2016-01-07 09:04:44 -03:00
										 |  |  | 			continue; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		get_token(p_stream, token, line, r_err_str); | 
					
						
							|  |  |  | 		if (token.type != TK_EQUAL) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		get_token(p_stream, token, line, r_err_str); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 		Variant value; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		Error err = parse_value(token, value, p_stream, line, r_err_str, p_res_parser); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 		if (err) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			return err; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		r_tag.fields[id] = value; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return OK; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | Error VariantParser::parse_tag(Stream *p_stream, int &line, String &r_err_str, Tag &r_tag, ResourceParser *p_res_parser, bool p_simple_tag) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 	Token token; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	get_token(p_stream, token, line, r_err_str); | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	if (token.type == TK_EOF) { | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 		return ERR_FILE_EOF; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	if (token.type != TK_BRACKET_OPEN) { | 
					
						
							|  |  |  | 		r_err_str = "Expected '['"; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 		return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	return _parse_tag(token, p_stream, line, r_err_str, r_tag, p_res_parser, p_simple_tag); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 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) { | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 	//assign..
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	r_assign = ""; | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 	String what; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	while (true) { | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 		CharType c; | 
					
						
							|  |  |  | 		if (p_stream->saved) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			c = p_stream->saved; | 
					
						
							|  |  |  | 			p_stream->saved = 0; | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			c = p_stream->get_char(); | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 		if (p_stream->is_eof()) { | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 			return ERR_FILE_EOF; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		if (c == ';') { //comment
 | 
					
						
							|  |  |  | 			while (true) { | 
					
						
							|  |  |  | 				CharType ch = p_stream->get_char(); | 
					
						
							| 
									
										
										
										
											2015-12-31 10:25:21 -03:00
										 |  |  | 				if (p_stream->is_eof()) { | 
					
						
							|  |  |  | 					return ERR_FILE_EOF; | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 				if (ch == '\n') { | 
					
						
							| 
									
										
										
										
											2015-12-31 10:25:21 -03:00
										 |  |  | 					break; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2015-12-31 10:25:21 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		if (c == '[' && what.length() == 0) { | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 			//it's a tag!
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			p_stream->saved = '['; //go back one
 | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			Error err = parse_tag(p_stream, line, r_err_str, r_tag, p_res_parser, p_simple_tag); | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			return err; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		if (c > 32) { | 
					
						
							|  |  |  | 			if (c == '"') { //quoted
 | 
					
						
							|  |  |  | 				p_stream->saved = '"'; | 
					
						
							| 
									
										
										
										
											2016-06-20 18:41:59 -03:00
										 |  |  | 				Token tk; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				Error err = get_token(p_stream, tk, line, r_err_str); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 				if (err) { | 
					
						
							| 
									
										
										
										
											2016-06-20 18:41:59 -03:00
										 |  |  | 					return err; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				if (tk.type != TK_STRING) { | 
					
						
							|  |  |  | 					r_err_str = "Error reading quoted string"; | 
					
						
							| 
									
										
										
										
											2019-09-22 18:45:08 +02:00
										 |  |  | 					return ERR_INVALID_DATA; | 
					
						
							| 
									
										
										
										
											2016-06-20 18:41:59 -03:00
										 |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				what = tk.value; | 
					
						
							| 
									
										
										
										
											2016-06-20 18:41:59 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			} else if (c != '=') { | 
					
						
							|  |  |  | 				what += String::chr(c); | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				r_assign = what; | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 				Token token; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				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); | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 				return err; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		} else if (c == '\n') { | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 			line++; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | Error VariantParser::parse(Stream *p_stream, Variant &r_ret, String &r_err_str, int &r_err_line, ResourceParser *p_res_parser) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 	Token token; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	Error err = get_token(p_stream, token, r_err_line, r_err_str); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 	if (err) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 		return err; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	if (token.type == TK_EOF) { | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 		return ERR_FILE_EOF; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	return parse_value(token, r_ret, p_stream, r_err_line, r_err_str, p_res_parser); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | //////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | //////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							| 
									
										
										
										
											2020-07-23 10:12:19 +05:30
										 |  |  | //////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-23 10:12:19 +05:30
										 |  |  | static String rtos_fix(double p_value) { | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 	if (p_value == 0.0) { | 
					
						
							| 
									
										
										
										
											2016-06-13 10:58:32 -03:00
										 |  |  | 		return "0"; //avoid negative zero (-0) being written, which may annoy git, svn, etc. for changes when they don't exist.
 | 
					
						
							| 
									
										
										
										
											2020-07-23 10:12:19 +05:30
										 |  |  | 	} else if (isnan(p_value)) { | 
					
						
							|  |  |  | 		return "nan"; | 
					
						
							|  |  |  | 	} else if (isinf(p_value)) { | 
					
						
							|  |  |  | 		if (p_value > 0) { | 
					
						
							|  |  |  | 			return "inf"; | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			return "inf_neg"; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2016-06-13 10:16:43 -03:00
										 |  |  | 		return rtoss(p_value); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-06-13 10:16:43 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 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) { | 
					
						
							|  |  |  | 	switch (p_variant.get_type()) { | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 		case Variant::NIL: { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			p_store_string_func(p_store_string_ud, "null"); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 		} break; | 
					
						
							|  |  |  | 		case Variant::BOOL: { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			p_store_string_func(p_store_string_ud, p_variant.operator bool() ? "true" : "false"); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 		} break; | 
					
						
							|  |  |  | 		case Variant::INT: { | 
					
						
							| 
									
										
										
										
											2019-02-21 11:21:41 +01:00
										 |  |  | 			p_store_string_func(p_store_string_ud, itos(p_variant.operator int64_t())); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 		} break; | 
					
						
							|  |  |  | 		case Variant::REAL: { | 
					
						
							| 
									
										
										
										
											2020-07-23 10:12:19 +05:30
										 |  |  | 			String s = rtos_fix(p_variant.operator real_t()); | 
					
						
							|  |  |  | 			if (s != "inf" && s != "inf_neg" && s != "nan") { | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 				if (s.find(".") == -1 && s.find("e") == -1) { | 
					
						
							| 
									
										
										
										
											2020-02-09 00:46:13 -05:00
										 |  |  | 					s += ".0"; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2020-02-09 00:46:13 -05:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			p_store_string_func(p_store_string_ud, s); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 		} break; | 
					
						
							|  |  |  | 		case Variant::STRING: { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			String str = p_variant; | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			str = "\"" + str.c_escape_multiline() + "\""; | 
					
						
							|  |  |  | 			p_store_string_func(p_store_string_ud, str); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 		} break; | 
					
						
							|  |  |  | 		case Variant::VECTOR2: { | 
					
						
							|  |  |  | 			Vector2 v = p_variant; | 
					
						
							| 
									
										
										
										
											2020-07-23 10:12:19 +05:30
										 |  |  | 			p_store_string_func(p_store_string_ud, "Vector2( " + rtos_fix(v.x) + ", " + rtos_fix(v.y) + " )"); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 		} break; | 
					
						
							|  |  |  | 		case Variant::RECT2: { | 
					
						
							|  |  |  | 			Rect2 aabb = p_variant; | 
					
						
							| 
									
										
										
										
											2020-07-23 10:12:19 +05:30
										 |  |  | 			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) + " )"); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 		case Variant::VECTOR3: { | 
					
						
							|  |  |  | 			Vector3 v = p_variant; | 
					
						
							| 
									
										
										
										
											2020-07-23 10:12:19 +05:30
										 |  |  | 			p_store_string_func(p_store_string_ud, "Vector3( " + rtos_fix(v.x) + ", " + rtos_fix(v.y) + ", " + rtos_fix(v.z) + " )"); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 		} break; | 
					
						
							|  |  |  | 		case Variant::PLANE: { | 
					
						
							|  |  |  | 			Plane p = p_variant; | 
					
						
							| 
									
										
										
										
											2020-07-23 10:12:19 +05:30
										 |  |  | 			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) + " )"); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		} break; | 
					
						
							| 
									
										
										
										
											2017-11-16 21:09:00 -05:00
										 |  |  | 		case Variant::AABB: { | 
					
						
							|  |  |  | 			AABB aabb = p_variant; | 
					
						
							| 
									
										
										
										
											2020-07-23 10:12:19 +05:30
										 |  |  | 			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) + " )"); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 		case Variant::QUAT: { | 
					
						
							|  |  |  | 			Quat quat = p_variant; | 
					
						
							| 
									
										
										
										
											2020-07-23 10:12:19 +05:30
										 |  |  | 			p_store_string_func(p_store_string_ud, "Quat( " + rtos_fix(quat.x) + ", " + rtos_fix(quat.y) + ", " + rtos_fix(quat.z) + ", " + rtos_fix(quat.w) + " )"); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		} break; | 
					
						
							| 
									
										
										
										
											2017-01-11 00:52:51 -03:00
										 |  |  | 		case Variant::TRANSFORM2D: { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			String s = "Transform2D( "; | 
					
						
							| 
									
										
										
										
											2017-01-11 00:52:51 -03:00
										 |  |  | 			Transform2D m3 = p_variant; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			for (int i = 0; i < 3; i++) { | 
					
						
							|  |  |  | 				for (int j = 0; j < 2; j++) { | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 					if (i != 0 || j != 0) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 						s += ", "; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 					} | 
					
						
							| 
									
										
										
										
											2020-07-23 10:12:19 +05:30
										 |  |  | 					s += rtos_fix(m3.elements[i][j]); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			p_store_string_func(p_store_string_ud, s + " )"); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		} break; | 
					
						
							| 
									
										
										
										
											2017-01-11 00:52:51 -03:00
										 |  |  | 		case Variant::BASIS: { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			String s = "Basis( "; | 
					
						
							| 
									
										
										
										
											2017-01-11 00:52:51 -03:00
										 |  |  | 			Basis m3 = p_variant; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			for (int i = 0; i < 3; i++) { | 
					
						
							|  |  |  | 				for (int j = 0; j < 3; j++) { | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 					if (i != 0 || j != 0) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 						s += ", "; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 					} | 
					
						
							| 
									
										
										
										
											2020-07-23 10:12:19 +05:30
										 |  |  | 					s += rtos_fix(m3.elements[i][j]); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			p_store_string_func(p_store_string_ud, s + " )"); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 		case Variant::TRANSFORM: { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			String s = "Transform( "; | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 			Transform t = p_variant; | 
					
						
							| 
									
										
										
										
											2017-01-11 00:52:51 -03:00
										 |  |  | 			Basis &m3 = t.basis; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			for (int i = 0; i < 3; i++) { | 
					
						
							|  |  |  | 				for (int j = 0; j < 3; j++) { | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 					if (i != 0 || j != 0) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 						s += ", "; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 					} | 
					
						
							| 
									
										
										
										
											2020-07-23 10:12:19 +05:30
										 |  |  | 					s += rtos_fix(m3.elements[i][j]); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-23 10:12:19 +05:30
										 |  |  | 			s = s + ", " + rtos_fix(t.origin.x) + ", " + rtos_fix(t.origin.y) + ", " + rtos_fix(t.origin.z); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			p_store_string_func(p_store_string_ud, s + " )"); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 		} break; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		// misc types
 | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 		case Variant::COLOR: { | 
					
						
							|  |  |  | 			Color c = p_variant; | 
					
						
							| 
									
										
										
										
											2020-07-23 10:12:19 +05:30
										 |  |  | 			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) + " )"); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 		case Variant::NODE_PATH: { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			String str = p_variant; | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			str = "NodePath(\"" + str.c_escape() + "\")"; | 
					
						
							|  |  |  | 			p_store_string_func(p_store_string_ud, str); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		case Variant::OBJECT: { | 
					
						
							| 
									
										
										
										
											2017-05-28 21:46:48 -03:00
										 |  |  | 			Object *obj = p_variant; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (!obj) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				p_store_string_func(p_store_string_ud, "null"); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 				break; // don't save it
 | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-28 21:46:48 -03:00
										 |  |  | 			RES res = p_variant; | 
					
						
							|  |  |  | 			if (res.is_valid()) { | 
					
						
							|  |  |  | 				//is resource
 | 
					
						
							|  |  |  | 				String res_text; | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-28 21:46:48 -03:00
										 |  |  | 				//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 == String() && res->get_path().is_resource_file()) { | 
					
						
							|  |  |  | 					//external resource
 | 
					
						
							|  |  |  | 					String path = res->get_path(); | 
					
						
							|  |  |  | 					res_text = "Resource( \"" + path + "\")"; | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-28 21:46:48 -03:00
										 |  |  | 				//could come up with some sort of text
 | 
					
						
							|  |  |  | 				if (res_text != String()) { | 
					
						
							|  |  |  | 					p_store_string_func(p_store_string_ud, res_text); | 
					
						
							|  |  |  | 					break; | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-28 21:46:48 -03:00
										 |  |  | 			//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 (List<PropertyInfo>::Element *E = props.front(); E; E = E->next()) { | 
					
						
							|  |  |  | 				if (E->get().usage & PROPERTY_USAGE_STORAGE || E->get().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->get().name + "\":"); | 
					
						
							|  |  |  | 					write(obj->get(E->get().name), p_store_string_func, p_store_string_ud, p_encode_res_func, p_encode_res_ud); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-28 21:46:48 -03:00
										 |  |  | 			p_store_string_func(p_store_string_ud, ")\n"); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		} break; | 
					
						
							| 
									
										
										
										
											2016-06-04 21:31:29 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 		case Variant::DICTIONARY: { | 
					
						
							|  |  |  | 			Dictionary dict = p_variant; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			List<Variant> keys; | 
					
						
							|  |  |  | 			dict.get_key_list(&keys); | 
					
						
							|  |  |  | 			keys.sort(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			p_store_string_func(p_store_string_ud, "{\n"); | 
					
						
							|  |  |  | 			for (List<Variant>::Element *E = keys.front(); E; E = E->next()) { | 
					
						
							| 
									
										
										
										
											2017-01-14 12:26:56 +01:00
										 |  |  | 				/*
 | 
					
						
							|  |  |  | 				if (!_check_type(dict[E->get()])) | 
					
						
							|  |  |  | 					continue; | 
					
						
							|  |  |  | 				*/ | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				write(E->get(), p_store_string_func, p_store_string_ud, p_encode_res_func, p_encode_res_ud); | 
					
						
							|  |  |  | 				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); | 
					
						
							| 
									
										
										
										
											2020-09-24 13:23:06 +02:00
										 |  |  | 				if (E->next()) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 					p_store_string_func(p_store_string_ud, ",\n"); | 
					
						
							| 
									
										
										
										
											2020-09-24 13:23:06 +02:00
										 |  |  | 				} else { | 
					
						
							|  |  |  | 					p_store_string_func(p_store_string_ud, "\n"); | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-24 13:23:06 +02:00
										 |  |  | 			p_store_string_func(p_store_string_ud, "}"); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 		case Variant::ARRAY: { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			p_store_string_func(p_store_string_ud, "[ "); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 			Array array = p_variant; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			int len = array.size(); | 
					
						
							|  |  |  | 			for (int i = 0; i < len; i++) { | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 				if (i > 0) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 					p_store_string_func(p_store_string_ud, ", "); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				write(array[i], p_store_string_func, p_store_string_ud, p_encode_res_func, p_encode_res_ud); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			p_store_string_func(p_store_string_ud, " ]"); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-11 00:52:51 -03:00
										 |  |  | 		case Variant::POOL_BYTE_ARRAY: { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			p_store_string_func(p_store_string_ud, "PoolByteArray( "); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 			String s; | 
					
						
							| 
									
										
										
										
											2017-01-07 18:25:37 -03:00
										 |  |  | 			PoolVector<uint8_t> data = p_variant; | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 			int len = data.size(); | 
					
						
							| 
									
										
										
										
											2017-01-07 18:25:37 -03:00
										 |  |  | 			PoolVector<uint8_t>::Read r = data.read(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			const uint8_t *ptr = r.ptr(); | 
					
						
							|  |  |  | 			for (int i = 0; i < len; i++) { | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 				if (i > 0) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 					p_store_string_func(p_store_string_ud, ", "); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				p_store_string_func(p_store_string_ud, itos(ptr[i])); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			p_store_string_func(p_store_string_ud, " )"); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		} break; | 
					
						
							| 
									
										
										
										
											2017-01-11 00:52:51 -03:00
										 |  |  | 		case Variant::POOL_INT_ARRAY: { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			p_store_string_func(p_store_string_ud, "PoolIntArray( "); | 
					
						
							| 
									
										
										
										
											2017-01-07 18:25:37 -03:00
										 |  |  | 			PoolVector<int> data = p_variant; | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 			int len = data.size(); | 
					
						
							| 
									
										
										
										
											2017-01-07 18:25:37 -03:00
										 |  |  | 			PoolVector<int>::Read r = data.read(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			const int *ptr = r.ptr(); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			for (int i = 0; i < len; i++) { | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 				if (i > 0) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 					p_store_string_func(p_store_string_ud, ", "); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				p_store_string_func(p_store_string_ud, itos(ptr[i])); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			p_store_string_func(p_store_string_ud, " )"); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		} break; | 
					
						
							| 
									
										
										
										
											2017-01-11 00:52:51 -03:00
										 |  |  | 		case Variant::POOL_REAL_ARRAY: { | 
					
						
							| 
									
										
										
										
											2017-07-20 12:51:15 +03:00
										 |  |  | 			p_store_string_func(p_store_string_ud, "PoolRealArray( "); | 
					
						
							| 
									
										
										
										
											2017-01-07 18:25:37 -03:00
										 |  |  | 			PoolVector<real_t> data = p_variant; | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 			int len = data.size(); | 
					
						
							| 
									
										
										
										
											2017-01-07 18:25:37 -03:00
										 |  |  | 			PoolVector<real_t>::Read r = data.read(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			const real_t *ptr = r.ptr(); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			for (int i = 0; i < len; i++) { | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 				if (i > 0) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 					p_store_string_func(p_store_string_ud, ", "); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2020-07-23 10:12:19 +05:30
										 |  |  | 				p_store_string_func(p_store_string_ud, rtos_fix(ptr[i])); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			p_store_string_func(p_store_string_ud, " )"); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		} break; | 
					
						
							| 
									
										
										
										
											2017-01-11 00:52:51 -03:00
										 |  |  | 		case Variant::POOL_STRING_ARRAY: { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			p_store_string_func(p_store_string_ud, "PoolStringArray( "); | 
					
						
							| 
									
										
										
										
											2017-01-07 18:25:37 -03:00
										 |  |  | 			PoolVector<String> data = p_variant; | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 			int len = data.size(); | 
					
						
							| 
									
										
										
										
											2017-01-07 18:25:37 -03:00
										 |  |  | 			PoolVector<String>::Read r = data.read(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			const String *ptr = r.ptr(); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 			String s; | 
					
						
							|  |  |  | 			//write_string("\n");
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			for (int i = 0; i < len; i++) { | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 				if (i > 0) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 					p_store_string_func(p_store_string_ud, ", "); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				String str = ptr[i]; | 
					
						
							|  |  |  | 				p_store_string_func(p_store_string_ud, "\"" + str.c_escape() + "\""); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			p_store_string_func(p_store_string_ud, " )"); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		} break; | 
					
						
							| 
									
										
										
										
											2017-01-11 00:52:51 -03:00
										 |  |  | 		case Variant::POOL_VECTOR2_ARRAY: { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			p_store_string_func(p_store_string_ud, "PoolVector2Array( "); | 
					
						
							| 
									
										
										
										
											2017-01-07 18:25:37 -03:00
										 |  |  | 			PoolVector<Vector2> data = p_variant; | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 			int len = data.size(); | 
					
						
							| 
									
										
										
										
											2017-01-07 18:25:37 -03:00
										 |  |  | 			PoolVector<Vector2>::Read r = data.read(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			const Vector2 *ptr = r.ptr(); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			for (int i = 0; i < len; i++) { | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 				if (i > 0) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 					p_store_string_func(p_store_string_ud, ", "); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2020-07-23 10:12:19 +05:30
										 |  |  | 				p_store_string_func(p_store_string_ud, rtos_fix(ptr[i].x) + ", " + rtos_fix(ptr[i].y)); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			p_store_string_func(p_store_string_ud, " )"); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		} break; | 
					
						
							| 
									
										
										
										
											2017-01-11 00:52:51 -03:00
										 |  |  | 		case Variant::POOL_VECTOR3_ARRAY: { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			p_store_string_func(p_store_string_ud, "PoolVector3Array( "); | 
					
						
							| 
									
										
										
										
											2017-01-07 18:25:37 -03:00
										 |  |  | 			PoolVector<Vector3> data = p_variant; | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 			int len = data.size(); | 
					
						
							| 
									
										
										
										
											2017-01-07 18:25:37 -03:00
										 |  |  | 			PoolVector<Vector3>::Read r = data.read(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			const Vector3 *ptr = r.ptr(); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			for (int i = 0; i < len; i++) { | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 				if (i > 0) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 					p_store_string_func(p_store_string_ud, ", "); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2020-07-23 10:12:19 +05:30
										 |  |  | 				p_store_string_func(p_store_string_ud, rtos_fix(ptr[i].x) + ", " + rtos_fix(ptr[i].y) + ", " + rtos_fix(ptr[i].z)); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			p_store_string_func(p_store_string_ud, " )"); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		} break; | 
					
						
							| 
									
										
										
										
											2017-01-11 00:52:51 -03:00
										 |  |  | 		case Variant::POOL_COLOR_ARRAY: { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			p_store_string_func(p_store_string_ud, "PoolColorArray( "); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-07 18:25:37 -03:00
										 |  |  | 			PoolVector<Color> data = p_variant; | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 			int len = data.size(); | 
					
						
							| 
									
										
										
										
											2017-01-07 18:25:37 -03:00
										 |  |  | 			PoolVector<Color>::Read r = data.read(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			const Color *ptr = r.ptr(); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			for (int i = 0; i < len; i++) { | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 				if (i > 0) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 					p_store_string_func(p_store_string_ud, ", "); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-23 10:12:19 +05:30
										 |  |  | 				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)); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			p_store_string_func(p_store_string_ud, " )"); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		} break; | 
					
						
							| 
									
										
										
										
											2019-04-09 17:08:36 +02:00
										 |  |  | 		default: { | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return OK; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | static Error _write_to_str(void *ud, const String &p_string) { | 
					
						
							|  |  |  | 	String *str = (String *)ud; | 
					
						
							|  |  |  | 	(*str) += p_string; | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 	return OK; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | Error VariantWriter::write_to_string(const Variant &p_variant, String &r_string, EncodeResourceFunc p_encode_res_func, void *p_encode_res_ud) { | 
					
						
							|  |  |  | 	r_string = String(); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	return write(p_variant, _write_to_str, &r_string, p_encode_res_func, p_encode_res_ud); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | } |