123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327 |
- /*************************************************************************/
- /* resource_import.cpp */
- /*************************************************************************/
- /* This file is part of: */
- /* GODOT ENGINE */
- /* https://godotengine.org */
- /*************************************************************************/
- /* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
- /* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */
- /* */
- /* Permission is hereby granted, free of charge, to any person obtaining */
- /* a copy of this software and associated documentation files (the */
- /* "Software"), to deal in the Software without restriction, including */
- /* without limitation the rights to use, copy, modify, merge, publish, */
- /* distribute, sublicense, and/or sell copies of the Software, and to */
- /* permit persons to whom the Software is furnished to do so, subject to */
- /* the following conditions: */
- /* */
- /* The above copyright notice and this permission notice shall be */
- /* included in all copies or substantial portions of the Software. */
- /* */
- /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
- /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
- /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
- /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
- /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
- /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
- /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
- /*************************************************************************/
- #include "resource_import.h"
- #include "os/os.h"
- #include "variant_parser.h"
- Error ResourceFormatImporter::_get_path_and_type(const String &p_path, PathAndType &r_path_and_type) const {
- Error err;
- FileAccess *f = FileAccess::open(p_path + ".import", FileAccess::READ, &err);
- if (!f)
- return err;
- VariantParser::StreamFile stream;
- stream.f = f;
- String assign;
- Variant value;
- VariantParser::Tag next_tag;
- int lines = 0;
- String error_text;
- bool path_found = false; //first match must have priority
- 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 OK;
- } else if (err != OK) {
- ERR_PRINTS("ResourceFormatImporter::load - " + p_path + ".import:" + itos(lines) + " error: " + error_text);
- memdelete(f);
- return err;
- }
- if (assign != String()) {
- if (!path_found && assign.begins_with("path.") && r_path_and_type.path == String()) {
- String feature = assign.get_slicec('.', 1);
- if (OS::get_singleton()->check_feature_support(feature)) {
- r_path_and_type.path = value;
- path_found = true; //first match must have priority
- }
- } else if (!path_found && assign == "path") {
- r_path_and_type.path = value;
- path_found = true; //first match must have priority
- } else if (assign == "type") {
- r_path_and_type.type = value;
- }
- } else if (next_tag.name != "remap") {
- break;
- }
- }
- memdelete(f);
- if (r_path_and_type.path == String() || r_path_and_type.type == String()) {
- return ERR_FILE_CORRUPT;
- }
- return OK;
- }
- RES ResourceFormatImporter::load(const String &p_path, const String &p_original_path, Error *r_error) {
- PathAndType pat;
- Error err = _get_path_and_type(p_path, pat);
- if (err != OK) {
- if (r_error)
- *r_error = err;
- return RES();
- }
- RES res = ResourceLoader::load(pat.path, pat.type, false, r_error);
- #ifdef TOOLS_ENABLED
- if (res.is_valid()) {
- res->set_import_last_modified_time(res->get_last_modified_time()); //pass this, if used
- res->set_import_path(pat.path);
- }
- #endif
- return res;
- }
- void ResourceFormatImporter::get_recognized_extensions(List<String> *p_extensions) const {
- Set<String> found;
- for (Set<Ref<ResourceImporter> >::Element *E = importers.front(); E; E = E->next()) {
- List<String> local_exts;
- E->get()->get_recognized_extensions(&local_exts);
- for (List<String>::Element *F = local_exts.front(); F; F = F->next()) {
- if (!found.has(F->get())) {
- p_extensions->push_back(F->get());
- found.insert(F->get());
- }
- }
- }
- }
- void ResourceFormatImporter::get_recognized_extensions_for_type(const String &p_type, List<String> *p_extensions) const {
- if (p_type == "") {
- return get_recognized_extensions(p_extensions);
- }
- Set<String> found;
- for (Set<Ref<ResourceImporter> >::Element *E = importers.front(); E; E = E->next()) {
- String res_type = E->get()->get_resource_type();
- if (res_type == String())
- continue;
- if (!ClassDB::is_parent_class(res_type, p_type))
- continue;
- List<String> local_exts;
- E->get()->get_recognized_extensions(&local_exts);
- for (List<String>::Element *F = local_exts.front(); F; F = F->next()) {
- if (!found.has(F->get())) {
- p_extensions->push_back(F->get());
- found.insert(F->get());
- }
- }
- }
- }
- bool ResourceFormatImporter::recognize_path(const String &p_path, const String &p_for_type) const {
- return FileAccess::exists(p_path + ".import");
- }
- bool ResourceFormatImporter::can_be_imported(const String &p_path) const {
- return ResourceFormatLoader::recognize_path(p_path);
- }
- bool ResourceFormatImporter::handles_type(const String &p_type) const {
- for (Set<Ref<ResourceImporter> >::Element *E = importers.front(); E; E = E->next()) {
- String res_type = E->get()->get_resource_type();
- if (res_type == String())
- continue;
- if (ClassDB::is_parent_class(res_type, p_type))
- return true;
- }
- return true;
- }
- String ResourceFormatImporter::get_internal_resource_path(const String &p_path) const {
- PathAndType pat;
- Error err = _get_path_and_type(p_path, pat);
- if (err != OK) {
- return String();
- }
- return pat.path;
- }
- 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);
- }
- String ResourceFormatImporter::get_resource_type(const String &p_path) const {
- PathAndType pat;
- Error err = _get_path_and_type(p_path, pat);
- if (err != OK) {
- return "";
- }
- return pat.type;
- }
- void ResourceFormatImporter::get_dependencies(const String &p_path, List<String> *p_dependencies, bool p_add_types) {
- PathAndType pat;
- Error err = _get_path_and_type(p_path, pat);
- if (err != OK) {
- return;
- }
- return ResourceLoader::get_dependencies(pat.path, p_dependencies, p_add_types);
- }
- Ref<ResourceImporter> ResourceFormatImporter::get_importer_by_name(const String &p_name) {
- for (Set<Ref<ResourceImporter> >::Element *E = importers.front(); E; E = E->next()) {
- if (E->get()->get_importer_name() == p_name) {
- return E->get();
- }
- }
- return Ref<ResourceImporter>();
- }
- void ResourceFormatImporter::get_importers_for_extension(const String &p_extension, List<Ref<ResourceImporter> > *r_importers) {
- for (Set<Ref<ResourceImporter> >::Element *E = importers.front(); E; E = E->next()) {
- List<String> local_exts;
- E->get()->get_recognized_extensions(&local_exts);
- for (List<String>::Element *F = local_exts.front(); F; F = F->next()) {
- if (p_extension.to_lower() == F->get()) {
- r_importers->push_back(E->get());
- }
- }
- }
- }
- Ref<ResourceImporter> ResourceFormatImporter::get_importer_by_extension(const String &p_extension) {
- Ref<ResourceImporter> importer;
- float priority = 0;
- for (Set<Ref<ResourceImporter> >::Element *E = importers.front(); E; E = E->next()) {
- List<String> local_exts;
- E->get()->get_recognized_extensions(&local_exts);
- 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();
- }
- }
- }
- return importer;
- }
- String ResourceFormatImporter::get_import_base_path(const String &p_for_file) const {
- return "res://.import/" + p_for_file.get_file() + "-" + p_for_file.md5_text();
- }
- ResourceFormatImporter *ResourceFormatImporter::singleton = NULL;
- ResourceFormatImporter::ResourceFormatImporter() {
- singleton = this;
- }
|