aboutsummaryrefslogtreecommitdiff
path: root/core/io/resource_loader.h
diff options
context:
space:
mode:
authorRémi Verschelde2017-03-05 16:44:50 +0100
committerRémi Verschelde2017-03-05 16:44:50 +0100
commit5dbf1809c6e3e905b94b8764e99491e608122261 (patch)
tree5e5a5360db15d86d59ec8c6e4f7eb511388c5a9a /core/io/resource_loader.h
parent45438e9918d421b244bfd7776a30e67dc7f2d3e3 (diff)
downloadgodot-5dbf180.tar.gz
godot-5dbf180.tar.zst
godot-5dbf180.zip
A Whole New World (clang-format edition)
I can show you the code Pretty, with proper whitespace Tell me, coder, now when did You last write readable code? I can open your eyes Make you see your bad indent Force you to respect the style The core devs agreed upon A whole new world A new fantastic code format A de facto standard With some sugar Enforced with clang-format A whole new world A dazzling style we all dreamed of And when we read it through It's crystal clear That now we're in a whole new world of code
Diffstat (limited to 'core/io/resource_loader.h')
-rw-r--r--core/io/resource_loader.h88
1 files changed, 44 insertions, 44 deletions
diff --git a/core/io/resource_loader.h b/core/io/resource_loader.h
index f464415e1..0d51b0741 100644
--- a/core/io/resource_loader.h
+++ b/core/io/resource_loader.h
@@ -37,86 +37,86 @@
class ResourceInteractiveLoader : public Reference {
- GDCLASS(ResourceInteractiveLoader,Reference);
-protected:
+ GDCLASS(ResourceInteractiveLoader, Reference);
+protected:
static void _bind_methods();
-public:
- virtual void set_local_path(const String& p_local_path)=0;
- virtual Ref<Resource> get_resource()=0;
- virtual Error poll()=0;
- virtual int get_stage() const=0;
- virtual int get_stage_count() const=0;
+public:
+ virtual void set_local_path(const String &p_local_path) = 0;
+ virtual Ref<Resource> get_resource() = 0;
+ virtual Error poll() = 0;
+ virtual int get_stage() const = 0;
+ virtual int get_stage_count() const = 0;
virtual Error wait();
ResourceInteractiveLoader() {}
};
-
class ResourceFormatLoader {
public:
-
- virtual Ref<ResourceInteractiveLoader> load_interactive(const String &p_path,Error *r_error=NULL);
- virtual RES load(const String &p_path,const String& p_original_path="",Error *r_error=NULL);
- virtual void get_recognized_extensions(List<String> *p_extensions) const=0;
- virtual void get_recognized_extensions_for_type(const String& p_type,List<String> *p_extensions) const;
- virtual bool recognize_path(const String& p_path,const String& p_for_type=String()) const;
- virtual bool handles_type(const String& p_type) const=0;
- virtual String get_resource_type(const String &p_path) const=0;
- virtual void get_dependencies(const String& p_path,List<String> *p_dependencies,bool p_add_types=false);
- virtual Error rename_dependencies(const String &p_path,const Map<String,String>& p_map) { return OK; }
+ virtual Ref<ResourceInteractiveLoader> load_interactive(const String &p_path, Error *r_error = NULL);
+ virtual RES load(const String &p_path, const String &p_original_path = "", Error *r_error = NULL);
+ virtual void get_recognized_extensions(List<String> *p_extensions) const = 0;
+ virtual void get_recognized_extensions_for_type(const String &p_type, List<String> *p_extensions) const;
+ virtual bool recognize_path(const String &p_path, const String &p_for_type = String()) const;
+ virtual bool handles_type(const String &p_type) const = 0;
+ virtual String get_resource_type(const String &p_path) const = 0;
+ virtual void get_dependencies(const String &p_path, List<String> *p_dependencies, bool p_add_types = false);
+ virtual Error rename_dependencies(const String &p_path, const Map<String, String> &p_map) { return OK; }
virtual ~ResourceFormatLoader() {}
};
-
-typedef void (*ResourceLoadErrorNotify)(void *p_ud,const String& p_text);
-typedef void (*DependencyErrorNotify)(void *p_ud,const String& p_loading,const String& p_which,const String& p_type);
-
+typedef void (*ResourceLoadErrorNotify)(void *p_ud, const String &p_text);
+typedef void (*DependencyErrorNotify)(void *p_ud, const String &p_loading, const String &p_which, const String &p_type);
class ResourceLoader {
enum {
- MAX_LOADERS=64
+ MAX_LOADERS = 64
};
static ResourceFormatLoader *loader[MAX_LOADERS];
static int loader_count;
static bool timestamp_on_load;
- static void* err_notify_ud;
+ static void *err_notify_ud;
static ResourceLoadErrorNotify err_notify;
- static void* dep_err_notify_ud;
+ static void *dep_err_notify_ud;
static DependencyErrorNotify dep_err_notify;
static bool abort_on_missing_resource;
public:
+ static Ref<ResourceInteractiveLoader> load_interactive(const String &p_path, const String &p_type_hint = "", bool p_no_cache = false, Error *r_error = NULL);
+ static RES load(const String &p_path, const String &p_type_hint = "", bool p_no_cache = false, Error *r_error = NULL);
-
-
- static Ref<ResourceInteractiveLoader> load_interactive(const String &p_path,const String& p_type_hint="",bool p_no_cache=false,Error *r_error=NULL);
- static RES load(const String &p_path,const String& p_type_hint="",bool p_no_cache=false,Error *r_error=NULL);
-
- static void get_recognized_extensions_for_type(const String& p_type,List<String> *p_extensions);
- static void add_resource_format_loader(ResourceFormatLoader *p_format_loader,bool p_at_front=false);
+ static void get_recognized_extensions_for_type(const String &p_type, List<String> *p_extensions);
+ static void add_resource_format_loader(ResourceFormatLoader *p_format_loader, bool p_at_front = false);
static String get_resource_type(const String &p_path);
- static void get_dependencies(const String& p_path,List<String> *p_dependencies,bool p_add_types=false);
- static Error rename_dependencies(const String &p_path,const Map<String,String>& p_map);
+ static void get_dependencies(const String &p_path, List<String> *p_dependencies, bool p_add_types = false);
+ static Error rename_dependencies(const String &p_path, const Map<String, String> &p_map);
- static void set_timestamp_on_load(bool p_timestamp) { timestamp_on_load=p_timestamp; }
+ static void set_timestamp_on_load(bool p_timestamp) { timestamp_on_load = p_timestamp; }
- static void notify_load_error(const String& p_err) { if (err_notify) err_notify(err_notify_ud,p_err); }
- static void set_error_notify_func(void* p_ud,ResourceLoadErrorNotify p_err_notify) { err_notify=p_err_notify; err_notify_ud=p_ud;}
+ static void notify_load_error(const String &p_err) {
+ if (err_notify) err_notify(err_notify_ud, p_err);
+ }
+ static void set_error_notify_func(void *p_ud, ResourceLoadErrorNotify p_err_notify) {
+ err_notify = p_err_notify;
+ err_notify_ud = p_ud;
+ }
- static void notify_dependency_error(const String& p_path,const String& p_dependency,const String& p_type) { if (dep_err_notify) dep_err_notify(dep_err_notify_ud,p_path,p_dependency,p_type); }
- static void set_dependency_error_notify_func(void* p_ud,DependencyErrorNotify p_err_notify) { dep_err_notify=p_err_notify; dep_err_notify_ud=p_ud;}
+ static void notify_dependency_error(const String &p_path, const String &p_dependency, const String &p_type) {
+ if (dep_err_notify) dep_err_notify(dep_err_notify_ud, p_path, p_dependency, p_type);
+ }
+ static void set_dependency_error_notify_func(void *p_ud, DependencyErrorNotify p_err_notify) {
+ dep_err_notify = p_err_notify;
+ dep_err_notify_ud = p_ud;
+ }
-
- static void set_abort_on_missing_resources(bool p_abort) { abort_on_missing_resource=p_abort; }
+ static void set_abort_on_missing_resources(bool p_abort) { abort_on_missing_resource = p_abort; }
static bool get_abort_on_missing_resources() { return abort_on_missing_resource; }
};
-
-
#endif