| 
									
										
										
										
											2016-06-18 14:46:12 +02:00
										 |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2019-02-12 17:18:13 +01:00
										 |  |  | /*  resource_format_text.cpp                                             */ | 
					
						
							| 
									
										
										
										
											2016-06-18 14:46:12 +02:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-12 17:18:13 +01:00
										 |  |  | #include "resource_format_text.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-15 08:38:24 -03:00
										 |  |  | #include "core/io/resource_format_binary.h"
 | 
					
						
							| 
									
										
										
										
											2018-09-11 18:13:45 +02:00
										 |  |  | #include "core/os/dir_access.h"
 | 
					
						
							|  |  |  | #include "core/project_settings.h"
 | 
					
						
							|  |  |  | #include "core/version.h"
 | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-16 21:09:00 -05:00
										 |  |  | //version 2: changed names for basis, aabb, poolvectors, etc.
 | 
					
						
							| 
									
										
										
										
											2017-01-25 14:30:40 -03:00
										 |  |  | #define FORMAT_VERSION 2
 | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-11 18:13:45 +02:00
										 |  |  | #include "core/os/dir_access.h"
 | 
					
						
							|  |  |  | #include "core/version.h"
 | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | #define _printerr() ERR_PRINT(String(res_path + ":" + itos(lines) + " - Parse Error: " + error_text).utf8().get_data());
 | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | ///
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void ResourceInteractiveLoaderText::set_local_path(const String &p_local_path) { | 
					
						
							|  |  |  | 	res_path = p_local_path; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Ref<Resource> ResourceInteractiveLoaderText::get_resource() { | 
					
						
							|  |  |  | 	return resource; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-15 08:38:24 -03:00
										 |  |  | Error ResourceInteractiveLoaderText::_parse_sub_resource_dummy(DummyReadData *p_data, VariantParser::Stream *p_stream, Ref<Resource> &r_res, int &line, String &r_err_str) { | 
					
						
							|  |  |  | 	VariantParser::Token token; | 
					
						
							|  |  |  | 	VariantParser::get_token(p_stream, token, line, r_err_str); | 
					
						
							|  |  |  | 	if (token.type != VariantParser::TK_NUMBER) { | 
					
						
							|  |  |  | 		r_err_str = "Expected number (sub-resource index)"; | 
					
						
							|  |  |  | 		return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	int index = token.value; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!p_data->resource_map.has(index)) { | 
					
						
							|  |  |  | 		Ref<DummyResource> dr; | 
					
						
							|  |  |  | 		dr.instance(); | 
					
						
							|  |  |  | 		dr->set_subindex(index); | 
					
						
							|  |  |  | 		p_data->resource_map[index] = dr; | 
					
						
							|  |  |  | 		p_data->resource_set.insert(dr); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	r_res = p_data->resource_map[index]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	VariantParser::get_token(p_stream, token, line, r_err_str); | 
					
						
							|  |  |  | 	if (token.type != VariantParser::TK_PARENTHESIS_CLOSE) { | 
					
						
							|  |  |  | 		r_err_str = "Expected ')'"; | 
					
						
							|  |  |  | 		return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return OK; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Error ResourceInteractiveLoaderText::_parse_ext_resource_dummy(DummyReadData *p_data, VariantParser::Stream *p_stream, Ref<Resource> &r_res, int &line, String &r_err_str) { | 
					
						
							|  |  |  | 	VariantParser::Token token; | 
					
						
							|  |  |  | 	VariantParser::get_token(p_stream, token, line, r_err_str); | 
					
						
							|  |  |  | 	if (token.type != VariantParser::TK_NUMBER) { | 
					
						
							|  |  |  | 		r_err_str = "Expected number (sub-resource index)"; | 
					
						
							|  |  |  | 		return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	int id = token.value; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ERR_FAIL_COND_V(!p_data->rev_external_resources.has(id), ERR_PARSE_ERROR); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	r_res = p_data->rev_external_resources[id]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	VariantParser::get_token(p_stream, token, line, r_err_str); | 
					
						
							|  |  |  | 	if (token.type != VariantParser::TK_PARENTHESIS_CLOSE) { | 
					
						
							|  |  |  | 		r_err_str = "Expected ')'"; | 
					
						
							|  |  |  | 		return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return OK; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | Error ResourceInteractiveLoaderText::_parse_sub_resource(VariantParser::Stream *p_stream, Ref<Resource> &r_res, int &line, String &r_err_str) { | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 	VariantParser::Token token; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	VariantParser::get_token(p_stream, token, line, r_err_str); | 
					
						
							|  |  |  | 	if (token.type != VariantParser::TK_NUMBER) { | 
					
						
							|  |  |  | 		r_err_str = "Expected number (sub-resource index)"; | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 		return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 	int index = token.value; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 15:53:44 -07:00
										 |  |  | 	ERR_FAIL_COND_V(!int_resources.has(index), ERR_INVALID_PARAMETER); | 
					
						
							|  |  |  | 	r_res = int_resources[index]; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	VariantParser::get_token(p_stream, token, line, r_err_str); | 
					
						
							|  |  |  | 	if (token.type != VariantParser::TK_PARENTHESIS_CLOSE) { | 
					
						
							|  |  |  | 		r_err_str = "Expected ')'"; | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 		return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 	return OK; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | Error ResourceInteractiveLoaderText::_parse_ext_resource(VariantParser::Stream *p_stream, Ref<Resource> &r_res, int &line, String &r_err_str) { | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 	VariantParser::Token token; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	VariantParser::get_token(p_stream, token, line, r_err_str); | 
					
						
							|  |  |  | 	if (token.type != VariantParser::TK_NUMBER) { | 
					
						
							|  |  |  | 		r_err_str = "Expected number (sub-resource index)"; | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 		return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	int id = token.value; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-28 12:35:11 -03:00
										 |  |  | 	if (!ignore_resource_parsing) { | 
					
						
							|  |  |  | 		if (!ext_resources.has(id)) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			r_err_str = "Can't load cached ext-resource #" + itos(id); | 
					
						
							| 
									
										
										
										
											2016-06-28 12:35:11 -03:00
										 |  |  | 			return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-28 12:35:11 -03:00
										 |  |  | 		String path = ext_resources[id].path; | 
					
						
							|  |  |  | 		String type = ext_resources[id].type; | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		if (path.find("://") == -1 && path.is_rel_path()) { | 
					
						
							| 
									
										
										
										
											2016-06-28 12:35:11 -03:00
										 |  |  | 			// path is relative to file being loaded, so convert to a resource path
 | 
					
						
							| 
									
										
										
										
											2017-07-19 17:00:46 -03:00
										 |  |  | 			path = ProjectSettings::get_singleton()->localize_path(res_path.get_base_dir().plus_file(path)); | 
					
						
							| 
									
										
										
										
											2016-06-28 12:35:11 -03:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-09 23:50:45 -04:00
										 |  |  | 		r_res = ResourceLoader::load(path, type, false); | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-28 12:35:11 -03:00
										 |  |  | 		if (r_res.is_null()) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			WARN_PRINT(String("Couldn't load external resource: " + path).utf8().get_data()); | 
					
						
							| 
									
										
										
										
											2016-06-28 12:35:11 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		r_res = RES(); | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	VariantParser::get_token(p_stream, token, line, r_err_str); | 
					
						
							|  |  |  | 	if (token.type != VariantParser::TK_PARENTHESIS_CLOSE) { | 
					
						
							|  |  |  | 		r_err_str = "Expected ')'"; | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 		return ERR_PARSE_ERROR; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return OK; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-15 08:38:24 -03:00
										 |  |  | Ref<PackedScene> ResourceInteractiveLoaderText::_parse_node_tag(VariantParser::ResourceParser &parser) { | 
					
						
							|  |  |  | 	Ref<PackedScene> packed_scene; | 
					
						
							|  |  |  | 	packed_scene.instance(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	while (true) { | 
					
						
							|  |  |  | 		if (next_tag.name == "node") { | 
					
						
							|  |  |  | 			int parent = -1; | 
					
						
							|  |  |  | 			int owner = -1; | 
					
						
							|  |  |  | 			int type = -1; | 
					
						
							|  |  |  | 			int name = -1; | 
					
						
							|  |  |  | 			int instance = -1; | 
					
						
							| 
									
										
										
										
											2017-12-08 15:05:15 +01:00
										 |  |  | 			int index = -1; | 
					
						
							| 
									
										
										
										
											2017-12-15 08:38:24 -03:00
										 |  |  | 			//int base_scene=-1;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (next_tag.fields.has("name")) { | 
					
						
							|  |  |  | 				name = packed_scene->get_state()->add_name(next_tag.fields["name"]); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (next_tag.fields.has("parent")) { | 
					
						
							|  |  |  | 				NodePath np = next_tag.fields["parent"]; | 
					
						
							|  |  |  | 				np.prepend_period(); //compatible to how it manages paths internally
 | 
					
						
							|  |  |  | 				parent = packed_scene->get_state()->add_node_path(np); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (next_tag.fields.has("type")) { | 
					
						
							|  |  |  | 				type = packed_scene->get_state()->add_name(next_tag.fields["type"]); | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				type = SceneState::TYPE_INSTANCED; //no type? assume this was instanced
 | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (next_tag.fields.has("instance")) { | 
					
						
							|  |  |  | 				instance = packed_scene->get_state()->add_value(next_tag.fields["instance"]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				if (packed_scene->get_state()->get_node_count() == 0 && parent == -1) { | 
					
						
							|  |  |  | 					packed_scene->get_state()->set_base_scene(instance); | 
					
						
							|  |  |  | 					instance = -1; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (next_tag.fields.has("instance_placeholder")) { | 
					
						
							|  |  |  | 				String path = next_tag.fields["instance_placeholder"]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				int path_v = packed_scene->get_state()->add_value(path); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				if (packed_scene->get_state()->get_node_count() == 0) { | 
					
						
							|  |  |  | 					error = ERR_FILE_CORRUPT; | 
					
						
							|  |  |  | 					error_text = "Instance Placeholder can't be used for inheritance."; | 
					
						
							|  |  |  | 					_printerr(); | 
					
						
							|  |  |  | 					return Ref<PackedScene>(); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				instance = path_v | SceneState::FLAG_INSTANCE_IS_PLACEHOLDER; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (next_tag.fields.has("owner")) { | 
					
						
							|  |  |  | 				owner = packed_scene->get_state()->add_node_path(next_tag.fields["owner"]); | 
					
						
							|  |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 				if (parent != -1 && !(type == SceneState::TYPE_INSTANCED && instance == -1)) { | 
					
						
							| 
									
										
										
										
											2017-12-15 08:38:24 -03:00
										 |  |  | 					owner = 0; //if no owner, owner is root
 | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2017-12-15 08:38:24 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-08 15:05:15 +01:00
										 |  |  | 			if (next_tag.fields.has("index")) { | 
					
						
							|  |  |  | 				index = next_tag.fields["index"]; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			int node_id = packed_scene->get_state()->add_node(parent, owner, type, name, instance, index); | 
					
						
							| 
									
										
										
										
											2017-12-15 08:38:24 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			if (next_tag.fields.has("groups")) { | 
					
						
							|  |  |  | 				Array groups = next_tag.fields["groups"]; | 
					
						
							|  |  |  | 				for (int i = 0; i < groups.size(); i++) { | 
					
						
							|  |  |  | 					packed_scene->get_state()->add_node_group(node_id, packed_scene->get_state()->add_name(groups[i])); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			while (true) { | 
					
						
							|  |  |  | 				String assign; | 
					
						
							|  |  |  | 				Variant value; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				error = VariantParser::parse_tag_assign_eof(&stream, lines, error_text, next_tag, assign, value, &parser); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				if (error) { | 
					
						
							|  |  |  | 					if (error != ERR_FILE_EOF) { | 
					
						
							|  |  |  | 						_printerr(); | 
					
						
							|  |  |  | 						return Ref<PackedScene>(); | 
					
						
							|  |  |  | 					} else { | 
					
						
							|  |  |  | 						return packed_scene; | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				if (assign != String()) { | 
					
						
							|  |  |  | 					int nameidx = packed_scene->get_state()->add_name(assign); | 
					
						
							|  |  |  | 					int valueidx = packed_scene->get_state()->add_value(value); | 
					
						
							|  |  |  | 					packed_scene->get_state()->add_node_property(node_id, nameidx, valueidx); | 
					
						
							|  |  |  | 					//it's assignment
 | 
					
						
							|  |  |  | 				} else if (next_tag.name != String()) { | 
					
						
							|  |  |  | 					break; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} else if (next_tag.name == "connection") { | 
					
						
							|  |  |  | 			if (!next_tag.fields.has("from")) { | 
					
						
							|  |  |  | 				error = ERR_FILE_CORRUPT; | 
					
						
							| 
									
										
										
										
											2018-09-12 21:38:39 -04:00
										 |  |  | 				error_text = "missing 'from' field from connection tag"; | 
					
						
							| 
									
										
										
										
											2017-12-15 08:38:24 -03:00
										 |  |  | 				return Ref<PackedScene>(); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (!next_tag.fields.has("to")) { | 
					
						
							|  |  |  | 				error = ERR_FILE_CORRUPT; | 
					
						
							| 
									
										
										
										
											2018-09-12 21:38:39 -04:00
										 |  |  | 				error_text = "missing 'to' field from connection tag"; | 
					
						
							| 
									
										
										
										
											2017-12-15 08:38:24 -03:00
										 |  |  | 				return Ref<PackedScene>(); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (!next_tag.fields.has("signal")) { | 
					
						
							|  |  |  | 				error = ERR_FILE_CORRUPT; | 
					
						
							| 
									
										
										
										
											2018-09-12 21:38:39 -04:00
										 |  |  | 				error_text = "missing 'signal' field from connection tag"; | 
					
						
							| 
									
										
										
										
											2017-12-15 08:38:24 -03:00
										 |  |  | 				return Ref<PackedScene>(); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (!next_tag.fields.has("method")) { | 
					
						
							|  |  |  | 				error = ERR_FILE_CORRUPT; | 
					
						
							| 
									
										
										
										
											2018-09-12 21:38:39 -04:00
										 |  |  | 				error_text = "missing 'method' field from connection tag"; | 
					
						
							| 
									
										
										
										
											2017-12-15 08:38:24 -03:00
										 |  |  | 				return Ref<PackedScene>(); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			NodePath from = next_tag.fields["from"]; | 
					
						
							|  |  |  | 			NodePath to = next_tag.fields["to"]; | 
					
						
							|  |  |  | 			StringName method = next_tag.fields["method"]; | 
					
						
							|  |  |  | 			StringName signal = next_tag.fields["signal"]; | 
					
						
							|  |  |  | 			int flags = CONNECT_PERSIST; | 
					
						
							|  |  |  | 			Array binds; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (next_tag.fields.has("flags")) { | 
					
						
							|  |  |  | 				flags = next_tag.fields["flags"]; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (next_tag.fields.has("binds")) { | 
					
						
							|  |  |  | 				binds = next_tag.fields["binds"]; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			Vector<int> bind_ints; | 
					
						
							|  |  |  | 			for (int i = 0; i < binds.size(); i++) { | 
					
						
							|  |  |  | 				bind_ints.push_back(packed_scene->get_state()->add_value(binds[i])); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			packed_scene->get_state()->add_connection( | 
					
						
							|  |  |  | 					packed_scene->get_state()->add_node_path(from.simplified()), | 
					
						
							|  |  |  | 					packed_scene->get_state()->add_node_path(to.simplified()), | 
					
						
							|  |  |  | 					packed_scene->get_state()->add_name(signal), | 
					
						
							|  |  |  | 					packed_scene->get_state()->add_name(method), | 
					
						
							|  |  |  | 					flags, | 
					
						
							|  |  |  | 					bind_ints); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			error = VariantParser::parse_tag(&stream, lines, error_text, next_tag, &parser); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (error) { | 
					
						
							|  |  |  | 				if (error != ERR_FILE_EOF) { | 
					
						
							|  |  |  | 					_printerr(); | 
					
						
							|  |  |  | 					return Ref<PackedScene>(); | 
					
						
							|  |  |  | 				} else { | 
					
						
							|  |  |  | 					return packed_scene; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} else if (next_tag.name == "editable") { | 
					
						
							|  |  |  | 			if (!next_tag.fields.has("path")) { | 
					
						
							|  |  |  | 				error = ERR_FILE_CORRUPT; | 
					
						
							| 
									
										
										
										
											2018-09-12 21:38:39 -04:00
										 |  |  | 				error_text = "missing 'path' field from connection tag"; | 
					
						
							| 
									
										
										
										
											2017-12-15 08:38:24 -03:00
										 |  |  | 				_printerr(); | 
					
						
							|  |  |  | 				return Ref<PackedScene>(); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			NodePath path = next_tag.fields["path"]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			packed_scene->get_state()->add_editable_instance(path.simplified()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			error = VariantParser::parse_tag(&stream, lines, error_text, next_tag, &parser); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (error) { | 
					
						
							|  |  |  | 				if (error != ERR_FILE_EOF) { | 
					
						
							|  |  |  | 					_printerr(); | 
					
						
							|  |  |  | 					return Ref<PackedScene>(); | 
					
						
							|  |  |  | 				} else { | 
					
						
							|  |  |  | 					return packed_scene; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			error = ERR_FILE_CORRUPT; | 
					
						
							|  |  |  | 			_printerr(); | 
					
						
							|  |  |  | 			return Ref<PackedScene>(); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return packed_scene; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | Error ResourceInteractiveLoaderText::poll() { | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 	if (error != OK) { | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 		return error; | 
					
						
							| 
									
										
										
										
											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 (next_tag.name == "ext_resource") { | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 		if (!next_tag.fields.has("path")) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			error = ERR_FILE_CORRUPT; | 
					
						
							|  |  |  | 			error_text = "Missing 'path' in external resource tag"; | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 			_printerr(); | 
					
						
							|  |  |  | 			return error; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (!next_tag.fields.has("type")) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			error = ERR_FILE_CORRUPT; | 
					
						
							|  |  |  | 			error_text = "Missing 'type' in external resource tag"; | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 			_printerr(); | 
					
						
							|  |  |  | 			return error; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (!next_tag.fields.has("id")) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			error = ERR_FILE_CORRUPT; | 
					
						
							|  |  |  | 			error_text = "Missing 'id' in external resource tag"; | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 			_printerr(); | 
					
						
							|  |  |  | 			return error; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		String path = next_tag.fields["path"]; | 
					
						
							|  |  |  | 		String type = next_tag.fields["type"]; | 
					
						
							|  |  |  | 		int index = next_tag.fields["id"]; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		if (path.find("://") == -1 && path.is_rel_path()) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			// path is relative to file being loaded, so convert to a resource path
 | 
					
						
							| 
									
										
										
										
											2017-07-19 17:00:46 -03:00
										 |  |  | 			path = ProjectSettings::get_singleton()->localize_path(local_path.get_base_dir().plus_file(path)); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (remaps.has(path)) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			path = remaps[path]; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-11 22:33:21 -04:00
										 |  |  | 		RES res = ResourceLoader::load(path, type, false); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (res.is_null()) { | 
					
						
							|  |  |  | 			if (ResourceLoader::get_abort_on_missing_resources()) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				error = ERR_FILE_CORRUPT; | 
					
						
							|  |  |  | 				error_text = "[ext_resource] referenced nonexistent resource at: " + path; | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 				_printerr(); | 
					
						
							|  |  |  | 				return error; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				ResourceLoader::notify_dependency_error(local_path, path, type); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2019-04-11 14:35:23 -03:00
										 |  |  | #ifdef TOOLS_ENABLED
 | 
					
						
							|  |  |  | 			//remember ID for saving
 | 
					
						
							| 
									
										
										
										
											2019-05-20 13:51:51 +02:00
										 |  |  | 			res->set_id_for_path(local_path, index); | 
					
						
							| 
									
										
										
										
											2019-04-11 14:35:23 -03:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 		ExtResource er; | 
					
						
							| 
									
										
										
										
											2021-06-16 16:07:04 -07:00
										 |  |  | 		er.cache = res; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		er.path = path; | 
					
						
							|  |  |  | 		er.type = type; | 
					
						
							|  |  |  | 		ext_resources[index] = er; | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		error = VariantParser::parse_tag(&stream, lines, error_text, next_tag, &rp); | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (error) { | 
					
						
							|  |  |  | 			_printerr(); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-29 08:41:22 -03:00
										 |  |  | 		resource_current++; | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 		return error; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	} else if (next_tag.name == "sub_resource") { | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 		if (!next_tag.fields.has("type")) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			error = ERR_FILE_CORRUPT; | 
					
						
							|  |  |  | 			error_text = "Missing 'type' in external resource tag"; | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 			_printerr(); | 
					
						
							|  |  |  | 			return error; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (!next_tag.fields.has("id")) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			error = ERR_FILE_CORRUPT; | 
					
						
							|  |  |  | 			error_text = "Missing 'index' in external resource tag"; | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 			_printerr(); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			return error; | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		String type = next_tag.fields["type"]; | 
					
						
							|  |  |  | 		int id = next_tag.fields["id"]; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		String path = local_path + "::" + itos(id); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 		Ref<Resource> res; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 15:53:44 -07:00
										 |  |  | 		bool do_assign = false; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-25 15:51:37 -04:00
										 |  |  | 		if (!no_subresource_cache && ResourceCache::has(path)) { | 
					
						
							| 
									
										
										
										
											2021-06-11 15:53:44 -07:00
										 |  |  | 			//cached, do not assign
 | 
					
						
							|  |  |  | 			Resource *r = ResourceCache::get(path); | 
					
						
							|  |  |  | 			res = Ref<Resource>(r); | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			//create
 | 
					
						
							| 
									
										
										
										
											2017-01-02 23:03:46 -03:00
										 |  |  | 			Object *obj = ClassDB::instance(type); | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 			if (!obj) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				error_text += "Can't create sub resource of type: " + type; | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 				_printerr(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				error = ERR_FILE_CORRUPT; | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 				return error; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-24 22:58:51 +02:00
										 |  |  | 			Resource *r = Object::cast_to<Resource>(obj); | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 			if (!r) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				error_text += "Can't create sub resource of type, because not a resource: " + type; | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 				_printerr(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				error = ERR_FILE_CORRUPT; | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 				return error; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			res = Ref<Resource>(r); | 
					
						
							| 
									
										
										
										
											2021-06-11 15:53:44 -07:00
										 |  |  | 			do_assign = true; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		int_resources[id] = res; //always assign int resources
 | 
					
						
							|  |  |  | 		if (do_assign) { | 
					
						
							| 
									
										
										
										
											2022-06-25 15:51:37 -04:00
										 |  |  | 			res->set_path(path, no_subresource_cache); | 
					
						
							| 
									
										
										
										
											2021-06-11 15:53:44 -07:00
										 |  |  | 			res->set_subindex(id); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-29 08:41:22 -03:00
										 |  |  | 		resource_current++; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		while (true) { | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 			String assign; | 
					
						
							|  |  |  | 			Variant value; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			error = VariantParser::parse_tag_assign_eof(&stream, lines, error_text, next_tag, assign, value, &rp); | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			if (error) { | 
					
						
							|  |  |  | 				_printerr(); | 
					
						
							|  |  |  | 				return error; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			if (assign != String()) { | 
					
						
							| 
									
										
										
										
											2021-06-11 15:53:44 -07:00
										 |  |  | 				if (do_assign) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 					res->set(assign, value); | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 				} | 
					
						
							|  |  |  | 				//it's assignment
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			} else if (next_tag.name != String()) { | 
					
						
							|  |  |  | 				error = OK; | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 				break; | 
					
						
							|  |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				error = ERR_FILE_CORRUPT; | 
					
						
							|  |  |  | 				error_text = "Premature end of file while parsing [sub_resource]"; | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 				_printerr(); | 
					
						
							|  |  |  | 				return error; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 	} else if (next_tag.name == "resource") { | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 		if (is_scene) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			error_text += "found the 'resource' tag on a scene file!"; | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 			_printerr(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			error = ERR_FILE_CORRUPT; | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 			return error; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-02 23:03:46 -03:00
										 |  |  | 		Object *obj = ClassDB::instance(res_type); | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 		if (!obj) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			error_text += "Can't create sub resource of type: " + res_type; | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 			_printerr(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			error = ERR_FILE_CORRUPT; | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 			return error; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-24 22:58:51 +02:00
										 |  |  | 		Resource *r = Object::cast_to<Resource>(obj); | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 		if (!r) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			error_text += "Can't create sub resource of type, because not a resource: " + res_type; | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 			_printerr(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			error = ERR_FILE_CORRUPT; | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 			return error; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		resource = Ref<Resource>(r); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-29 08:41:22 -03:00
										 |  |  | 		resource_current++; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		while (true) { | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 			String assign; | 
					
						
							|  |  |  | 			Variant value; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			error = VariantParser::parse_tag_assign_eof(&stream, lines, error_text, next_tag, assign, value, &rp); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 			if (error) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				if (error != ERR_FILE_EOF) { | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 					_printerr(); | 
					
						
							| 
									
										
										
										
											2016-01-14 11:06:20 -03:00
										 |  |  | 				} else { | 
					
						
							| 
									
										
										
										
											2022-06-25 15:51:37 -04:00
										 |  |  | 					if (!no_subresource_cache && !ResourceCache::has(res_path)) { | 
					
						
							| 
									
										
										
										
											2016-01-14 11:06:20 -03:00
										 |  |  | 						resource->set_path(res_path); | 
					
						
							|  |  |  | 					} | 
					
						
							| 
									
										
										
										
											2017-06-28 17:00:18 -03:00
										 |  |  | 					resource->set_as_translation_remapped(translation_remapped); | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 				} | 
					
						
							|  |  |  | 				return error; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			if (assign != String()) { | 
					
						
							|  |  |  | 				resource->set(assign, value); | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 				//it's assignment
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			} else if (next_tag.name != String()) { | 
					
						
							|  |  |  | 				error = ERR_FILE_CORRUPT; | 
					
						
							|  |  |  | 				error_text = "Extra tag found when parsing main resource file"; | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 				_printerr(); | 
					
						
							|  |  |  | 				return error; | 
					
						
							|  |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				error = ERR_FILE_EOF; | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 				return error; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 	} else if (next_tag.name == "node") { | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 		if (!is_scene) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			error_text += "found the 'node' tag on a resource file!"; | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 			_printerr(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			error = ERR_FILE_CORRUPT; | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 			return error; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-15 08:38:24 -03:00
										 |  |  | 		Ref<PackedScene> packed_scene = _parse_node_tag(rp); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 		if (!packed_scene.is_valid()) { | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 			return error; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-12 08:23:21 -03:00
										 |  |  | 		error = ERR_FILE_EOF; | 
					
						
							| 
									
										
										
										
											2017-12-15 08:38:24 -03:00
										 |  |  | 		//get it here
 | 
					
						
							|  |  |  | 		resource = packed_scene; | 
					
						
							| 
									
										
										
										
											2022-06-25 15:51:37 -04:00
										 |  |  | 		if (!no_subresource_cache && !ResourceCache::has(res_path)) { | 
					
						
							| 
									
										
										
										
											2017-12-15 08:38:24 -03:00
										 |  |  | 			packed_scene->set_path(res_path); | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-12 08:23:21 -03:00
										 |  |  | 		return error; | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		error_text += "Unknown tag in file: " + next_tag.name; | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 		_printerr(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		error = ERR_FILE_CORRUPT; | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 		return error; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return OK; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int ResourceInteractiveLoaderText::get_stage() const { | 
					
						
							|  |  |  | 	return resource_current; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | int ResourceInteractiveLoaderText::get_stage_count() const { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	return resources_total; //+ext_resources;
 | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-28 17:00:18 -03:00
										 |  |  | void ResourceInteractiveLoaderText::set_translation_remapped(bool p_remapped) { | 
					
						
							|  |  |  | 	translation_remapped = p_remapped; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-12 15:44:39 +00:00
										 |  |  | ResourceInteractiveLoaderText::ResourceInteractiveLoaderText() : | 
					
						
							|  |  |  | 		stream(false) { | 
					
						
							| 
									
										
										
										
											2017-06-28 17:00:18 -03:00
										 |  |  | 	translation_remapped = false; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | ResourceInteractiveLoaderText::~ResourceInteractiveLoaderText() { | 
					
						
							|  |  |  | 	memdelete(f); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-11 15:10:05 -04:00
										 |  |  | void ResourceInteractiveLoaderText::get_dependencies(FileAccess *p_f, List<String> *p_dependencies, bool p_add_types) { | 
					
						
							|  |  |  | 	open(p_f); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ignore_resource_parsing = true; | 
					
						
							|  |  |  | 	ERR_FAIL_COND(error != OK); | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	while (next_tag.name == "ext_resource") { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 		if (!next_tag.fields.has("type")) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			error = ERR_FILE_CORRUPT; | 
					
						
							|  |  |  | 			error_text = "Missing 'type' in external resource tag"; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			_printerr(); | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 			return; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 		if (!next_tag.fields.has("id")) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			error = ERR_FILE_CORRUPT; | 
					
						
							|  |  |  | 			error_text = "Missing 'index' in external resource tag"; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			_printerr(); | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 			return; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		String path = next_tag.fields["path"]; | 
					
						
							|  |  |  | 		String type = next_tag.fields["type"]; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		if (path.find("://") == -1 && path.is_rel_path()) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			// path is relative to file being loaded, so convert to a resource path
 | 
					
						
							| 
									
										
										
										
											2017-07-19 17:00:46 -03:00
										 |  |  | 			path = ProjectSettings::get_singleton()->localize_path(local_path.get_base_dir().plus_file(path)); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 		if (p_add_types) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			path += "::" + type; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 		p_dependencies->push_back(path); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		Error err = VariantParser::parse_tag(&stream, lines, error_text, next_tag, &rp); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (err) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			print_line(error_text + " - " + itos(lines)); | 
					
						
							|  |  |  | 			error_text = "Unexpected end of file"; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			_printerr(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			error = ERR_FILE_CORRUPT; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | Error ResourceInteractiveLoaderText::rename_dependencies(FileAccess *p_f, const String &p_path, const Map<String, String> &p_map) { | 
					
						
							|  |  |  | 	open(p_f, true); | 
					
						
							|  |  |  | 	ERR_FAIL_COND_V(error != OK, error); | 
					
						
							|  |  |  | 	ignore_resource_parsing = true; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 	//FileAccess
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-04 16:00:45 +02:00
										 |  |  | 	FileAccess *fw = nullptr; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	String base_path = local_path.get_base_dir(); | 
					
						
							| 
									
										
										
										
											2016-01-23 14:09:55 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-10 15:37:49 +02:00
										 |  |  | 	uint64_t tag_end = f->get_position(); | 
					
						
							| 
									
										
										
										
											2016-01-23 14:09:55 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	while (true) { | 
					
						
							|  |  |  | 		Error err = VariantParser::parse_tag(&stream, lines, error_text, next_tag, &rp); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		if (err != OK) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			if (fw) { | 
					
						
							|  |  |  | 				memdelete(fw); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			error = ERR_FILE_CORRUPT; | 
					
						
							| 
									
										
										
										
											2016-01-23 14:09:55 -03:00
										 |  |  | 			ERR_FAIL_V(error); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		if (next_tag.name != "ext_resource") { | 
					
						
							| 
									
										
										
										
											2016-01-23 14:09:55 -03:00
										 |  |  | 			//nothing was done
 | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			if (!fw) { | 
					
						
							| 
									
										
										
										
											2016-01-23 14:09:55 -03:00
										 |  |  | 				return OK; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2016-01-23 14:09:55 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			if (!fw) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				fw = FileAccess::open(p_path + ".depren", FileAccess::WRITE); | 
					
						
							| 
									
										
										
										
											2016-01-23 14:09:55 -03:00
										 |  |  | 				if (is_scene) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 					fw->store_line("[gd_scene load_steps=" + itos(resources_total) + " format=" + itos(FORMAT_VERSION) + "]\n"); | 
					
						
							| 
									
										
										
										
											2016-01-23 14:09:55 -03:00
										 |  |  | 				} else { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 					fw->store_line("[gd_resource type=\"" + res_type + "\" load_steps=" + itos(resources_total) + " format=" + itos(FORMAT_VERSION) + "]\n"); | 
					
						
							| 
									
										
										
										
											2016-01-23 14:09:55 -03:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-23 14:09:55 -03:00
										 |  |  | 			if (!next_tag.fields.has("path") || !next_tag.fields.has("id") || !next_tag.fields.has("type")) { | 
					
						
							|  |  |  | 				memdelete(fw); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				error = ERR_FILE_CORRUPT; | 
					
						
							| 
									
										
										
										
											2016-01-23 14:09:55 -03:00
										 |  |  | 				ERR_FAIL_V(error); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-23 14:09:55 -03:00
										 |  |  | 			String path = next_tag.fields["path"]; | 
					
						
							|  |  |  | 			int index = next_tag.fields["id"]; | 
					
						
							|  |  |  | 			String type = next_tag.fields["type"]; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			bool relative = false; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			if (!path.begins_with("res://")) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				path = base_path.plus_file(path).simplify_path(); | 
					
						
							|  |  |  | 				relative = true; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (p_map.has(path)) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				String np = p_map[path]; | 
					
						
							|  |  |  | 				path = np; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (relative) { | 
					
						
							|  |  |  | 				//restore relative
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				path = base_path.path_to_file(path); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			fw->store_line("[ext_resource path=\"" + path + "\" type=\"" + type + "\" id=" + itos(index) + "]"); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-10 15:37:49 +02:00
										 |  |  | 			tag_end = f->get_position(); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-23 14:09:55 -03:00
										 |  |  | 	f->seek(tag_end); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	uint8_t c = f->get_8(); | 
					
						
							| 
									
										
										
										
											2020-05-25 14:25:34 -07:00
										 |  |  | 	if (c == '\n' && !f->eof_reached()) { | 
					
						
							|  |  |  | 		// Skip first newline character since we added one
 | 
					
						
							|  |  |  | 		c = f->get_8(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	while (!f->eof_reached()) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 		fw->store_8(c); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		c = f->get_8(); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-02-21 22:51:19 +01:00
										 |  |  | 	f->close(); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	bool all_ok = fw->get_error() == OK; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	memdelete(fw); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!all_ok) { | 
					
						
							|  |  |  | 		return ERR_CANT_CREATE; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	DirAccess *da = DirAccess::create(DirAccess::ACCESS_RESOURCES); | 
					
						
							|  |  |  | 	da->remove(p_path); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	da->rename(p_path + ".depren", p_path); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 	memdelete(da); | 
					
						
							| 
									
										
										
										
											2016-01-23 14:09:55 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 	return OK; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void ResourceInteractiveLoaderText::open(FileAccess *p_f, bool p_skip_first_tag) { | 
					
						
							|  |  |  | 	error = OK; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	lines = 1; | 
					
						
							|  |  |  | 	f = p_f; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	stream.f = f; | 
					
						
							|  |  |  | 	is_scene = false; | 
					
						
							|  |  |  | 	ignore_resource_parsing = false; | 
					
						
							|  |  |  | 	resource_current = 0; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	VariantParser::Tag tag; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	Error err = VariantParser::parse_tag(&stream, lines, error_text, tag); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (err) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		error = err; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 		_printerr(); | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (tag.fields.has("format")) { | 
					
						
							|  |  |  | 		int fmt = tag.fields["format"]; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		if (fmt > FORMAT_VERSION) { | 
					
						
							|  |  |  | 			error_text = "Saved with newer format version"; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			_printerr(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			error = ERR_PARSE_ERROR; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	if (tag.name == "gd_scene") { | 
					
						
							|  |  |  | 		is_scene = true; | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	} else if (tag.name == "gd_resource") { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 		if (!tag.fields.has("type")) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			error_text = "Missing 'type' field in 'gd_resource' tag"; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			_printerr(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			error = ERR_PARSE_ERROR; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		res_type = tag.fields["type"]; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		error_text = "Unrecognized file type: " + tag.name; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 		_printerr(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		error = ERR_PARSE_ERROR; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (tag.fields.has("load_steps")) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		resources_total = tag.fields["load_steps"]; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		resources_total = 0; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-23 14:09:55 -03:00
										 |  |  | 	if (!p_skip_first_tag) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		err = VariantParser::parse_tag(&stream, lines, error_text, next_tag, &rp); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-23 14:09:55 -03:00
										 |  |  | 		if (err) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			error_text = "Unexpected end of file"; | 
					
						
							| 
									
										
										
										
											2016-01-23 14:09:55 -03:00
										 |  |  | 			_printerr(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			error = ERR_FILE_CORRUPT; | 
					
						
							| 
									
										
										
										
											2016-01-23 14:09:55 -03:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	rp.ext_func = _parse_ext_resources; | 
					
						
							|  |  |  | 	rp.sub_func = _parse_sub_resources; | 
					
						
							|  |  |  | 	rp.userdata = this; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-15 08:38:24 -03:00
										 |  |  | static void bs_save_unicode_string(FileAccess *f, const String &p_string, bool p_bit_on_len = false) { | 
					
						
							|  |  |  | 	CharString utf8 = p_string.utf8(); | 
					
						
							|  |  |  | 	if (p_bit_on_len) { | 
					
						
							| 
									
										
										
										
											2018-07-14 18:15:42 -03:00
										 |  |  | 		f->store_32((utf8.length() + 1) | 0x80000000); | 
					
						
							| 
									
										
										
										
											2017-12-15 08:38:24 -03:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 		f->store_32(utf8.length() + 1); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	f->store_buffer((const uint8_t *)utf8.get_data(), utf8.length() + 1); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Error ResourceInteractiveLoaderText::save_as_binary(FileAccess *p_f, const String &p_path) { | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 	if (error) { | 
					
						
							| 
									
										
										
										
											2017-12-15 08:38:24 -03:00
										 |  |  | 		return error; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-12-15 08:38:24 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	FileAccessRef wf = FileAccess::open(p_path, FileAccess::WRITE); | 
					
						
							|  |  |  | 	if (!wf) { | 
					
						
							|  |  |  | 		return ERR_CANT_OPEN; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	//save header compressed
 | 
					
						
							|  |  |  | 	static const uint8_t header[4] = { 'R', 'S', 'R', 'C' }; | 
					
						
							|  |  |  | 	wf->store_buffer(header, 4); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wf->store_32(0); //endianness, little endian
 | 
					
						
							|  |  |  | 	wf->store_32(0); //64 bits file, false for now
 | 
					
						
							|  |  |  | 	wf->store_32(VERSION_MAJOR); | 
					
						
							|  |  |  | 	wf->store_32(VERSION_MINOR); | 
					
						
							|  |  |  | 	static const int save_format_version = 3; //use format version 3 for saving
 | 
					
						
							|  |  |  | 	wf->store_32(save_format_version); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	bs_save_unicode_string(wf.f, is_scene ? "PackedScene" : resource_type); | 
					
						
							|  |  |  | 	wf->store_64(0); //offset to import metadata, this is no longer used
 | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 	for (int i = 0; i < 14; i++) { | 
					
						
							| 
									
										
										
										
											2017-12-15 08:38:24 -03:00
										 |  |  | 		wf->store_32(0); // reserved
 | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-12-15 08:38:24 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	wf->store_32(0); //string table size, will not be in use
 | 
					
						
							| 
									
										
										
										
											2019-03-26 18:51:13 +01:00
										 |  |  | 	uint64_t ext_res_count_pos = wf->get_position(); | 
					
						
							| 
									
										
										
										
											2017-12-15 08:38:24 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	wf->store_32(0); //zero ext resources, still parsing them
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	//go with external resources
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	DummyReadData dummy_read; | 
					
						
							|  |  |  | 	VariantParser::ResourceParser rp; | 
					
						
							|  |  |  | 	rp.ext_func = _parse_ext_resource_dummys; | 
					
						
							|  |  |  | 	rp.sub_func = _parse_sub_resource_dummys; | 
					
						
							|  |  |  | 	rp.userdata = &dummy_read; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	while (next_tag.name == "ext_resource") { | 
					
						
							|  |  |  | 		if (!next_tag.fields.has("path")) { | 
					
						
							|  |  |  | 			error = ERR_FILE_CORRUPT; | 
					
						
							|  |  |  | 			error_text = "Missing 'path' in external resource tag"; | 
					
						
							|  |  |  | 			_printerr(); | 
					
						
							|  |  |  | 			return error; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (!next_tag.fields.has("type")) { | 
					
						
							|  |  |  | 			error = ERR_FILE_CORRUPT; | 
					
						
							|  |  |  | 			error_text = "Missing 'type' in external resource tag"; | 
					
						
							|  |  |  | 			_printerr(); | 
					
						
							|  |  |  | 			return error; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (!next_tag.fields.has("id")) { | 
					
						
							|  |  |  | 			error = ERR_FILE_CORRUPT; | 
					
						
							|  |  |  | 			error_text = "Missing 'id' in external resource tag"; | 
					
						
							|  |  |  | 			_printerr(); | 
					
						
							|  |  |  | 			return error; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		String path = next_tag.fields["path"]; | 
					
						
							|  |  |  | 		String type = next_tag.fields["type"]; | 
					
						
							|  |  |  | 		int index = next_tag.fields["id"]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		bs_save_unicode_string(wf.f, type); | 
					
						
							|  |  |  | 		bs_save_unicode_string(wf.f, path); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		int lindex = dummy_read.external_resources.size(); | 
					
						
							|  |  |  | 		Ref<DummyResource> dr; | 
					
						
							|  |  |  | 		dr.instance(); | 
					
						
							|  |  |  | 		dr->set_path("res://dummy" + itos(lindex)); //anything is good to detect it for saving as external
 | 
					
						
							|  |  |  | 		dummy_read.external_resources[dr] = lindex; | 
					
						
							|  |  |  | 		dummy_read.rev_external_resources[index] = dr; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		error = VariantParser::parse_tag(&stream, lines, error_text, next_tag, &rp); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (error) { | 
					
						
							|  |  |  | 			_printerr(); | 
					
						
							|  |  |  | 			return error; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// save external resource table
 | 
					
						
							|  |  |  | 	wf->seek(ext_res_count_pos); | 
					
						
							|  |  |  | 	wf->store_32(dummy_read.external_resources.size()); | 
					
						
							|  |  |  | 	wf->seek_end(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	//now, save resources to a separate file, for now
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-26 18:51:13 +01:00
										 |  |  | 	uint64_t sub_res_count_pos = wf->get_position(); | 
					
						
							| 
									
										
										
										
											2017-12-15 08:38:24 -03:00
										 |  |  | 	wf->store_32(0); //zero sub resources, still parsing them
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	String temp_file = p_path + ".temp"; | 
					
						
							|  |  |  | 	FileAccessRef wf2 = FileAccess::open(temp_file, FileAccess::WRITE); | 
					
						
							|  |  |  | 	if (!wf2) { | 
					
						
							|  |  |  | 		return ERR_CANT_OPEN; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-26 18:51:13 +01:00
										 |  |  | 	Vector<uint64_t> local_offsets; | 
					
						
							|  |  |  | 	Vector<uint64_t> local_pointers_pos; | 
					
						
							| 
									
										
										
										
											2017-12-15 08:38:24 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	while (next_tag.name == "sub_resource" || next_tag.name == "resource") { | 
					
						
							|  |  |  | 		String type; | 
					
						
							|  |  |  | 		int id = -1; | 
					
						
							|  |  |  | 		bool main_res; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (next_tag.name == "sub_resource") { | 
					
						
							|  |  |  | 			if (!next_tag.fields.has("type")) { | 
					
						
							|  |  |  | 				error = ERR_FILE_CORRUPT; | 
					
						
							|  |  |  | 				error_text = "Missing 'type' in external resource tag"; | 
					
						
							|  |  |  | 				_printerr(); | 
					
						
							|  |  |  | 				return error; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (!next_tag.fields.has("id")) { | 
					
						
							|  |  |  | 				error = ERR_FILE_CORRUPT; | 
					
						
							|  |  |  | 				error_text = "Missing 'index' in external resource tag"; | 
					
						
							|  |  |  | 				_printerr(); | 
					
						
							|  |  |  | 				return error; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			type = next_tag.fields["type"]; | 
					
						
							|  |  |  | 			id = next_tag.fields["id"]; | 
					
						
							|  |  |  | 			main_res = false; | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			type = res_type; | 
					
						
							|  |  |  | 			id = 0; //used for last anyway
 | 
					
						
							|  |  |  | 			main_res = true; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		local_offsets.push_back(wf2->get_position()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		bs_save_unicode_string(wf, "local://" + itos(id)); | 
					
						
							|  |  |  | 		local_pointers_pos.push_back(wf->get_position()); | 
					
						
							|  |  |  | 		wf->store_64(0); //temp local offset
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		bs_save_unicode_string(wf2, type); | 
					
						
							| 
									
										
										
										
											2019-03-26 18:51:13 +01:00
										 |  |  | 		uint64_t propcount_ofs = wf2->get_position(); | 
					
						
							| 
									
										
										
										
											2017-12-15 08:38:24 -03:00
										 |  |  | 		wf2->store_32(0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		int prop_count = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		while (true) { | 
					
						
							|  |  |  | 			String assign; | 
					
						
							|  |  |  | 			Variant value; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			error = VariantParser::parse_tag_assign_eof(&stream, lines, error_text, next_tag, assign, value, &rp); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (error) { | 
					
						
							|  |  |  | 				if (main_res && error == ERR_FILE_EOF) { | 
					
						
							|  |  |  | 					next_tag.name = ""; //exit
 | 
					
						
							|  |  |  | 					break; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				_printerr(); | 
					
						
							|  |  |  | 				return error; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (assign != String()) { | 
					
						
							|  |  |  | 				Map<StringName, int> empty_string_map; //unused
 | 
					
						
							|  |  |  | 				bs_save_unicode_string(wf2, assign, true); | 
					
						
							|  |  |  | 				ResourceFormatSaverBinaryInstance::write_variant(wf2, value, dummy_read.resource_set, dummy_read.external_resources, empty_string_map); | 
					
						
							|  |  |  | 				prop_count++; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			} else if (next_tag.name != String()) { | 
					
						
							|  |  |  | 				error = OK; | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				error = ERR_FILE_CORRUPT; | 
					
						
							|  |  |  | 				error_text = "Premature end of file while parsing [sub_resource]"; | 
					
						
							|  |  |  | 				_printerr(); | 
					
						
							|  |  |  | 				return error; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		wf2->seek(propcount_ofs); | 
					
						
							|  |  |  | 		wf2->store_32(prop_count); | 
					
						
							|  |  |  | 		wf2->seek_end(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (next_tag.name == "node") { | 
					
						
							|  |  |  | 		//this is a node, must save one more!
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (!is_scene) { | 
					
						
							|  |  |  | 			error_text += "found the 'node' tag on a resource file!"; | 
					
						
							|  |  |  | 			_printerr(); | 
					
						
							|  |  |  | 			error = ERR_FILE_CORRUPT; | 
					
						
							|  |  |  | 			return error; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		Ref<PackedScene> packed_scene = _parse_node_tag(rp); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 		if (!packed_scene.is_valid()) { | 
					
						
							| 
									
										
										
										
											2017-12-15 08:38:24 -03:00
										 |  |  | 			return error; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-12-15 08:38:24 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		error = OK; | 
					
						
							|  |  |  | 		//get it here
 | 
					
						
							|  |  |  | 		List<PropertyInfo> props; | 
					
						
							|  |  |  | 		packed_scene->get_property_list(&props); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		bs_save_unicode_string(wf, "local://0"); | 
					
						
							|  |  |  | 		local_pointers_pos.push_back(wf->get_position()); | 
					
						
							|  |  |  | 		wf->store_64(0); //temp local offset
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		local_offsets.push_back(wf2->get_position()); | 
					
						
							|  |  |  | 		bs_save_unicode_string(wf2, "PackedScene"); | 
					
						
							| 
									
										
										
										
											2019-03-26 18:51:13 +01:00
										 |  |  | 		uint64_t propcount_ofs = wf2->get_position(); | 
					
						
							| 
									
										
										
										
											2017-12-15 08:38:24 -03:00
										 |  |  | 		wf2->store_32(0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		int prop_count = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		for (List<PropertyInfo>::Element *E = props.front(); E; E = E->next()) { | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			if (!(E->get().usage & PROPERTY_USAGE_STORAGE)) { | 
					
						
							| 
									
										
										
										
											2017-12-15 08:38:24 -03:00
										 |  |  | 				continue; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-12-15 08:38:24 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			String name = E->get().name; | 
					
						
							|  |  |  | 			Variant value = packed_scene->get(name); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			Map<StringName, int> empty_string_map; //unused
 | 
					
						
							|  |  |  | 			bs_save_unicode_string(wf2, name, true); | 
					
						
							|  |  |  | 			ResourceFormatSaverBinaryInstance::write_variant(wf2, value, dummy_read.resource_set, dummy_read.external_resources, empty_string_map); | 
					
						
							|  |  |  | 			prop_count++; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		wf2->seek(propcount_ofs); | 
					
						
							|  |  |  | 		wf2->store_32(prop_count); | 
					
						
							|  |  |  | 		wf2->seek_end(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wf2->close(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-26 18:51:13 +01:00
										 |  |  | 	uint64_t offset_from = wf->get_position(); | 
					
						
							| 
									
										
										
										
											2017-12-15 08:38:24 -03:00
										 |  |  | 	wf->seek(sub_res_count_pos); //plus one because the saved one
 | 
					
						
							|  |  |  | 	wf->store_32(local_offsets.size()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (int i = 0; i < local_offsets.size(); i++) { | 
					
						
							|  |  |  | 		wf->seek(local_pointers_pos[i]); | 
					
						
							|  |  |  | 		wf->store_64(local_offsets[i] + offset_from); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wf->seek_end(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Vector<uint8_t> data = FileAccess::get_file_as_array(temp_file); | 
					
						
							|  |  |  | 	wf->store_buffer(data.ptr(), data.size()); | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		DirAccessRef dar = DirAccess::open(temp_file.get_base_dir()); | 
					
						
							|  |  |  | 		dar->remove(temp_file); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wf->store_buffer((const uint8_t *)"RSRC", 4); //magic at end
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wf->close(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return OK; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | String ResourceInteractiveLoaderText::recognize(FileAccess *p_f) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	error = OK; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	lines = 1; | 
					
						
							|  |  |  | 	f = p_f; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	stream.f = f; | 
					
						
							| 
									
										
										
										
											2016-06-28 12:35:11 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ignore_resource_parsing = true; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	VariantParser::Tag tag; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	Error err = VariantParser::parse_tag(&stream, lines, error_text, tag); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (err) { | 
					
						
							|  |  |  | 		_printerr(); | 
					
						
							|  |  |  | 		return ""; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (tag.fields.has("format")) { | 
					
						
							|  |  |  | 		int fmt = tag.fields["format"]; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		if (fmt > FORMAT_VERSION) { | 
					
						
							|  |  |  | 			error_text = "Saved with newer format version"; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 			_printerr(); | 
					
						
							|  |  |  | 			return ""; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 	if (tag.name == "gd_scene") { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 		return "PackedScene"; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 	if (tag.name != "gd_resource") { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 		return ""; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (!tag.fields.has("type")) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		error_text = "Missing 'type' field in 'gd_resource' tag"; | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 		_printerr(); | 
					
						
							|  |  |  | 		return ""; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return tag.fields["type"]; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /////////////////////
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-25 15:51:37 -04:00
										 |  |  | Ref<ResourceInteractiveLoader> ResourceFormatLoaderText::load_interactive(const String &p_path, const String &p_original_path, Error *r_error, bool p_no_subresource_cache) { | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 	if (r_error) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		*r_error = ERR_CANT_OPEN; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	Error err; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	FileAccess *f = FileAccess::open(p_path, FileAccess::READ, &err); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-25 10:28:50 +02:00
										 |  |  | 	ERR_FAIL_COND_V_MSG(err != OK, Ref<ResourceInteractiveLoader>(), "Cannot open file '" + p_path + "'."); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	Ref<ResourceInteractiveLoaderText> ria = memnew(ResourceInteractiveLoaderText); | 
					
						
							| 
									
										
										
										
											2022-06-25 15:51:37 -04:00
										 |  |  | 	ria->set_no_subresource_cache(p_no_subresource_cache); | 
					
						
							| 
									
										
										
										
											2017-08-31 18:57:03 -03:00
										 |  |  | 	String path = p_original_path != "" ? p_original_path : p_path; | 
					
						
							|  |  |  | 	ria->local_path = ProjectSettings::get_singleton()->localize_path(path); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ria->res_path = ria->local_path; | 
					
						
							| 
									
										
										
										
											2017-07-19 17:00:46 -03:00
										 |  |  | 	//ria->set_local_path( ProjectSettings::get_singleton()->localize_path(p_path) );
 | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 	ria->open(f); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ria; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void ResourceFormatLoaderText::get_recognized_extensions_for_type(const String &p_type, List<String> *p_extensions) const { | 
					
						
							|  |  |  | 	if (p_type == "") { | 
					
						
							| 
									
										
										
										
											2015-12-09 13:56:14 -03:00
										 |  |  | 		get_recognized_extensions(p_extensions); | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-02 23:21:15 +02:00
										 |  |  | 	if (ClassDB::is_parent_class("PackedScene", p_type)) { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 		p_extensions->push_back("tscn"); | 
					
						
							| 
									
										
										
										
											2022-05-02 23:21:15 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Don't allow .tres for PackedScenes.
 | 
					
						
							|  |  |  | 	if (p_type != "PackedScene") { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 		p_extensions->push_back("tres"); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void ResourceFormatLoaderText::get_recognized_extensions(List<String> *p_extensions) const { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 	p_extensions->push_back("tscn"); | 
					
						
							|  |  |  | 	p_extensions->push_back("tres"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | bool ResourceFormatLoaderText::handles_type(const String &p_type) const { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 	return true; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | String ResourceFormatLoaderText::get_resource_type(const String &p_path) const { | 
					
						
							|  |  |  | 	String ext = p_path.get_extension().to_lower(); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 	if (ext == "tscn") { | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 		return "PackedScene"; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 	} else if (ext != "tres") { | 
					
						
							| 
									
										
										
										
											2015-11-28 20:56:14 -03:00
										 |  |  | 		return String(); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-10 12:00:11 +01:00
										 |  |  | 	//for anything else must test..
 | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	FileAccess *f = FileAccess::open(p_path, FileAccess::READ); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 	if (!f) { | 
					
						
							|  |  |  | 		return ""; //could not rwead
 | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	Ref<ResourceInteractiveLoaderText> ria = memnew(ResourceInteractiveLoaderText); | 
					
						
							| 
									
										
										
										
											2017-07-19 17:00:46 -03:00
										 |  |  | 	ria->local_path = ProjectSettings::get_singleton()->localize_path(p_path); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ria->res_path = ria->local_path; | 
					
						
							| 
									
										
										
										
											2017-07-19 17:00:46 -03:00
										 |  |  | 	//ria->set_local_path( ProjectSettings::get_singleton()->localize_path(p_path) );
 | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 	String r = ria->recognize(f); | 
					
						
							|  |  |  | 	return r; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void ResourceFormatLoaderText::get_dependencies(const String &p_path, List<String> *p_dependencies, bool p_add_types) { | 
					
						
							|  |  |  | 	FileAccess *f = FileAccess::open(p_path, FileAccess::READ); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 	if (!f) { | 
					
						
							|  |  |  | 		ERR_FAIL(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	Ref<ResourceInteractiveLoaderText> ria = memnew(ResourceInteractiveLoaderText); | 
					
						
							| 
									
										
										
										
											2017-07-19 17:00:46 -03:00
										 |  |  | 	ria->local_path = ProjectSettings::get_singleton()->localize_path(p_path); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ria->res_path = ria->local_path; | 
					
						
							| 
									
										
										
										
											2017-07-19 17:00:46 -03:00
										 |  |  | 	//ria->set_local_path( ProjectSettings::get_singleton()->localize_path(p_path) );
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ria->get_dependencies(f, p_dependencies, p_add_types); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | Error ResourceFormatLoaderText::rename_dependencies(const String &p_path, const Map<String, String> &p_map) { | 
					
						
							|  |  |  | 	FileAccess *f = FileAccess::open(p_path, FileAccess::READ); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | 	if (!f) { | 
					
						
							|  |  |  | 		ERR_FAIL_V(ERR_CANT_OPEN); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	Ref<ResourceInteractiveLoaderText> ria = memnew(ResourceInteractiveLoaderText); | 
					
						
							| 
									
										
										
										
											2017-07-19 17:00:46 -03:00
										 |  |  | 	ria->local_path = ProjectSettings::get_singleton()->localize_path(p_path); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ria->res_path = ria->local_path; | 
					
						
							| 
									
										
										
										
											2017-07-19 17:00:46 -03:00
										 |  |  | 	//ria->set_local_path( ProjectSettings::get_singleton()->localize_path(p_path) );
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	return ria->rename_dependencies(f, p_path, p_map); | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-04 16:00:45 +02:00
										 |  |  | ResourceFormatLoaderText *ResourceFormatLoaderText::singleton = nullptr; | 
					
						
							| 
									
										
										
										
											2018-01-30 11:03:46 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-15 08:38:24 -03:00
										 |  |  | Error ResourceFormatLoaderText::convert_file_to_binary(const String &p_src_path, const String &p_dst_path) { | 
					
						
							|  |  |  | 	Error err; | 
					
						
							|  |  |  | 	FileAccess *f = FileAccess::open(p_src_path, FileAccess::READ, &err); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-25 10:28:50 +02:00
										 |  |  | 	ERR_FAIL_COND_V_MSG(err != OK, ERR_CANT_OPEN, "Cannot open file '" + p_src_path + "'."); | 
					
						
							| 
									
										
										
										
											2017-12-15 08:38:24 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	Ref<ResourceInteractiveLoaderText> ria = memnew(ResourceInteractiveLoaderText); | 
					
						
							| 
									
										
										
										
											2019-06-26 15:08:25 +02:00
										 |  |  | 	const String &path = p_src_path; | 
					
						
							| 
									
										
										
										
											2017-12-15 08:38:24 -03:00
										 |  |  | 	ria->local_path = ProjectSettings::get_singleton()->localize_path(path); | 
					
						
							|  |  |  | 	ria->res_path = ria->local_path; | 
					
						
							|  |  |  | 	//ria->set_local_path( ProjectSettings::get_singleton()->localize_path(p_path) );
 | 
					
						
							|  |  |  | 	ria->open(f); | 
					
						
							|  |  |  | 	return ria->save_as_binary(f, p_dst_path); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-24 10:42:05 -03:00
										 |  |  | /*****************************************************************************************************/ | 
					
						
							|  |  |  | /*****************************************************************************************************/ | 
					
						
							|  |  |  | /*****************************************************************************************************/ | 
					
						
							|  |  |  | /*****************************************************************************************************/ | 
					
						
							|  |  |  | /*****************************************************************************************************/ | 
					
						
							|  |  |  | /*****************************************************************************************************/ | 
					
						
							|  |  |  | /*****************************************************************************************************/ | 
					
						
							|  |  |  | /*****************************************************************************************************/ | 
					
						
							|  |  |  | /*****************************************************************************************************/ | 
					
						
							|  |  |  | /*****************************************************************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | String ResourceFormatSaverTextInstance::_write_resources(void *ud, const RES &p_resource) { | 
					
						
							|  |  |  | 	ResourceFormatSaverTextInstance *rsi = (ResourceFormatSaverTextInstance *)ud; | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 	return rsi->_write_resource(p_resource); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | String ResourceFormatSaverTextInstance::_write_resource(const RES &res) { | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 	if (external_resources.has(res)) { | 
					
						
							| 
									
										
										
										
											2019-04-11 14:35:23 -03:00
										 |  |  | 		return "ExtResource( " + itos(external_resources[res]) + " )"; | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 		if (internal_resources.has(res)) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			return "SubResource( " + itos(internal_resources[res]) + " )"; | 
					
						
							|  |  |  | 		} else if (res->get_path().length() && res->get_path().find("::") == -1) { | 
					
						
							| 
									
										
										
										
											2019-02-24 10:45:08 -03:00
										 |  |  | 			if (res->get_path() == local_path) { //circular reference attempt
 | 
					
						
							|  |  |  | 				return "null"; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 			//external resource
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			String path = relative_paths ? local_path.path_to_file(res->get_path()) : res->get_path(); | 
					
						
							|  |  |  | 			return "Resource( \"" + path + "\" )"; | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2019-08-08 22:11:48 +02:00
										 |  |  | 			ERR_FAIL_V_MSG("null", "Resource was not pre cached for the resource section, bug?"); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 			//internal resource
 | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void ResourceFormatSaverTextInstance::_find_resources(const Variant &p_variant, bool p_main) { | 
					
						
							|  |  |  | 	switch (p_variant.get_type()) { | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 		case Variant::OBJECT: { | 
					
						
							|  |  |  | 			RES res = p_variant.operator RefPtr(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			if (res.is_null() || external_resources.has(res)) { | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 				return; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			if (!p_main && (!bundle_resources) && res->get_path().length() && res->get_path().find("::") == -1) { | 
					
						
							| 
									
										
										
										
											2019-02-24 10:45:08 -03:00
										 |  |  | 				if (res->get_path() == local_path) { | 
					
						
							| 
									
										
										
										
											2021-06-16 11:56:25 +01:00
										 |  |  | 					ERR_PRINT("Circular reference to resource being saved found: '" + local_path + "' will be null next time it's loaded."); | 
					
						
							| 
									
										
										
										
											2019-02-24 10:45:08 -03:00
										 |  |  | 					return; | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 				int index = external_resources.size(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				external_resources[res] = index; | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 				return; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			if (resource_set.has(res)) { | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 				return; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			List<PropertyInfo> property_list; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			res->get_property_list(&property_list); | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 			property_list.sort(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			List<PropertyInfo>::Element *I = property_list.front(); | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			while (I) { | 
					
						
							|  |  |  | 				PropertyInfo pi = I->get(); | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				if (pi.usage & PROPERTY_USAGE_STORAGE) { | 
					
						
							|  |  |  | 					Variant v = res->get(I->get().name); | 
					
						
							| 
									
										
										
										
											2019-02-21 20:49:42 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 					if (pi.usage & PROPERTY_USAGE_RESOURCE_NOT_PERSISTENT) { | 
					
						
							|  |  |  | 						RES sres = v; | 
					
						
							|  |  |  | 						if (sres.is_valid()) { | 
					
						
							|  |  |  | 							NonPersistentKey npk; | 
					
						
							|  |  |  | 							npk.base = res; | 
					
						
							|  |  |  | 							npk.property = pi.name; | 
					
						
							|  |  |  | 							non_persistent_map[npk] = sres; | 
					
						
							|  |  |  | 							resource_set.insert(sres); | 
					
						
							|  |  |  | 							saved_resources.push_back(sres); | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 					} else { | 
					
						
							|  |  |  | 						_find_resources(v); | 
					
						
							|  |  |  | 					} | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				I = I->next(); | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-18 21:37:17 +01:00
										 |  |  | 			resource_set.insert(res); //saved after, so the children it needs are available when loaded
 | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 			saved_resources.push_back(res); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 		case Variant::ARRAY: { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			Array varray = p_variant; | 
					
						
							|  |  |  | 			int len = varray.size(); | 
					
						
							|  |  |  | 			for (int i = 0; i < len; i++) { | 
					
						
							| 
									
										
										
										
											2019-06-26 15:08:25 +02:00
										 |  |  | 				const Variant &v = varray.get(i); | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 				_find_resources(v); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 		case Variant::DICTIONARY: { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			Dictionary d = p_variant; | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 			List<Variant> keys; | 
					
						
							|  |  |  | 			d.get_key_list(&keys); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			for (List<Variant>::Element *E = keys.front(); E; E = E->next()) { | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 				Variant v = d[E->get()]; | 
					
						
							|  |  |  | 				_find_resources(v); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} break; | 
					
						
							| 
									
										
										
										
											2019-04-09 17:08:36 +02:00
										 |  |  | 		default: { | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | Error ResourceFormatSaverTextInstance::save(const String &p_path, const RES &p_resource, uint32_t p_flags) { | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 	if (p_path.ends_with(".tscn")) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		packed_scene = p_resource; | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Error err; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	f = FileAccess::open(p_path, FileAccess::WRITE, &err); | 
					
						
							| 
									
										
										
										
											2019-09-25 10:28:50 +02:00
										 |  |  | 	ERR_FAIL_COND_V_MSG(err, ERR_CANT_OPEN, "Cannot save file '" + p_path + "'."); | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 	FileAccessRef _fref(f); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-19 17:00:46 -03:00
										 |  |  | 	local_path = ProjectSettings::get_singleton()->localize_path(p_path); | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	relative_paths = p_flags & ResourceSaver::FLAG_RELATIVE_PATHS; | 
					
						
							|  |  |  | 	skip_editor = p_flags & ResourceSaver::FLAG_OMIT_EDITOR_PROPERTIES; | 
					
						
							|  |  |  | 	bundle_resources = p_flags & ResourceSaver::FLAG_BUNDLE_RESOURCES; | 
					
						
							|  |  |  | 	takeover_paths = p_flags & ResourceSaver::FLAG_REPLACE_SUBRESOURCE_PATHS; | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 	if (!p_path.begins_with("res://")) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		takeover_paths = false; | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// save resources
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	_find_resources(p_resource, true); | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (packed_scene.is_valid()) { | 
					
						
							|  |  |  | 		//add instances to external resources if saving a packed scene
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		for (int i = 0; i < packed_scene->get_state()->get_node_count(); i++) { | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			if (packed_scene->get_state()->is_node_instance_placeholder(i)) { | 
					
						
							| 
									
										
										
										
											2016-02-21 11:17:50 -03:00
										 |  |  | 				continue; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2016-02-21 11:17:50 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			Ref<PackedScene> instance = packed_scene->get_state()->get_node_instance(i); | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 			if (instance.is_valid() && !external_resources.has(instance)) { | 
					
						
							|  |  |  | 				int index = external_resources.size(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				external_resources[instance] = index; | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		String title = packed_scene.is_valid() ? "[gd_scene " : "[gd_resource "; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 		if (packed_scene.is_null()) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			title += "type=\"" + p_resource->get_class() + "\" "; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		int load_steps = saved_resources.size() + external_resources.size(); | 
					
						
							| 
									
										
										
										
											2017-01-14 12:26:56 +01:00
										 |  |  | 		/*
 | 
					
						
							|  |  |  | 		if (packed_scene.is_valid()) { | 
					
						
							|  |  |  | 			load_steps+=packed_scene->get_node_count(); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 		//no, better to not use load steps from nodes, no point to that
 | 
					
						
							| 
									
										
										
										
											2017-01-14 12:26:56 +01:00
										 |  |  | 		*/ | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		if (load_steps > 1) { | 
					
						
							|  |  |  | 			title += "load_steps=" + itos(load_steps) + " "; | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		title += "format=" + itos(FORMAT_VERSION) + ""; | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		f->store_string(title); | 
					
						
							|  |  |  | 		f->store_line("]\n"); //one empty line
 | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-11 14:35:23 -03:00
										 |  |  | #ifdef TOOLS_ENABLED
 | 
					
						
							|  |  |  | 	//keep order from cached ids
 | 
					
						
							|  |  |  | 	Set<int> cached_ids_found; | 
					
						
							|  |  |  | 	for (Map<RES, int>::Element *E = external_resources.front(); E; E = E->next()) { | 
					
						
							|  |  |  | 		int cached_id = E->key()->get_id_for_path(local_path); | 
					
						
							|  |  |  | 		if (cached_id < 0 || cached_ids_found.has(cached_id)) { | 
					
						
							|  |  |  | 			E->get() = -1; //reset
 | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			E->get() = cached_id; | 
					
						
							|  |  |  | 			cached_ids_found.insert(cached_id); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	//create IDs for non cached resources
 | 
					
						
							|  |  |  | 	for (Map<RES, int>::Element *E = external_resources.front(); E; E = E->next()) { | 
					
						
							|  |  |  | 		if (cached_ids_found.has(E->get())) { //already cached, go on
 | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		int attempt = 1; //start from one, more readable format
 | 
					
						
							| 
									
										
										
										
											2019-05-20 13:51:51 +02:00
										 |  |  | 		while (cached_ids_found.has(attempt)) { | 
					
						
							| 
									
										
										
										
											2019-04-11 14:35:23 -03:00
										 |  |  | 			attempt++; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-11 14:35:23 -03:00
										 |  |  | 		cached_ids_found.insert(attempt); | 
					
						
							|  |  |  | 		E->get() = attempt; | 
					
						
							|  |  |  | 		//update also in resource
 | 
					
						
							|  |  |  | 		Ref<Resource> res = E->key(); | 
					
						
							| 
									
										
										
										
											2019-05-20 13:51:51 +02:00
										 |  |  | 		res->set_id_for_path(local_path, attempt); | 
					
						
							| 
									
										
										
										
											2019-04-11 14:35:23 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | 	//make sure to start from one, as it makes format more readable
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	for (Map<RES, int>::Element *E = external_resources.front(); E; E = E->next()) { | 
					
						
							| 
									
										
										
										
											2019-04-11 14:35:23 -03:00
										 |  |  | 		E->get() = E->get() + 1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-11 14:35:23 -03:00
										 |  |  | 	Vector<ResourceSort> sorted_er; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (Map<RES, int>::Element *E = external_resources.front(); E; E = E->next()) { | 
					
						
							|  |  |  | 		ResourceSort rs; | 
					
						
							|  |  |  | 		rs.resource = E->key(); | 
					
						
							|  |  |  | 		rs.index = E->get(); | 
					
						
							|  |  |  | 		sorted_er.push_back(rs); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-11 14:35:23 -03:00
										 |  |  | 	sorted_er.sort(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	for (int i = 0; i < sorted_er.size(); i++) { | 
					
						
							| 
									
										
										
										
											2019-04-11 14:35:23 -03:00
										 |  |  | 		String p = sorted_er[i].resource->get_path(); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-11 14:35:23 -03:00
										 |  |  | 		f->store_string("[ext_resource path=\"" + p + "\" type=\"" + sorted_er[i].resource->get_save_class() + "\" id=" + itos(sorted_er[i].index) + "]\n"); //bundled
 | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 	if (external_resources.size()) { | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 		f->store_line(String()); //separate
 | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	Set<int> used_indices; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	for (List<RES>::Element *E = saved_resources.front(); E; E = E->next()) { | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 		RES res = E->get(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		if (E->next() && (res->get_path() == "" || res->get_path().find("::") != -1)) { | 
					
						
							|  |  |  | 			if (res->get_subindex() != 0) { | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 				if (used_indices.has(res->get_subindex())) { | 
					
						
							|  |  |  | 					res->set_subindex(0); //repeated
 | 
					
						
							|  |  |  | 				} else { | 
					
						
							|  |  |  | 					used_indices.insert(res->get_subindex()); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	for (List<RES>::Element *E = saved_resources.front(); E; E = E->next()) { | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 		RES res = E->get(); | 
					
						
							|  |  |  | 		ERR_CONTINUE(!resource_set.has(res)); | 
					
						
							| 
									
										
										
										
											2021-05-04 16:00:45 +02:00
										 |  |  | 		bool main = (E->next() == nullptr); | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 		if (main && packed_scene.is_valid()) { | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 			break; //save as a scene
 | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (main) { | 
					
						
							| 
									
										
										
										
											2019-02-10 16:07:19 +01:00
										 |  |  | 			f->store_line("[resource]"); | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			String line = "[sub_resource "; | 
					
						
							|  |  |  | 			if (res->get_subindex() == 0) { | 
					
						
							|  |  |  | 				int new_subindex = 1; | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 				if (used_indices.size()) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 					new_subindex = used_indices.back()->get() + 1; | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				res->set_subindex(new_subindex); | 
					
						
							|  |  |  | 				used_indices.insert(new_subindex); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			int idx = res->get_subindex(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			line += "type=\"" + res->get_class() + "\" id=" + itos(idx); | 
					
						
							| 
									
										
										
										
											2019-02-10 16:07:19 +01:00
										 |  |  | 			f->store_line(line + "]"); | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 			if (takeover_paths) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				res->set_path(p_path + "::" + itos(idx), true); | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			internal_resources[res] = idx; | 
					
						
							| 
									
										
										
										
											2016-08-31 17:58:51 -03:00
										 |  |  | #ifdef TOOLS_ENABLED
 | 
					
						
							|  |  |  | 			res->set_edited(false); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		List<PropertyInfo> property_list; | 
					
						
							|  |  |  | 		res->get_property_list(&property_list); | 
					
						
							| 
									
										
										
										
											2017-01-14 12:26:56 +01:00
										 |  |  | 		//property_list.sort();
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		for (List<PropertyInfo>::Element *PE = property_list.front(); PE; PE = PE->next()) { | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			if (skip_editor && PE->get().name.begins_with("__editor")) { | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 				continue; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			if (PE->get().usage & PROPERTY_USAGE_STORAGE) { | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 				String name = PE->get().name; | 
					
						
							| 
									
										
										
										
											2019-02-21 20:49:42 -03:00
										 |  |  | 				Variant value; | 
					
						
							|  |  |  | 				if (PE->get().usage & PROPERTY_USAGE_RESOURCE_NOT_PERSISTENT) { | 
					
						
							|  |  |  | 					NonPersistentKey npk; | 
					
						
							|  |  |  | 					npk.base = res; | 
					
						
							|  |  |  | 					npk.property = name; | 
					
						
							|  |  |  | 					if (non_persistent_map.has(npk)) { | 
					
						
							|  |  |  | 						value = non_persistent_map[npk]; | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 				} else { | 
					
						
							|  |  |  | 					value = res->get(name); | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2018-11-08 11:30:02 -03:00
										 |  |  | 				Variant default_value = ClassDB::class_get_default_property_value(res->get_class(), name); | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-08 11:30:02 -03:00
										 |  |  | 				if (default_value.get_type() != Variant::NIL && bool(Variant::evaluate(Variant::OP_EQUAL, value, default_value))) { | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 					continue; | 
					
						
							| 
									
										
										
										
											2018-11-08 11:30:02 -03:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 				if (PE->get().type == Variant::OBJECT && value.is_zero() && !(PE->get().usage & PROPERTY_USAGE_STORE_IF_NULL)) { | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 					continue; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 				String vars; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				VariantWriter::write_to_string(value, vars, _write_resources, this); | 
					
						
							| 
									
										
										
										
											2019-12-20 10:03:15 +08:00
										 |  |  | 				f->store_string(name.property_name_encode() + " = " + vars + "\n"); | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 		if (E->next()) { | 
					
						
							| 
									
										
										
										
											2019-03-01 22:52:53 +01:00
										 |  |  | 			f->store_line(String()); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (packed_scene.is_valid()) { | 
					
						
							|  |  |  | 		//if this is a scene, save nodes and connections!
 | 
					
						
							|  |  |  | 		Ref<SceneState> state = packed_scene->get_state(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		for (int i = 0; i < state->get_node_count(); i++) { | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 			StringName type = state->get_node_type(i); | 
					
						
							|  |  |  | 			StringName name = state->get_node_name(i); | 
					
						
							| 
									
										
										
										
											2017-12-08 15:05:15 +01:00
										 |  |  | 			int index = state->get_node_index(i); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			NodePath path = state->get_node_path(i, true); | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 			NodePath owner = state->get_node_owner_path(i); | 
					
						
							|  |  |  | 			Ref<PackedScene> instance = state->get_node_instance(i); | 
					
						
							| 
									
										
										
										
											2016-02-21 11:17:50 -03:00
										 |  |  | 			String instance_placeholder = state->get_node_instance_placeholder(i); | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 			Vector<StringName> groups = state->get_node_groups(i); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			String header = "[node"; | 
					
						
							| 
									
										
										
										
											2019-06-03 16:54:41 +03:00
										 |  |  | 			header += " name=\"" + String(name).c_escape() + "\""; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			if (type != StringName()) { | 
					
						
							|  |  |  | 				header += " type=\"" + String(type) + "\""; | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			if (path != NodePath()) { | 
					
						
							| 
									
										
										
										
											2019-06-03 16:54:41 +03:00
										 |  |  | 				header += " parent=\"" + String(path.simplified()).c_escape() + "\""; | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			if (owner != NodePath() && owner != NodePath(".")) { | 
					
						
							| 
									
										
										
										
											2019-06-03 16:54:41 +03:00
										 |  |  | 				header += " owner=\"" + String(owner.simplified()).c_escape() + "\""; | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-12-08 15:05:15 +01:00
										 |  |  | 			if (index >= 0) { | 
					
						
							|  |  |  | 				header += " index=\"" + itos(index) + "\""; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			if (groups.size()) { | 
					
						
							| 
									
										
										
										
											2021-08-31 17:06:18 +02:00
										 |  |  | 				// Write all groups on the same line as they're part of a section header.
 | 
					
						
							|  |  |  | 				// This improves readability while not impacting VCS friendliness too much,
 | 
					
						
							|  |  |  | 				// since it's rare to have more than 5 groups assigned to a single node.
 | 
					
						
							| 
									
										
										
										
											2019-09-07 15:54:53 +02:00
										 |  |  | 				groups.sort_custom<StringName::AlphCompare>(); | 
					
						
							| 
									
										
										
										
											2021-08-31 17:06:18 +02:00
										 |  |  | 				String sgroups = " groups=["; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				for (int j = 0; j < groups.size(); j++) { | 
					
						
							| 
									
										
										
										
											2021-08-31 17:06:18 +02:00
										 |  |  | 					sgroups += "\"" + String(groups[j]).c_escape() + "\""; | 
					
						
							|  |  |  | 					if (j < groups.size() - 1) { | 
					
						
							|  |  |  | 						sgroups += ", "; | 
					
						
							|  |  |  | 					} | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				sgroups += "]"; | 
					
						
							|  |  |  | 				header += sgroups; | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			f->store_string(header); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			if (instance_placeholder != String()) { | 
					
						
							| 
									
										
										
										
											2016-02-21 11:17:50 -03:00
										 |  |  | 				String vars; | 
					
						
							|  |  |  | 				f->store_string(" instance_placeholder="); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				VariantWriter::write_to_string(instance_placeholder, vars, _write_resources, this); | 
					
						
							| 
									
										
										
										
											2016-02-21 11:17:50 -03:00
										 |  |  | 				f->store_string(vars); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 			if (instance.is_valid()) { | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 				String vars; | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 				f->store_string(" instance="); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				VariantWriter::write_to_string(instance, vars, _write_resources, this); | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 				f->store_string(vars); | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 23:09:19 +02:00
										 |  |  | 			f->store_line("]"); | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			for (int j = 0; j < state->get_node_property_count(i); j++) { | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 				String vars; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				VariantWriter::write_to_string(state->get_node_property_value(i, j), vars, _write_resources, this); | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-20 10:03:15 +08:00
										 |  |  | 				f->store_string(String(state->get_node_property_name(i, j)).property_name_encode() + " = " + vars + "\n"); | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			if (i < state->get_node_count() - 1) { | 
					
						
							| 
									
										
										
										
											2019-03-01 22:52:53 +01:00
										 |  |  | 				f->store_line(String()); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		for (int i = 0; i < state->get_connection_count(); i++) { | 
					
						
							| 
									
										
										
										
											2020-09-29 14:01:01 +03:00
										 |  |  | 			if (i == 0) { | 
					
						
							|  |  |  | 				f->store_line(""); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			String connstr = "[connection"; | 
					
						
							|  |  |  | 			connstr += " signal=\"" + String(state->get_connection_signal(i)) + "\""; | 
					
						
							|  |  |  | 			connstr += " from=\"" + String(state->get_connection_source(i).simplified()) + "\""; | 
					
						
							|  |  |  | 			connstr += " to=\"" + String(state->get_connection_target(i).simplified()) + "\""; | 
					
						
							|  |  |  | 			connstr += " method=\"" + String(state->get_connection_method(i)) + "\""; | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 			int flags = state->get_connection_flags(i); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			if (flags != Object::CONNECT_PERSIST) { | 
					
						
							|  |  |  | 				connstr += " flags=" + itos(flags); | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			Array binds = state->get_connection_binds(i); | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 			f->store_string(connstr); | 
					
						
							| 
									
										
										
										
											2016-01-06 08:56:06 -03:00
										 |  |  | 			if (binds.size()) { | 
					
						
							| 
									
										
										
										
											2015-12-31 00:31:00 -03:00
										 |  |  | 				String vars; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				VariantWriter::write_to_string(binds, vars, _write_resources, this); | 
					
						
							|  |  |  | 				f->store_string(" binds= " + vars); | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 23:09:19 +02:00
										 |  |  | 			f->store_line("]"); | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		Vector<NodePath> editable_instances = state->get_editable_instances(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		for (int i = 0; i < editable_instances.size(); i++) { | 
					
						
							| 
									
										
										
										
											2020-09-29 14:01:01 +03:00
										 |  |  | 			if (i == 0) { | 
					
						
							|  |  |  | 				f->store_line(""); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			f->store_line("[editable path=\"" + editable_instances[i].operator String() + "\"]"); | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	if (f->get_error() != OK && f->get_error() != ERR_FILE_EOF) { | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 		f->close(); | 
					
						
							|  |  |  | 		return ERR_CANT_CREATE; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	f->close(); | 
					
						
							|  |  |  | 	//memdelete(f);
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return OK; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | Error ResourceFormatSaverText::save(const String &p_path, const RES &p_resource, uint32_t p_flags) { | 
					
						
							|  |  |  | 	if (p_path.ends_with(".sct") && p_resource->get_class() != "PackedScene") { | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 		return ERR_FILE_UNRECOGNIZED; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ResourceFormatSaverTextInstance saver; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	return saver.save(p_path, p_resource, p_flags); | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | bool ResourceFormatSaverText::recognize(const RES &p_resource) const { | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 	return true; // all recognized!
 | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void ResourceFormatSaverText::get_recognized_extensions(const RES &p_resource, List<String> *p_extensions) const { | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 	if (p_resource->get_class() == "PackedScene") { | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | 		p_extensions->push_back("tscn"); //text scene
 | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2016-01-24 18:38:37 -03:00
										 |  |  | 		p_extensions->push_back("tres"); //text resource
 | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-04 16:00:45 +02:00
										 |  |  | ResourceFormatSaverText *ResourceFormatSaverText::singleton = nullptr; | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | ResourceFormatSaverText::ResourceFormatSaverText() { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	singleton = this; | 
					
						
							| 
									
										
										
										
											2015-10-10 09:09:09 -03:00
										 |  |  | } |