| 
									
										
										
										
											2017-03-05 15:47:28 +01:00
										 |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2019-02-12 13:30:56 +01:00
										 |  |  | /*  resource_importer.cpp                                                */ | 
					
						
							| 
									
										
										
										
											2017-03-05 15:47:28 +01:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       This file is part of:                           */ | 
					
						
							|  |  |  | /*                           GODOT ENGINE                                */ | 
					
						
							| 
									
										
										
										
											2017-08-27 14:16:55 +02:00
										 |  |  | /*                      https://godotengine.org                          */ | 
					
						
							| 
									
										
										
										
											2017-03-05 15:47:28 +01:00
										 |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2021-01-01 20:13:46 +01:00
										 |  |  | /* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur.                 */ | 
					
						
							|  |  |  | /* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md).   */ | 
					
						
							| 
									
										
										
										
											2017-03-05 15:47:28 +01: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 13:30:56 +01:00
										 |  |  | #include "resource_importer.h"
 | 
					
						
							| 
									
										
										
										
											2017-03-05 15:47:28 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-07 19:33:38 -03:00
										 |  |  | #include "core/config/project_settings.h"
 | 
					
						
							| 
									
										
										
										
											2018-09-11 18:13:45 +02:00
										 |  |  | #include "core/os/os.h"
 | 
					
						
							| 
									
										
										
										
											2020-11-07 19:33:38 -03:00
										 |  |  | #include "core/variant/variant_parser.h"
 | 
					
						
							| 
									
										
										
										
											2019-02-27 08:57:37 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | bool ResourceFormatImporter::SortImporterByName::operator()(const Ref<ResourceImporter> &p_a, const Ref<ResourceImporter> &p_b) const { | 
					
						
							| 
									
										
										
										
											2019-02-26 18:43:37 -03:00
										 |  |  | 	return p_a->get_importer_name() < p_b->get_importer_name(); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-01-25 21:55:59 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-29 19:50:58 -03:00
										 |  |  | Error ResourceFormatImporter::_get_path_and_type(const String &p_path, PathAndType &r_path_and_type, bool *r_valid) const { | 
					
						
							| 
									
										
										
										
											2017-01-25 21:55:59 -03:00
										 |  |  | 	Error err; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	FileAccess *f = FileAccess::open(p_path + ".import", FileAccess::READ, &err); | 
					
						
							| 
									
										
										
										
											2017-01-25 21:55:59 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-29 19:50:58 -03:00
										 |  |  | 	if (!f) { | 
					
						
							|  |  |  | 		if (r_valid) { | 
					
						
							|  |  |  | 			*r_valid = false; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-01-25 21:55:59 -03:00
										 |  |  | 		return err; | 
					
						
							| 
									
										
										
										
											2017-08-29 19:50:58 -03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-01-25 21:55:59 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	VariantParser::StreamFile stream; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	stream.f = f; | 
					
						
							| 
									
										
										
										
											2017-01-25 21:55:59 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	String assign; | 
					
						
							|  |  |  | 	Variant value; | 
					
						
							|  |  |  | 	VariantParser::Tag next_tag; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-29 19:50:58 -03:00
										 |  |  | 	if (r_valid) { | 
					
						
							|  |  |  | 		*r_valid = true; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	int lines = 0; | 
					
						
							| 
									
										
										
										
											2017-01-25 21:55:59 -03:00
										 |  |  | 	String error_text; | 
					
						
							| 
									
										
										
										
											2017-07-19 17:00:46 -03:00
										 |  |  | 	bool path_found = false; //first match must have priority
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	while (true) { | 
					
						
							|  |  |  | 		assign = Variant(); | 
					
						
							| 
									
										
										
										
											2017-01-25 21:55:59 -03:00
										 |  |  | 		next_tag.fields.clear(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		next_tag.name = String(); | 
					
						
							| 
									
										
										
										
											2017-01-25 21:55:59 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | 		err = VariantParser::parse_tag_assign_eof(&stream, lines, error_text, next_tag, assign, value, nullptr, true); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		if (err == ERR_FILE_EOF) { | 
					
						
							| 
									
										
										
										
											2017-01-25 21:55:59 -03:00
										 |  |  | 			memdelete(f); | 
					
						
							|  |  |  | 			return OK; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		} else if (err != OK) { | 
					
						
							| 
									
										
										
										
											2019-11-06 17:03:04 +01:00
										 |  |  | 			ERR_PRINT("ResourceFormatImporter::load - " + p_path + ".import:" + itos(lines) + " error: " + error_text); | 
					
						
							| 
									
										
										
										
											2017-01-25 21:55:59 -03:00
										 |  |  | 			memdelete(f); | 
					
						
							|  |  |  | 			return err; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		if (assign != String()) { | 
					
						
							| 
									
										
										
										
											2017-07-19 17:00:46 -03:00
										 |  |  | 			if (!path_found && assign.begins_with("path.") && r_path_and_type.path == String()) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				String feature = assign.get_slicec('.', 1); | 
					
						
							| 
									
										
										
										
											2018-08-27 13:47:13 -03:00
										 |  |  | 				if (OS::get_singleton()->has_feature(feature)) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 					r_path_and_type.path = value; | 
					
						
							| 
									
										
										
										
											2017-07-19 17:00:46 -03:00
										 |  |  | 					path_found = true; //first match must have priority
 | 
					
						
							| 
									
										
										
										
											2017-02-06 00:38:39 -03:00
										 |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-19 17:00:46 -03:00
										 |  |  | 			} else if (!path_found && assign == "path") { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				r_path_and_type.path = value; | 
					
						
							| 
									
										
										
										
											2017-07-19 17:00:46 -03:00
										 |  |  | 				path_found = true; //first match must have priority
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			} else if (assign == "type") { | 
					
						
							| 
									
										
										
										
											2020-05-01 09:34:23 -03:00
										 |  |  | 				r_path_and_type.type = ClassDB::get_compatibility_remapped_class(value); | 
					
						
							| 
									
										
										
										
											2017-09-20 20:59:19 -03:00
										 |  |  | 			} else if (assign == "importer") { | 
					
						
							|  |  |  | 				r_path_and_type.importer = value; | 
					
						
							| 
									
										
										
										
											2019-04-19 15:54:33 -03:00
										 |  |  | 			} else if (assign == "group_file") { | 
					
						
							|  |  |  | 				r_path_and_type.group_file = value; | 
					
						
							| 
									
										
										
										
											2019-02-26 18:43:37 -03:00
										 |  |  | 			} else if (assign == "metadata") { | 
					
						
							|  |  |  | 				r_path_and_type.metadata = value; | 
					
						
							| 
									
										
										
										
											2017-08-29 19:50:58 -03:00
										 |  |  | 			} else if (assign == "valid") { | 
					
						
							|  |  |  | 				if (r_valid) { | 
					
						
							|  |  |  | 					*r_valid = value; | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2017-01-25 21:55:59 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		} else if (next_tag.name != "remap") { | 
					
						
							| 
									
										
										
										
											2017-01-25 21:55:59 -03:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	memdelete(f); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	if (r_path_and_type.path == String() || r_path_and_type.type == String()) { | 
					
						
							| 
									
										
										
										
											2017-01-25 21:55:59 -03:00
										 |  |  | 		return ERR_FILE_CORRUPT; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return OK; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-19 23:19:21 -03:00
										 |  |  | RES ResourceFormatImporter::load(const String &p_path, const String &p_original_path, Error *r_error, bool p_use_sub_threads, float *r_progress, bool p_no_cache) { | 
					
						
							| 
									
										
										
										
											2017-01-25 21:55:59 -03:00
										 |  |  | 	PathAndType pat; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	Error err = _get_path_and_type(p_path, pat); | 
					
						
							| 
									
										
										
										
											2017-01-25 21:55:59 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	if (err != OK) { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (r_error) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			*r_error = err; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-01-25 21:55:59 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		return RES(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-19 23:19:21 -03:00
										 |  |  | 	RES res = ResourceLoader::_load(pat.path, p_path, pat.type, p_no_cache, r_error, p_use_sub_threads, r_progress); | 
					
						
							| 
									
										
										
										
											2017-02-01 09:45:45 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifdef TOOLS_ENABLED
 | 
					
						
							| 
									
										
										
										
											2017-02-15 08:29:46 -03:00
										 |  |  | 	if (res.is_valid()) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		res->set_import_last_modified_time(res->get_last_modified_time()); //pass this, if used
 | 
					
						
							| 
									
										
										
										
											2017-02-15 08:29:46 -03:00
										 |  |  | 		res->set_import_path(pat.path); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-02-01 09:45:45 -03:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return res; | 
					
						
							| 
									
										
										
										
											2017-01-25 21:55:59 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void ResourceFormatImporter::get_recognized_extensions(List<String> *p_extensions) const { | 
					
						
							| 
									
										
										
										
											2017-01-25 21:55:59 -03:00
										 |  |  | 	Set<String> found; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-06 16:36:49 -03:00
										 |  |  | 	for (int i = 0; i < importers.size(); i++) { | 
					
						
							| 
									
										
										
										
											2017-01-25 21:55:59 -03:00
										 |  |  | 		List<String> local_exts; | 
					
						
							| 
									
										
										
										
											2018-01-06 16:36:49 -03:00
										 |  |  | 		importers[i]->get_recognized_extensions(&local_exts); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		for (List<String>::Element *F = local_exts.front(); F; F = F->next()) { | 
					
						
							| 
									
										
										
										
											2017-01-25 21:55:59 -03:00
										 |  |  | 			if (!found.has(F->get())) { | 
					
						
							|  |  |  | 				p_extensions->push_back(F->get()); | 
					
						
							|  |  |  | 				found.insert(F->get()); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void ResourceFormatImporter::get_recognized_extensions_for_type(const String &p_type, List<String> *p_extensions) const { | 
					
						
							|  |  |  | 	if (p_type == "") { | 
					
						
							| 
									
										
										
										
											2019-07-01 12:59:42 +02:00
										 |  |  | 		get_recognized_extensions(p_extensions); | 
					
						
							|  |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2017-02-01 09:45:45 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-25 21:55:59 -03:00
										 |  |  | 	Set<String> found; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-06 16:36:49 -03:00
										 |  |  | 	for (int i = 0; i < importers.size(); i++) { | 
					
						
							|  |  |  | 		String res_type = importers[i]->get_resource_type(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (res_type == String()) { | 
					
						
							| 
									
										
										
										
											2017-02-01 20:41:05 -03:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-02-01 20:41:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (!ClassDB::is_parent_class(res_type, p_type)) { | 
					
						
							| 
									
										
										
										
											2017-01-25 21:55:59 -03:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-01-25 21:55:59 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		List<String> local_exts; | 
					
						
							| 
									
										
										
										
											2018-01-06 16:36:49 -03:00
										 |  |  | 		importers[i]->get_recognized_extensions(&local_exts); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		for (List<String>::Element *F = local_exts.front(); F; F = F->next()) { | 
					
						
							| 
									
										
										
										
											2017-01-25 21:55:59 -03:00
										 |  |  | 			if (!found.has(F->get())) { | 
					
						
							|  |  |  | 				p_extensions->push_back(F->get()); | 
					
						
							|  |  |  | 				found.insert(F->get()); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-04 21:00:50 -03:00
										 |  |  | bool ResourceFormatImporter::exists(const String &p_path) const { | 
					
						
							|  |  |  | 	return FileAccess::exists(p_path + ".import"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | bool ResourceFormatImporter::recognize_path(const String &p_path, const String &p_for_type) const { | 
					
						
							|  |  |  | 	return FileAccess::exists(p_path + ".import"); | 
					
						
							| 
									
										
										
										
											2017-02-01 09:45:45 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-20 20:59:19 -03:00
										 |  |  | int ResourceFormatImporter::get_import_order(const String &p_path) const { | 
					
						
							|  |  |  | 	Ref<ResourceImporter> importer; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (FileAccess::exists(p_path + ".import")) { | 
					
						
							|  |  |  | 		PathAndType pat; | 
					
						
							|  |  |  | 		Error err = _get_path_and_type(p_path, pat); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (err == OK) { | 
					
						
							|  |  |  | 			importer = get_importer_by_name(pat.importer); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		importer = get_importer_by_extension(p_path.get_extension().to_lower()); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (importer.is_valid()) { | 
					
						
							| 
									
										
										
										
											2017-09-20 20:59:19 -03:00
										 |  |  | 		return importer->get_import_order(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-09-20 20:59:19 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | bool ResourceFormatImporter::handles_type(const String &p_type) const { | 
					
						
							| 
									
										
										
										
											2018-01-06 16:36:49 -03:00
										 |  |  | 	for (int i = 0; i < importers.size(); i++) { | 
					
						
							|  |  |  | 		String res_type = importers[i]->get_resource_type(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (res_type == String()) { | 
					
						
							| 
									
										
										
										
											2017-02-01 20:41:05 -03:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		if (ClassDB::is_parent_class(res_type, p_type)) { | 
					
						
							| 
									
										
										
										
											2017-01-25 21:55:59 -03:00
										 |  |  | 			return true; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-01-25 21:55:59 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return true; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | String ResourceFormatImporter::get_internal_resource_path(const String &p_path) const { | 
					
						
							| 
									
										
										
										
											2017-02-06 00:38:39 -03:00
										 |  |  | 	PathAndType pat; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	Error err = _get_path_and_type(p_path, pat); | 
					
						
							| 
									
										
										
										
											2017-02-06 00:38:39 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	if (err != OK) { | 
					
						
							| 
									
										
										
										
											2017-02-06 00:38:39 -03:00
										 |  |  | 		return String(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return pat.path; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-15 01:13:14 +02:00
										 |  |  | void ResourceFormatImporter::get_internal_resource_path_list(const String &p_path, List<String> *r_paths) { | 
					
						
							|  |  |  | 	Error err; | 
					
						
							|  |  |  | 	FileAccess *f = FileAccess::open(p_path + ".import", FileAccess::READ, &err); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!f) { | 
					
						
							| 
									
										
										
										
											2017-08-15 01:13:14 +02:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-08-15 01:13:14 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	VariantParser::StreamFile stream; | 
					
						
							|  |  |  | 	stream.f = f; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	String assign; | 
					
						
							|  |  |  | 	Variant value; | 
					
						
							|  |  |  | 	VariantParser::Tag next_tag; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	int lines = 0; | 
					
						
							|  |  |  | 	String error_text; | 
					
						
							|  |  |  | 	while (true) { | 
					
						
							|  |  |  | 		assign = Variant(); | 
					
						
							|  |  |  | 		next_tag.fields.clear(); | 
					
						
							|  |  |  | 		next_tag.name = String(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | 		err = VariantParser::parse_tag_assign_eof(&stream, lines, error_text, next_tag, assign, value, nullptr, true); | 
					
						
							| 
									
										
										
										
											2017-08-15 01:13:14 +02:00
										 |  |  | 		if (err == ERR_FILE_EOF) { | 
					
						
							|  |  |  | 			memdelete(f); | 
					
						
							|  |  |  | 			return; | 
					
						
							|  |  |  | 		} else if (err != OK) { | 
					
						
							| 
									
										
										
										
											2019-11-06 17:03:04 +01:00
										 |  |  | 			ERR_PRINT("ResourceFormatImporter::get_internal_resource_path_list - " + p_path + ".import:" + itos(lines) + " error: " + error_text); | 
					
						
							| 
									
										
										
										
											2017-08-15 01:13:14 +02:00
										 |  |  | 			memdelete(f); | 
					
						
							|  |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (assign != String()) { | 
					
						
							|  |  |  | 			if (assign.begins_with("path.")) { | 
					
						
							|  |  |  | 				r_paths->push_back(value); | 
					
						
							|  |  |  | 			} else if (assign == "path") { | 
					
						
							|  |  |  | 				r_paths->push_back(value); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} else if (next_tag.name != "remap") { | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	memdelete(f); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-19 15:54:33 -03:00
										 |  |  | String ResourceFormatImporter::get_import_group_file(const String &p_path) const { | 
					
						
							|  |  |  | 	bool valid = true; | 
					
						
							|  |  |  | 	PathAndType pat; | 
					
						
							|  |  |  | 	_get_path_and_type(p_path, pat, &valid); | 
					
						
							| 
									
										
										
										
											2019-05-20 13:51:51 +02:00
										 |  |  | 	return valid ? pat.group_file : String(); | 
					
						
							| 
									
										
										
										
											2019-04-19 15:54:33 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-29 19:50:58 -03:00
										 |  |  | bool ResourceFormatImporter::is_import_valid(const String &p_path) const { | 
					
						
							|  |  |  | 	bool valid = true; | 
					
						
							|  |  |  | 	PathAndType pat; | 
					
						
							|  |  |  | 	_get_path_and_type(p_path, pat, &valid); | 
					
						
							|  |  |  | 	return valid; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-25 21:55:59 -03:00
										 |  |  | String ResourceFormatImporter::get_resource_type(const String &p_path) const { | 
					
						
							|  |  |  | 	PathAndType pat; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	Error err = _get_path_and_type(p_path, pat); | 
					
						
							| 
									
										
										
										
											2017-01-25 21:55:59 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	if (err != OK) { | 
					
						
							| 
									
										
										
										
											2017-01-25 21:55:59 -03:00
										 |  |  | 		return ""; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return pat.type; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-26 18:43:37 -03:00
										 |  |  | Variant ResourceFormatImporter::get_resource_metadata(const String &p_path) const { | 
					
						
							|  |  |  | 	PathAndType pat; | 
					
						
							|  |  |  | 	Error err = _get_path_and_type(p_path, pat); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (err != OK) { | 
					
						
							|  |  |  | 		return Variant(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return pat.metadata; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void ResourceFormatImporter::get_dependencies(const String &p_path, List<String> *p_dependencies, bool p_add_types) { | 
					
						
							| 
									
										
										
										
											2017-01-25 21:55:59 -03:00
										 |  |  | 	PathAndType pat; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	Error err = _get_path_and_type(p_path, pat); | 
					
						
							| 
									
										
										
										
											2017-01-25 21:55:59 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	if (err != OK) { | 
					
						
							| 
									
										
										
										
											2017-01-25 21:55:59 -03:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-01 12:59:42 +02:00
										 |  |  | 	ResourceLoader::get_dependencies(pat.path, p_dependencies, p_add_types); | 
					
						
							| 
									
										
										
										
											2017-01-25 21:55:59 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-20 20:59:19 -03:00
										 |  |  | Ref<ResourceImporter> ResourceFormatImporter::get_importer_by_name(const String &p_name) const { | 
					
						
							| 
									
										
										
										
											2018-01-06 16:36:49 -03:00
										 |  |  | 	for (int i = 0; i < importers.size(); i++) { | 
					
						
							|  |  |  | 		if (importers[i]->get_importer_name() == p_name) { | 
					
						
							|  |  |  | 			return importers[i]; | 
					
						
							| 
									
										
										
										
											2017-02-01 09:45:45 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return Ref<ResourceImporter>(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-17 07:33:00 +01:00
										 |  |  | void ResourceFormatImporter::get_importers_for_extension(const String &p_extension, List<Ref<ResourceImporter>> *r_importers) { | 
					
						
							| 
									
										
										
										
											2018-01-06 16:36:49 -03:00
										 |  |  | 	for (int i = 0; i < importers.size(); i++) { | 
					
						
							| 
									
										
										
										
											2017-02-01 09:45:45 -03:00
										 |  |  | 		List<String> local_exts; | 
					
						
							| 
									
										
										
										
											2018-01-06 16:36:49 -03:00
										 |  |  | 		importers[i]->get_recognized_extensions(&local_exts); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		for (List<String>::Element *F = local_exts.front(); F; F = F->next()) { | 
					
						
							|  |  |  | 			if (p_extension.to_lower() == F->get()) { | 
					
						
							| 
									
										
										
										
											2018-01-06 16:36:49 -03:00
										 |  |  | 				r_importers->push_back(importers[i]); | 
					
						
							| 
									
										
										
										
											2017-02-01 09:45:45 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-20 20:59:19 -03:00
										 |  |  | Ref<ResourceImporter> ResourceFormatImporter::get_importer_by_extension(const String &p_extension) const { | 
					
						
							| 
									
										
										
										
											2017-02-01 09:45:45 -03:00
										 |  |  | 	Ref<ResourceImporter> importer; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	float priority = 0; | 
					
						
							| 
									
										
										
										
											2017-02-01 09:45:45 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-06 16:36:49 -03:00
										 |  |  | 	for (int i = 0; i < importers.size(); i++) { | 
					
						
							| 
									
										
										
										
											2017-02-01 09:45:45 -03:00
										 |  |  | 		List<String> local_exts; | 
					
						
							| 
									
										
										
										
											2018-01-06 16:36:49 -03:00
										 |  |  | 		importers[i]->get_recognized_extensions(&local_exts); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		for (List<String>::Element *F = local_exts.front(); F; F = F->next()) { | 
					
						
							| 
									
										
										
										
											2018-01-06 16:36:49 -03:00
										 |  |  | 			if (p_extension.to_lower() == F->get() && importers[i]->get_priority() > priority) { | 
					
						
							|  |  |  | 				importer = importers[i]; | 
					
						
							|  |  |  | 				priority = importers[i]->get_priority(); | 
					
						
							| 
									
										
										
										
											2017-02-01 09:45:45 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return importer; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | String ResourceFormatImporter::get_import_base_path(const String &p_for_file) const { | 
					
						
							| 
									
										
										
										
											2020-07-05 20:55:43 -04:00
										 |  |  | 	return ProjectSettings::IMPORTED_FILES_PATH.plus_file(p_for_file.get_file() + "-" + p_for_file.md5_text()); | 
					
						
							| 
									
										
										
										
											2017-02-01 09:45:45 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-26 18:43:37 -03:00
										 |  |  | bool ResourceFormatImporter::are_import_settings_valid(const String &p_path) const { | 
					
						
							|  |  |  | 	bool valid = true; | 
					
						
							|  |  |  | 	PathAndType pat; | 
					
						
							|  |  |  | 	_get_path_and_type(p_path, pat, &valid); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!valid) { | 
					
						
							|  |  |  | 		return false; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-27 08:57:37 +01:00
										 |  |  | 	for (int i = 0; i < importers.size(); i++) { | 
					
						
							| 
									
										
										
										
											2019-02-26 18:43:37 -03:00
										 |  |  | 		if (importers[i]->get_importer_name() == pat.importer) { | 
					
						
							|  |  |  | 			if (!importers[i]->are_import_settings_valid(p_path)) { //importer thinks this is not valid
 | 
					
						
							|  |  |  | 				return false; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return true; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-27 08:57:37 +01:00
										 |  |  | String ResourceFormatImporter::get_import_settings_hash() const { | 
					
						
							| 
									
										
										
										
											2020-03-17 07:33:00 +01:00
										 |  |  | 	Vector<Ref<ResourceImporter>> sorted_importers = importers; | 
					
						
							| 
									
										
										
										
											2019-02-27 13:31:11 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	sorted_importers.sort_custom<SortImporterByName>(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-26 18:43:37 -03:00
										 |  |  | 	String hash; | 
					
						
							| 
									
										
										
										
											2019-02-27 13:31:11 -03:00
										 |  |  | 	for (int i = 0; i < sorted_importers.size(); i++) { | 
					
						
							|  |  |  | 		hash += ":" + sorted_importers[i]->get_importer_name() + ":" + sorted_importers[i]->get_import_settings_string(); | 
					
						
							| 
									
										
										
										
											2019-02-26 18:43:37 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	return hash.md5_text(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | ResourceFormatImporter *ResourceFormatImporter::singleton = nullptr; | 
					
						
							| 
									
										
										
										
											2017-02-01 09:45:45 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | ResourceFormatImporter::ResourceFormatImporter() { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	singleton = this; | 
					
						
							| 
									
										
										
										
											2017-02-01 09:45:45 -03:00
										 |  |  | } |