2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* resource_loader.cpp */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 14:16:55 +02:00
|
|
|
/* https://godotengine.org */
|
2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
2017-01-01 22:01:57 +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) */
|
2014-02-10 02:10:30 +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. */
|
|
|
|
/*************************************************************************/
|
|
|
|
#include "resource_loader.h"
|
2017-06-28 22:00:18 +02:00
|
|
|
#include "io/resource_import.h"
|
2014-02-10 02:10:30 +01:00
|
|
|
#include "os/file_access.h"
|
|
|
|
#include "os/os.h"
|
2017-03-05 16:44:50 +01:00
|
|
|
#include "path_remap.h"
|
|
|
|
#include "print_string.h"
|
2017-07-22 12:11:42 +02:00
|
|
|
#include "project_settings.h"
|
2017-06-28 22:00:18 +02:00
|
|
|
#include "translation.h"
|
2014-02-10 02:10:30 +01:00
|
|
|
ResourceFormatLoader *ResourceLoader::loader[MAX_LOADERS];
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
int ResourceLoader::loader_count = 0;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
Error ResourceInteractiveLoader::wait() {
|
|
|
|
|
|
|
|
Error err = poll();
|
2017-03-05 16:44:50 +01:00
|
|
|
while (err == OK) {
|
|
|
|
err = poll();
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
bool ResourceFormatLoader::recognize_path(const String &p_path, const String &p_for_type) const {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-01-26 01:55:59 +01:00
|
|
|
String extension = p_path.get_extension();
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
List<String> extensions;
|
2017-03-05 16:44:50 +01:00
|
|
|
if (p_for_type == String()) {
|
2017-01-26 01:55:59 +01:00
|
|
|
get_recognized_extensions(&extensions);
|
|
|
|
} else {
|
2017-03-05 16:44:50 +01:00
|
|
|
get_recognized_extensions_for_type(p_for_type, &extensions);
|
2017-01-26 01:55:59 +01:00
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
for (List<String>::Element *E = extensions.front(); E; E = E->next()) {
|
2017-02-15 12:29:46 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (E->get().nocasecmp_to(extension) == 0)
|
2014-02-10 02:10:30 +01:00
|
|
|
return true;
|
|
|
|
}
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void ResourceFormatLoader::get_recognized_extensions_for_type(const String &p_type, List<String> *p_extensions) const {
|
2017-01-26 01:55:59 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (p_type == "" || handles_type(p_type))
|
2014-02-10 02:10:30 +01:00
|
|
|
get_recognized_extensions(p_extensions);
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void ResourceLoader::get_recognized_extensions_for_type(const String &p_type, List<String> *p_extensions) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
for (int i = 0; i < loader_count; i++) {
|
|
|
|
loader[i]->get_recognized_extensions_for_type(p_type, p_extensions);
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ResourceInteractiveLoader::_bind_methods() {
|
|
|
|
|
2017-08-09 13:19:41 +02:00
|
|
|
ClassDB::bind_method(D_METHOD("get_resource"), &ResourceInteractiveLoader::get_resource);
|
2017-03-05 16:44:50 +01:00
|
|
|
ClassDB::bind_method(D_METHOD("poll"), &ResourceInteractiveLoader::poll);
|
|
|
|
ClassDB::bind_method(D_METHOD("wait"), &ResourceInteractiveLoader::wait);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_stage"), &ResourceInteractiveLoader::get_stage);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_stage_count"), &ResourceInteractiveLoader::get_stage_count);
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
class ResourceInteractiveLoaderDefault : public ResourceInteractiveLoader {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
GDCLASS(ResourceInteractiveLoaderDefault, ResourceInteractiveLoader);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
public:
|
2014-02-10 02:10:30 +01:00
|
|
|
Ref<Resource> resource;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
virtual void set_local_path(const String &p_local_path) { /*scene->set_filename(p_local_path);*/
|
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
virtual Ref<Resource> get_resource() { return resource; }
|
|
|
|
virtual Error poll() { return ERR_FILE_EOF; }
|
|
|
|
virtual int get_stage() const { return 1; }
|
|
|
|
virtual int get_stage_count() const { return 1; }
|
2017-06-28 22:00:18 +02:00
|
|
|
virtual void set_translation_remapped(bool p_remapped) { resource->set_as_translation_remapped(p_remapped); }
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
ResourceInteractiveLoaderDefault() {}
|
|
|
|
};
|
|
|
|
|
2015-08-24 01:15:56 +02:00
|
|
|
Ref<ResourceInteractiveLoader> ResourceFormatLoader::load_interactive(const String &p_path, Error *r_error) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
//either this
|
2017-03-05 16:44:50 +01:00
|
|
|
Ref<Resource> res = load(p_path, p_path, r_error);
|
2014-02-10 02:10:30 +01:00
|
|
|
if (res.is_null())
|
|
|
|
return Ref<ResourceInteractiveLoader>();
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Ref<ResourceInteractiveLoaderDefault> ril = Ref<ResourceInteractiveLoaderDefault>(memnew(ResourceInteractiveLoaderDefault));
|
|
|
|
ril->resource = res;
|
2014-02-10 02:10:30 +01:00
|
|
|
return ril;
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
RES ResourceFormatLoader::load(const String &p_path, const String &p_original_path, Error *r_error) {
|
2015-08-24 01:15:56 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
String path = p_path;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
//or this must be implemented
|
2017-03-05 16:44:50 +01:00
|
|
|
Ref<ResourceInteractiveLoader> ril = load_interactive(p_path, r_error);
|
2014-02-10 02:10:30 +01:00
|
|
|
if (!ril.is_valid())
|
|
|
|
return RES();
|
|
|
|
ril->set_local_path(p_original_path);
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
while (true) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
Error err = ril->poll();
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (err == ERR_FILE_EOF) {
|
2015-08-24 01:15:56 +02:00
|
|
|
if (r_error)
|
2017-03-05 16:44:50 +01:00
|
|
|
*r_error = OK;
|
2014-02-10 02:10:30 +01:00
|
|
|
return ril->get_resource();
|
|
|
|
}
|
|
|
|
|
2015-08-24 01:15:56 +02:00
|
|
|
if (r_error)
|
2017-03-05 16:44:50 +01:00
|
|
|
*r_error = err;
|
2015-08-24 01:15:56 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
ERR_FAIL_COND_V(err != OK, RES());
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return RES();
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void ResourceFormatLoader::get_dependencies(const String &p_path, List<String> *p_dependencies, bool p_add_types) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
//do nothing by default
|
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
RES ResourceLoader::load(const String &p_path, const String &p_type_hint, bool p_no_cache, Error *r_error) {
|
2015-08-24 01:15:56 +02:00
|
|
|
|
|
|
|
if (r_error)
|
2017-03-05 16:44:50 +01:00
|
|
|
*r_error = ERR_CANT_OPEN;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2015-05-04 15:17:24 +02:00
|
|
|
String local_path;
|
|
|
|
if (p_path.is_rel_path())
|
2017-03-05 16:44:50 +01:00
|
|
|
local_path = "res://" + p_path;
|
2015-05-04 15:17:24 +02:00
|
|
|
else
|
2017-07-19 22:00:46 +02:00
|
|
|
local_path = ProjectSettings::get_singleton()->localize_path(p_path);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-06-28 22:00:18 +02:00
|
|
|
bool xl_remapped = false;
|
|
|
|
String path = _path_remap(local_path, &xl_remapped);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-06-28 22:00:18 +02:00
|
|
|
ERR_FAIL_COND_V(path == "", RES());
|
|
|
|
|
|
|
|
if (!p_no_cache && ResourceCache::has(path)) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
if (OS::get_singleton()->is_stdout_verbose())
|
2017-06-28 22:00:18 +02:00
|
|
|
print_line("load resource: " + path + " (cached)");
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-06-28 22:00:18 +02:00
|
|
|
return RES(ResourceCache::get(path));
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (OS::get_singleton()->is_stdout_verbose())
|
2017-06-28 22:00:18 +02:00
|
|
|
print_line("load resource: " + path);
|
2017-03-05 16:44:50 +01:00
|
|
|
bool found = false;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-04-23 10:32:52 +02:00
|
|
|
// Try all loaders and pick the first match for the type hint
|
2017-03-05 16:44:50 +01:00
|
|
|
for (int i = 0; i < loader_count; i++) {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-06-28 22:00:18 +02:00
|
|
|
if (!loader[i]->recognize_path(path, p_type_hint)) {
|
2014-02-10 02:10:30 +01:00
|
|
|
continue;
|
2017-02-15 12:29:46 +01:00
|
|
|
}
|
2017-03-05 16:44:50 +01:00
|
|
|
found = true;
|
2017-06-28 22:00:18 +02:00
|
|
|
RES res = loader[i]->load(path, path, r_error);
|
2017-02-15 12:29:46 +01:00
|
|
|
if (res.is_null()) {
|
2014-02-10 02:10:30 +01:00
|
|
|
continue;
|
2017-02-15 12:29:46 +01:00
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
if (!p_no_cache)
|
|
|
|
res->set_path(local_path);
|
2017-06-28 22:00:18 +02:00
|
|
|
|
|
|
|
if (xl_remapped)
|
|
|
|
res->set_as_translation_remapped(true);
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
#ifdef TOOLS_ENABLED
|
|
|
|
|
|
|
|
res->set_edited(false);
|
|
|
|
if (timestamp_on_load) {
|
2017-06-28 22:00:18 +02:00
|
|
|
uint64_t mt = FileAccess::get_modified_time(path);
|
2014-02-10 02:10:30 +01:00
|
|
|
//printf("mt %s: %lli\n",remapped_path.utf8().get_data(),mt);
|
|
|
|
res->set_last_modified_time(mt);
|
|
|
|
}
|
|
|
|
#endif
|
2014-02-26 14:08:17 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (found) {
|
2017-06-28 22:00:18 +02:00
|
|
|
ERR_EXPLAIN("Failed loading resource: " + path);
|
2014-02-10 02:10:30 +01:00
|
|
|
} else {
|
2017-06-28 22:00:18 +02:00
|
|
|
ERR_EXPLAIN("No loader found for resource: " + path);
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
ERR_FAIL_V(RES());
|
|
|
|
return RES();
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Ref<ResourceInteractiveLoader> ResourceLoader::load_interactive(const String &p_path, const String &p_type_hint, bool p_no_cache, Error *r_error) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2015-08-24 01:15:56 +02:00
|
|
|
if (r_error)
|
2017-03-05 16:44:50 +01:00
|
|
|
*r_error = ERR_CANT_OPEN;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2015-05-04 15:17:24 +02:00
|
|
|
String local_path;
|
|
|
|
if (p_path.is_rel_path())
|
2017-03-05 16:44:50 +01:00
|
|
|
local_path = "res://" + p_path;
|
2015-05-04 15:17:24 +02:00
|
|
|
else
|
2017-07-19 22:00:46 +02:00
|
|
|
local_path = ProjectSettings::get_singleton()->localize_path(p_path);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-06-28 22:00:18 +02:00
|
|
|
bool xl_remapped = false;
|
|
|
|
String path = _path_remap(local_path, &xl_remapped);
|
|
|
|
|
|
|
|
ERR_FAIL_COND_V(path == "", Ref<ResourceInteractiveLoader>());
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-06-28 22:00:18 +02:00
|
|
|
if (!p_no_cache && ResourceCache::has(path)) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
if (OS::get_singleton()->is_stdout_verbose())
|
2017-06-28 22:00:18 +02:00
|
|
|
print_line("load resource: " + path + " (cached)");
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-06-28 22:00:18 +02:00
|
|
|
Ref<Resource> res_cached = ResourceCache::get(path);
|
2016-05-30 01:22:00 +02:00
|
|
|
Ref<ResourceInteractiveLoaderDefault> ril = Ref<ResourceInteractiveLoaderDefault>(memnew(ResourceInteractiveLoaderDefault));
|
|
|
|
|
|
|
|
ril->resource = res_cached;
|
|
|
|
return ril;
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (OS::get_singleton()->is_stdout_verbose())
|
|
|
|
print_line("load resource: ");
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
bool found = false;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
for (int i = 0; i < loader_count; i++) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-06-28 22:00:18 +02:00
|
|
|
if (!loader[i]->recognize_path(path, p_type_hint))
|
2014-02-10 02:10:30 +01:00
|
|
|
continue;
|
2017-03-05 16:44:50 +01:00
|
|
|
found = true;
|
2017-06-28 22:00:18 +02:00
|
|
|
Ref<ResourceInteractiveLoader> ril = loader[i]->load_interactive(path, r_error);
|
2014-02-10 02:10:30 +01:00
|
|
|
if (ril.is_null())
|
|
|
|
continue;
|
|
|
|
if (!p_no_cache)
|
|
|
|
ril->set_local_path(local_path);
|
2017-06-28 22:00:18 +02:00
|
|
|
if (xl_remapped)
|
|
|
|
ril->set_translation_remapped(true);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
return ril;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (found) {
|
2017-06-28 22:00:18 +02:00
|
|
|
ERR_EXPLAIN("Failed loading resource: " + path);
|
2014-02-10 02:10:30 +01:00
|
|
|
} else {
|
2017-06-28 22:00:18 +02:00
|
|
|
ERR_EXPLAIN("No loader found for resource: " + path);
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
ERR_FAIL_V(Ref<ResourceInteractiveLoader>());
|
|
|
|
return Ref<ResourceInteractiveLoader>();
|
|
|
|
}
|
|
|
|
|
2016-07-20 02:40:05 +02:00
|
|
|
void ResourceLoader::add_resource_format_loader(ResourceFormatLoader *p_format_loader, bool p_at_front) {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
ERR_FAIL_COND(loader_count >= MAX_LOADERS);
|
2016-07-20 02:40:05 +02:00
|
|
|
if (p_at_front) {
|
2017-03-05 16:44:50 +01:00
|
|
|
for (int i = loader_count; i > 0; i--) {
|
|
|
|
loader[i] = loader[i - 1];
|
2016-07-20 02:40:05 +02:00
|
|
|
}
|
2017-03-05 16:44:50 +01:00
|
|
|
loader[0] = p_format_loader;
|
2016-07-20 02:40:05 +02:00
|
|
|
loader_count++;
|
|
|
|
} else {
|
2017-03-05 16:44:50 +01:00
|
|
|
loader[loader_count++] = p_format_loader;
|
2016-07-20 02:40:05 +02:00
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void ResourceLoader::get_dependencies(const String &p_path, List<String> *p_dependencies, bool p_add_types) {
|
2015-08-24 01:15:56 +02:00
|
|
|
|
2017-06-28 22:00:18 +02:00
|
|
|
String path = _path_remap(p_path);
|
|
|
|
|
2015-08-24 01:15:56 +02:00
|
|
|
String local_path;
|
2017-06-28 22:00:18 +02:00
|
|
|
if (path.is_rel_path())
|
|
|
|
local_path = "res://" + path;
|
2015-08-24 01:15:56 +02:00
|
|
|
else
|
2017-07-19 22:00:46 +02:00
|
|
|
local_path = ProjectSettings::get_singleton()->localize_path(path);
|
2015-08-24 01:15:56 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
for (int i = 0; i < loader_count; i++) {
|
2015-08-24 01:15:56 +02:00
|
|
|
|
2017-01-26 01:55:59 +01:00
|
|
|
if (!loader[i]->recognize_path(local_path))
|
2015-08-24 01:15:56 +02:00
|
|
|
continue;
|
2017-01-14 12:26:56 +01:00
|
|
|
/*
|
|
|
|
if (p_type_hint!="" && !loader[i]->handles_type(p_type_hint))
|
|
|
|
continue;
|
|
|
|
*/
|
2015-08-24 01:15:56 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
loader[i]->get_dependencies(local_path, p_dependencies, p_add_types);
|
2015-08-24 01:15:56 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Error ResourceLoader::rename_dependencies(const String &p_path, const Map<String, String> &p_map) {
|
2015-05-04 15:17:24 +02:00
|
|
|
|
2017-06-28 22:00:18 +02:00
|
|
|
String path = _path_remap(p_path);
|
|
|
|
|
2015-05-04 15:17:24 +02:00
|
|
|
String local_path;
|
2017-06-28 22:00:18 +02:00
|
|
|
if (path.is_rel_path())
|
|
|
|
local_path = "res://" + path;
|
2015-05-04 15:17:24 +02:00
|
|
|
else
|
2017-07-19 22:00:46 +02:00
|
|
|
local_path = ProjectSettings::get_singleton()->localize_path(path);
|
2015-05-04 15:17:24 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
for (int i = 0; i < loader_count; i++) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-01-26 01:55:59 +01:00
|
|
|
if (!loader[i]->recognize_path(local_path))
|
2014-02-10 02:10:30 +01:00
|
|
|
continue;
|
2017-01-14 12:26:56 +01:00
|
|
|
/*
|
|
|
|
if (p_type_hint!="" && !loader[i]->handles_type(p_type_hint))
|
|
|
|
continue;
|
|
|
|
*/
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
return loader[i]->rename_dependencies(local_path, p_map);
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
2015-08-24 01:15:56 +02:00
|
|
|
|
|
|
|
return OK; // ??
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
String ResourceLoader::get_resource_type(const String &p_path) {
|
|
|
|
|
2015-05-04 15:17:24 +02:00
|
|
|
String local_path;
|
|
|
|
if (p_path.is_rel_path())
|
2017-03-05 16:44:50 +01:00
|
|
|
local_path = "res://" + p_path;
|
2015-05-04 15:17:24 +02:00
|
|
|
else
|
2017-07-19 22:00:46 +02:00
|
|
|
local_path = ProjectSettings::get_singleton()->localize_path(p_path);
|
2015-05-04 15:17:24 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
for (int i = 0; i < loader_count; i++) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
String result = loader[i]->get_resource_type(local_path);
|
2017-03-05 16:44:50 +01:00
|
|
|
if (result != "")
|
2014-02-10 02:10:30 +01:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
return "";
|
|
|
|
}
|
2017-06-28 22:00:18 +02:00
|
|
|
|
|
|
|
String ResourceLoader::_path_remap(const String &p_path, bool *r_translation_remapped) {
|
|
|
|
|
|
|
|
if (translation_remaps.has(p_path)) {
|
|
|
|
|
|
|
|
Vector<String> &v = *translation_remaps.getptr(p_path);
|
|
|
|
String locale = TranslationServer::get_singleton()->get_locale();
|
|
|
|
if (r_translation_remapped) {
|
|
|
|
*r_translation_remapped = true;
|
|
|
|
}
|
|
|
|
for (int i = 0; i < v.size(); i++) {
|
|
|
|
|
|
|
|
int split = v[i].find_last(":");
|
|
|
|
if (split == -1)
|
|
|
|
continue;
|
|
|
|
String l = v[i].right(split + 1).strip_edges();
|
|
|
|
if (l == String())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (l.begins_with(locale)) {
|
|
|
|
return v[i].left(split);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return p_path;
|
|
|
|
}
|
|
|
|
|
|
|
|
String ResourceLoader::import_remap(const String &p_path) {
|
|
|
|
|
|
|
|
if (ResourceFormatImporter::get_singleton()->recognize_path(p_path)) {
|
|
|
|
|
|
|
|
return ResourceFormatImporter::get_singleton()->get_internal_resource_path(p_path);
|
|
|
|
}
|
|
|
|
|
|
|
|
return p_path;
|
|
|
|
}
|
|
|
|
|
|
|
|
String ResourceLoader::path_remap(const String &p_path) {
|
|
|
|
return _path_remap(p_path);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ResourceLoader::reload_translation_remaps() {
|
|
|
|
|
|
|
|
if (ResourceCache::lock) {
|
|
|
|
ResourceCache::lock->read_lock();
|
|
|
|
}
|
|
|
|
|
|
|
|
List<Resource *> to_reload;
|
|
|
|
SelfList<Resource> *E = remapped_list.first();
|
|
|
|
|
|
|
|
while (E) {
|
|
|
|
to_reload.push_back(E->self());
|
|
|
|
E = E->next();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ResourceCache::lock) {
|
|
|
|
ResourceCache::lock->read_unlock();
|
|
|
|
}
|
|
|
|
|
|
|
|
//now just make sure to not delete any of these resources while changing locale..
|
|
|
|
while (to_reload.front()) {
|
|
|
|
to_reload.front()->get()->reload_from_file();
|
|
|
|
to_reload.pop_front();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ResourceLoader::load_translation_remaps() {
|
|
|
|
|
2017-07-26 15:03:13 +02:00
|
|
|
if (!ProjectSettings::get_singleton()->has("locale/translation_remaps"))
|
|
|
|
return;
|
|
|
|
|
2017-07-19 22:00:46 +02:00
|
|
|
Dictionary remaps = ProjectSettings::get_singleton()->get("locale/translation_remaps");
|
2017-06-28 22:00:18 +02:00
|
|
|
List<Variant> keys;
|
|
|
|
remaps.get_key_list(&keys);
|
|
|
|
for (List<Variant>::Element *E = keys.front(); E; E = E->next()) {
|
|
|
|
|
|
|
|
Array langs = remaps[E->get()];
|
|
|
|
Vector<String> lang_remaps;
|
|
|
|
lang_remaps.resize(langs.size());
|
|
|
|
for (int i = 0; i < langs.size(); i++) {
|
|
|
|
lang_remaps[i] = langs[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
translation_remaps[String(E->get())] = lang_remaps;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ResourceLoader::clear_translation_remaps() {
|
|
|
|
translation_remaps.clear();
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
ResourceLoadErrorNotify ResourceLoader::err_notify = NULL;
|
|
|
|
void *ResourceLoader::err_notify_ud = NULL;
|
2015-08-24 01:15:56 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
DependencyErrorNotify ResourceLoader::dep_err_notify = NULL;
|
|
|
|
void *ResourceLoader::dep_err_notify_ud = NULL;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
bool ResourceLoader::abort_on_missing_resource = true;
|
|
|
|
bool ResourceLoader::timestamp_on_load = false;
|
2017-06-28 22:00:18 +02:00
|
|
|
|
|
|
|
SelfList<Resource>::List ResourceLoader::remapped_list;
|
|
|
|
HashMap<String, Vector<String> > ResourceLoader::translation_remaps;
|