| 
									
										
										
										
											2017-03-05 15:47:28 +01:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*  resource_import.cpp                                                  */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       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
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur.                 */ | 
					
						
							| 
									
										
										
										
											2017-04-08 00:11:42 +02:00
										 |  |  | /* Copyright (c) 2014-2017 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.                */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2017-01-25 21:55:59 -03:00
										 |  |  | #include "resource_import.h"
 | 
					
						
							| 
									
										
										
										
											2017-03-05 15:47:28 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-06 00:38:39 -03:00
										 |  |  | #include "os/os.h"
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | #include "variant_parser.h"
 | 
					
						
							| 
									
										
										
										
											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) { | 
					
						
							| 
									
										
										
										
											2017-01-25 21:55:59 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		err = VariantParser::parse_tag_assign_eof(&stream, lines, error_text, next_tag, assign, value, NULL, true); | 
					
						
							|  |  |  | 		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) { | 
					
						
							|  |  |  | 			ERR_PRINTS("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); | 
					
						
							| 
									
										
										
										
											2017-02-06 00:38:39 -03:00
										 |  |  | 				if (OS::get_singleton()->check_feature_support(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") { | 
					
						
							|  |  |  | 				r_path_and_type.type = 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; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | RES ResourceFormatImporter::load(const String &p_path, const String &p_original_path, Error *r_error) { | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (r_error) | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			*r_error = err; | 
					
						
							| 
									
										
										
										
											2017-01-25 21:55:59 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		return RES(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-31 18:57:03 -03:00
										 |  |  | 	RES res = ResourceLoader::_load(pat.path, p_path, pat.type, false, r_error); | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	for (Set<Ref<ResourceImporter> >::Element *E = importers.front(); E; E = E->next()) { | 
					
						
							| 
									
										
										
										
											2017-01-25 21:55:59 -03:00
										 |  |  | 		List<String> local_exts; | 
					
						
							|  |  |  | 		E->get()->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 { | 
					
						
							| 
									
										
										
										
											2017-01-25 21:55:59 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	if (p_type == "") { | 
					
						
							| 
									
										
										
										
											2017-02-01 09:45:45 -03:00
										 |  |  | 		return get_recognized_extensions(p_extensions); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-25 21:55:59 -03:00
										 |  |  | 	Set<String> found; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	for (Set<Ref<ResourceImporter> >::Element *E = importers.front(); E; E = E->next()) { | 
					
						
							| 
									
										
										
										
											2017-02-01 20:41:05 -03:00
										 |  |  | 		String res_type = E->get()->get_resource_type(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		if (res_type == String()) | 
					
						
							| 
									
										
										
										
											2017-02-01 20:41:05 -03:00
										 |  |  | 			continue; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		if (!ClassDB::is_parent_class(res_type, p_type)) | 
					
						
							| 
									
										
										
										
											2017-01-25 21:55:59 -03:00
										 |  |  | 			continue; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		List<String> local_exts; | 
					
						
							|  |  |  | 		E->get()->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
										 |  |  | bool ResourceFormatImporter::recognize_path(const String &p_path, const String &p_for_type) const { | 
					
						
							| 
									
										
										
										
											2017-02-01 09:45:45 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	return FileAccess::exists(p_path + ".import"); | 
					
						
							| 
									
										
										
										
											2017-02-01 09:45:45 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | bool ResourceFormatImporter::can_be_imported(const String &p_path) const { | 
					
						
							| 
									
										
										
										
											2017-02-01 09:45:45 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return ResourceFormatLoader::recognize_path(p_path); | 
					
						
							| 
									
										
										
										
											2017-01-25 21:55:59 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | bool ResourceFormatImporter::handles_type(const String &p_type) const { | 
					
						
							| 
									
										
										
										
											2017-02-01 09:45:45 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	for (Set<Ref<ResourceImporter> >::Element *E = importers.front(); E; E = E->next()) { | 
					
						
							| 
									
										
										
										
											2017-02-01 20:41:05 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		String res_type = E->get()->get_resource_type(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		if (res_type == String()) | 
					
						
							| 
									
										
										
										
											2017-02-01 20:41:05 -03:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		if (ClassDB::is_parent_class(res_type, p_type)) | 
					
						
							| 
									
										
										
										
											2017-01-25 21:55:59 -03:00
										 |  |  | 			return true; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	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); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!f) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	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(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		err = VariantParser::parse_tag_assign_eof(&stream, lines, error_text, next_tag, assign, value, NULL, true); | 
					
						
							|  |  |  | 		if (err == ERR_FILE_EOF) { | 
					
						
							|  |  |  | 			memdelete(f); | 
					
						
							|  |  |  | 			return; | 
					
						
							|  |  |  | 		} else if (err != OK) { | 
					
						
							|  |  |  | 			ERR_PRINTS("ResourceFormatImporter::get_internal_resource_path_list - " + p_path + ".import:" + itos(lines) + " error: " + error_text); | 
					
						
							|  |  |  | 			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); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	return ResourceLoader::get_dependencies(pat.path, p_dependencies, p_add_types); | 
					
						
							| 
									
										
										
										
											2017-01-25 21:55:59 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | Ref<ResourceImporter> ResourceFormatImporter::get_importer_by_name(const String &p_name) { | 
					
						
							| 
									
										
										
										
											2017-02-01 09:45:45 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	for (Set<Ref<ResourceImporter> >::Element *E = importers.front(); E; E = E->next()) { | 
					
						
							|  |  |  | 		if (E->get()->get_importer_name() == p_name) { | 
					
						
							| 
									
										
										
										
											2017-02-01 09:45:45 -03:00
										 |  |  | 			return E->get(); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return Ref<ResourceImporter>(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void ResourceFormatImporter::get_importers_for_extension(const String &p_extension, List<Ref<ResourceImporter> > *r_importers) { | 
					
						
							| 
									
										
										
										
											2017-02-01 09:45:45 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	for (Set<Ref<ResourceImporter> >::Element *E = importers.front(); E; E = E->next()) { | 
					
						
							| 
									
										
										
										
											2017-02-01 09:45:45 -03:00
										 |  |  | 		List<String> local_exts; | 
					
						
							|  |  |  | 		E->get()->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()) { | 
					
						
							| 
									
										
										
										
											2017-02-01 09:45:45 -03:00
										 |  |  | 				r_importers->push_back(E->get()); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | Ref<ResourceImporter> ResourceFormatImporter::get_importer_by_extension(const String &p_extension) { | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	for (Set<Ref<ResourceImporter> >::Element *E = importers.front(); E; E = E->next()) { | 
					
						
							| 
									
										
										
										
											2017-02-01 09:45:45 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		List<String> local_exts; | 
					
						
							|  |  |  | 		E->get()->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() && E->get()->get_priority() > priority) { | 
					
						
							|  |  |  | 				importer = E->get(); | 
					
						
							|  |  |  | 				priority = E->get()->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 { | 
					
						
							| 
									
										
										
										
											2017-02-01 09:45:45 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	return "res://.import/" + p_for_file.get_file() + "-" + p_for_file.md5_text(); | 
					
						
							| 
									
										
										
										
											2017-02-01 09:45:45 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | ResourceFormatImporter *ResourceFormatImporter::singleton = NULL; | 
					
						
							| 
									
										
										
										
											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
										 |  |  | } |