2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* resource_loader.cpp */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* http://www.godotengine.org */
|
|
|
|
/*************************************************************************/
|
2017-01-01 22:01:57 +01:00
|
|
|
/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
|
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"
|
|
|
|
#include "print_string.h"
|
|
|
|
#include "globals.h"
|
|
|
|
#include "path_remap.h"
|
|
|
|
#include "os/file_access.h"
|
|
|
|
#include "os/os.h"
|
|
|
|
ResourceFormatLoader *ResourceLoader::loader[MAX_LOADERS];
|
|
|
|
|
|
|
|
int ResourceLoader::loader_count=0;
|
|
|
|
|
|
|
|
|
|
|
|
Error ResourceInteractiveLoader::wait() {
|
|
|
|
|
|
|
|
Error err = poll();
|
|
|
|
while (err==OK) {
|
|
|
|
err=poll();
|
|
|
|
}
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool ResourceFormatLoader::recognize(const String& p_extension) const {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
List<String> extensions;
|
|
|
|
get_recognized_extensions(&extensions);
|
|
|
|
for (List<String>::Element *E=extensions.front();E;E=E->next()) {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-01-14 04:51:09 +01:00
|
|
|
if (E->get().nocasecmp_to(p_extension.get_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;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ResourceFormatLoader::get_recognized_extensions_for_type(const String& p_type,List<String> *p_extensions) const {
|
|
|
|
|
|
|
|
if (p_type=="" || handles_type(p_type))
|
|
|
|
get_recognized_extensions(p_extensions);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ResourceLoader::get_recognized_extensions_for_type(const String& p_type,List<String> *p_extensions) {
|
|
|
|
|
|
|
|
for (int i=0;i<loader_count;i++) {
|
|
|
|
loader[i]->get_recognized_extensions_for_type(p_type,p_extensions);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void ResourceInteractiveLoader::_bind_methods() {
|
|
|
|
|
2017-01-03 03:03:46 +01:00
|
|
|
ClassDB::bind_method(_MD("get_resource"),&ResourceInteractiveLoader::get_resource);
|
|
|
|
ClassDB::bind_method(_MD("poll"),&ResourceInteractiveLoader::poll);
|
|
|
|
ClassDB::bind_method(_MD("wait"),&ResourceInteractiveLoader::wait);
|
|
|
|
ClassDB::bind_method(_MD("get_stage"),&ResourceInteractiveLoader::get_stage);
|
|
|
|
ClassDB::bind_method(_MD("get_stage_count"),&ResourceInteractiveLoader::get_stage_count);
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
class ResourceInteractiveLoaderDefault : public ResourceInteractiveLoader {
|
|
|
|
|
2017-01-03 03:03:46 +01:00
|
|
|
GDCLASS( ResourceInteractiveLoaderDefault, ResourceInteractiveLoader );
|
2014-02-10 02:10:30 +01:00
|
|
|
public:
|
|
|
|
|
|
|
|
Ref<Resource> resource;
|
|
|
|
|
|
|
|
virtual void set_local_path(const String& p_local_path) { /*scene->set_filename(p_local_path);*/ }
|
|
|
|
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; }
|
|
|
|
|
|
|
|
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
|
2015-08-24 01:15:56 +02: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>();
|
|
|
|
|
|
|
|
Ref<ResourceInteractiveLoaderDefault> ril = Ref<ResourceInteractiveLoaderDefault>( memnew( ResourceInteractiveLoaderDefault ));
|
|
|
|
ril->resource=res;
|
|
|
|
return ril;
|
|
|
|
}
|
|
|
|
|
2015-08-24 01:15:56 +02:00
|
|
|
RES ResourceFormatLoader::load(const String &p_path, const String& p_original_path, Error *r_error) {
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2015-05-04 15:17:24 +02:00
|
|
|
String path=p_path;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
//or this must be implemented
|
2015-08-24 01:15:56 +02: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);
|
|
|
|
|
|
|
|
while(true) {
|
|
|
|
|
|
|
|
Error err = ril->poll();
|
|
|
|
|
|
|
|
if (err==ERR_FILE_EOF) {
|
2015-08-24 01:15:56 +02:00
|
|
|
if (r_error)
|
|
|
|
*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)
|
|
|
|
*r_error=err;
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
ERR_FAIL_COND_V(err!=OK,RES());
|
|
|
|
}
|
|
|
|
|
|
|
|
return RES();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-08-24 01:15:56 +02: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
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////
|
|
|
|
|
|
|
|
|
2015-08-24 01:15:56 +02:00
|
|
|
RES ResourceLoader::load(const String &p_path, const String& p_type_hint, bool p_no_cache, Error *r_error) {
|
|
|
|
|
|
|
|
if (r_error)
|
|
|
|
*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())
|
|
|
|
local_path="res://"+p_path;
|
|
|
|
else
|
2017-01-05 13:16:00 +01:00
|
|
|
local_path = GlobalConfig::get_singleton()->localize_path(p_path);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2015-05-04 15:17:24 +02:00
|
|
|
local_path=find_complete_path(local_path,p_type_hint);
|
2014-02-10 02:10:30 +01:00
|
|
|
ERR_FAIL_COND_V(local_path=="",RES());
|
|
|
|
|
|
|
|
if (!p_no_cache && ResourceCache::has(local_path)) {
|
|
|
|
|
|
|
|
if (OS::get_singleton()->is_stdout_verbose())
|
|
|
|
print_line("load resource: "+local_path+" (cached)");
|
|
|
|
|
|
|
|
return RES( ResourceCache::get(local_path ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
String remapped_path = PathRemap::get_singleton()->get_remap(local_path);
|
|
|
|
|
|
|
|
if (OS::get_singleton()->is_stdout_verbose())
|
2014-03-14 02:57:24 +01:00
|
|
|
print_line("load resource: "+remapped_path);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-01-14 04:51:09 +01:00
|
|
|
String extension=remapped_path.get_extension();
|
2014-02-10 02:10:30 +01:00
|
|
|
bool found=false;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
for (int i=0;i<loader_count;i++) {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
if (!loader[i]->recognize(extension))
|
|
|
|
continue;
|
|
|
|
if (p_type_hint!="" && !loader[i]->handles_type(p_type_hint))
|
|
|
|
continue;
|
|
|
|
found=true;
|
2015-08-24 01:15:56 +02:00
|
|
|
RES res = loader[i]->load(remapped_path,local_path,r_error);
|
2014-02-10 02:10:30 +01:00
|
|
|
if (res.is_null())
|
|
|
|
continue;
|
|
|
|
if (!p_no_cache)
|
|
|
|
res->set_path(local_path);
|
|
|
|
#ifdef TOOLS_ENABLED
|
|
|
|
|
|
|
|
res->set_edited(false);
|
|
|
|
if (timestamp_on_load) {
|
|
|
|
uint64_t mt = FileAccess::get_modified_time(remapped_path);
|
|
|
|
//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) {
|
|
|
|
ERR_EXPLAIN("Failed loading resource: "+p_path);
|
|
|
|
} else {
|
|
|
|
ERR_EXPLAIN("No loader found for resource: "+p_path);
|
|
|
|
}
|
|
|
|
ERR_FAIL_V(RES());
|
|
|
|
return RES();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Ref<ResourceImportMetadata> ResourceLoader::load_import_metadata(const String &p_path) {
|
|
|
|
|
|
|
|
|
2015-06-07 03:06:58 +02:00
|
|
|
|
2015-05-04 15:17:24 +02:00
|
|
|
String local_path;
|
|
|
|
if (p_path.is_rel_path())
|
|
|
|
local_path="res://"+p_path;
|
|
|
|
else
|
2017-01-05 13:16:00 +01:00
|
|
|
local_path = GlobalConfig::get_singleton()->localize_path(p_path);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-01-14 04:51:09 +01:00
|
|
|
String extension=p_path.get_extension();
|
2014-02-10 02:10:30 +01:00
|
|
|
Ref<ResourceImportMetadata> ret;
|
|
|
|
|
|
|
|
for (int i=0;i<loader_count;i++) {
|
|
|
|
|
|
|
|
if (!loader[i]->recognize(extension))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
Error err = loader[i]->load_import_metadata(local_path,ret);
|
|
|
|
if (err==OK)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2016-05-27 19:18:40 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
return ret;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
String ResourceLoader::find_complete_path(const String& p_path,const String& p_type) {
|
2014-03-14 02:57:24 +01:00
|
|
|
//this is an old vestige when the engine saved files without extension.
|
|
|
|
//remains here for compatibility with old projects and only because it
|
|
|
|
//can be sometimes nice to open files using .* from a script and have it guess
|
|
|
|
//the right extension.
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
String local_path = p_path;
|
|
|
|
if (local_path.ends_with("*")) {
|
|
|
|
|
|
|
|
//find the extension for resource that ends with *
|
|
|
|
local_path = local_path.substr(0,local_path.length()-1);
|
|
|
|
List<String> extensions;
|
|
|
|
get_recognized_extensions_for_type(p_type,&extensions);
|
|
|
|
List<String> candidates;
|
|
|
|
|
|
|
|
for(List<String>::Element *E=extensions.front();E;E=E->next()) {
|
|
|
|
|
|
|
|
String path = local_path+E->get();
|
|
|
|
|
2014-02-25 13:31:47 +01:00
|
|
|
if (PathRemap::get_singleton()->has_remap(path) || FileAccess::exists(path)) {
|
2014-02-10 02:10:30 +01:00
|
|
|
candidates.push_back(path);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (candidates.size()==0) {
|
|
|
|
return "";
|
|
|
|
} else if (candidates.size()==1 || p_type=="") {
|
|
|
|
return candidates.front()->get();
|
|
|
|
} else {
|
|
|
|
|
|
|
|
for(List<String>::Element *E=candidates.front();E;E=E->next()) {
|
|
|
|
|
|
|
|
String rt = get_resource_type(E->get());
|
2017-01-03 03:03:46 +01:00
|
|
|
if (ClassDB::is_parent_class(rt,p_type)) {
|
2014-02-10 02:10:30 +01:00
|
|
|
return E->get();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return local_path;
|
|
|
|
}
|
|
|
|
|
2015-08-24 01:15:56 +02: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)
|
|
|
|
*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())
|
|
|
|
local_path="res://"+p_path;
|
|
|
|
else
|
2017-01-05 13:16:00 +01:00
|
|
|
local_path = GlobalConfig::get_singleton()->localize_path(p_path);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2015-05-04 15:17:24 +02:00
|
|
|
local_path=find_complete_path(local_path,p_type_hint);
|
2014-02-10 02:10:30 +01:00
|
|
|
ERR_FAIL_COND_V(local_path=="",Ref<ResourceInteractiveLoader>());
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (!p_no_cache && ResourceCache::has(local_path)) {
|
|
|
|
|
|
|
|
if (OS::get_singleton()->is_stdout_verbose())
|
|
|
|
print_line("load resource: "+local_path+" (cached)");
|
|
|
|
|
2016-05-30 01:22:00 +02:00
|
|
|
Ref<Resource> res_cached = ResourceCache::get(local_path);
|
|
|
|
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: ");
|
|
|
|
|
|
|
|
String remapped_path = PathRemap::get_singleton()->get_remap(local_path);
|
|
|
|
|
2017-01-14 04:51:09 +01:00
|
|
|
String extension=remapped_path.get_extension();
|
2014-02-10 02:10:30 +01:00
|
|
|
bool found=false;
|
|
|
|
|
|
|
|
for (int i=0;i<loader_count;i++) {
|
|
|
|
|
|
|
|
if (!loader[i]->recognize(extension))
|
|
|
|
continue;
|
|
|
|
if (p_type_hint!="" && !loader[i]->handles_type(p_type_hint))
|
|
|
|
continue;
|
|
|
|
found=true;
|
2015-08-24 01:15:56 +02:00
|
|
|
Ref<ResourceInteractiveLoader> ril = loader[i]->load_interactive(remapped_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);
|
|
|
|
|
|
|
|
return ril;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (found) {
|
|
|
|
ERR_EXPLAIN("Failed loading resource: "+p_path);
|
|
|
|
} else {
|
|
|
|
ERR_EXPLAIN("No loader found for resource: "+p_path);
|
|
|
|
}
|
|
|
|
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
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
ERR_FAIL_COND( loader_count >= MAX_LOADERS );
|
2016-07-20 02:40:05 +02:00
|
|
|
if (p_at_front) {
|
|
|
|
for(int i=loader_count;i>0;i--) {
|
|
|
|
loader[i]=loader[i-1];
|
|
|
|
}
|
|
|
|
loader[0]=p_format_loader;
|
|
|
|
loader_count++;
|
|
|
|
} else {
|
|
|
|
loader[loader_count++]=p_format_loader;
|
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2015-08-24 01:15:56 +02:00
|
|
|
void ResourceLoader::get_dependencies(const String& p_path, List<String> *p_dependencies, bool p_add_types) {
|
|
|
|
|
|
|
|
|
|
|
|
String local_path;
|
|
|
|
if (p_path.is_rel_path())
|
|
|
|
local_path="res://"+p_path;
|
|
|
|
else
|
2017-01-05 13:16:00 +01:00
|
|
|
local_path = GlobalConfig::get_singleton()->localize_path(p_path);
|
2015-08-24 01:15:56 +02:00
|
|
|
|
|
|
|
String remapped_path = PathRemap::get_singleton()->get_remap(local_path);
|
|
|
|
|
2017-01-14 04:51:09 +01:00
|
|
|
String extension=remapped_path.get_extension();
|
2015-08-24 01:15:56 +02:00
|
|
|
|
|
|
|
for (int i=0;i<loader_count;i++) {
|
|
|
|
|
|
|
|
if (!loader[i]->recognize(extension))
|
|
|
|
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
|
|
|
|
|
|
|
loader[i]->get_dependencies(remapped_path,p_dependencies,p_add_types);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Error ResourceLoader::rename_dependencies(const String &p_path,const Map<String,String>& p_map) {
|
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())
|
|
|
|
local_path="res://"+p_path;
|
|
|
|
else
|
2017-01-05 13:16:00 +01:00
|
|
|
local_path = GlobalConfig::get_singleton()->localize_path(p_path);
|
2015-05-04 15:17:24 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
String remapped_path = PathRemap::get_singleton()->get_remap(local_path);
|
|
|
|
|
2017-01-14 04:51:09 +01:00
|
|
|
String extension=remapped_path.get_extension();
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
for (int i=0;i<loader_count;i++) {
|
|
|
|
|
|
|
|
if (!loader[i]->recognize(extension))
|
|
|
|
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
|
|
|
|
2015-08-24 01:15:56 +02:00
|
|
|
return loader[i]->rename_dependencies(p_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
|
|
|
}
|
|
|
|
|
2015-08-24 01:15:56 +02:00
|
|
|
|
2014-03-14 02:57:24 +01:00
|
|
|
String ResourceLoader::guess_full_filename(const String &p_path,const String& p_type) {
|
|
|
|
|
2015-05-04 15:17:24 +02:00
|
|
|
String local_path;
|
|
|
|
if (p_path.is_rel_path())
|
|
|
|
local_path="res://"+p_path;
|
|
|
|
else
|
2017-01-05 13:16:00 +01:00
|
|
|
local_path = GlobalConfig::get_singleton()->localize_path(p_path);
|
2014-03-14 02:57:24 +01:00
|
|
|
|
|
|
|
return find_complete_path(local_path,p_type);
|
|
|
|
|
|
|
|
}
|
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())
|
|
|
|
local_path="res://"+p_path;
|
|
|
|
else
|
2017-01-05 13:16:00 +01:00
|
|
|
local_path = GlobalConfig::get_singleton()->localize_path(p_path);
|
2015-05-04 15:17:24 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
String remapped_path = PathRemap::get_singleton()->get_remap(local_path);
|
2017-01-14 04:51:09 +01:00
|
|
|
String extension=remapped_path.get_extension();
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
for (int i=0;i<loader_count;i++) {
|
|
|
|
|
|
|
|
String result = loader[i]->get_resource_type(local_path);
|
|
|
|
if (result!="")
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
return "";
|
|
|
|
|
|
|
|
}
|
|
|
|
ResourceLoadErrorNotify ResourceLoader::err_notify=NULL;
|
|
|
|
void *ResourceLoader::err_notify_ud=NULL;
|
|
|
|
|
2015-08-24 01:15:56 +02:00
|
|
|
DependencyErrorNotify ResourceLoader::dep_err_notify=NULL;
|
|
|
|
void *ResourceLoader::dep_err_notify_ud=NULL;
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
bool ResourceLoader::abort_on_missing_resource=true;
|
|
|
|
bool ResourceLoader::timestamp_on_load=false;
|
|
|
|
|