Rename OS::get_data_dir to OS::get_user_data_dir
Will be needed to avoid confusion with system data path (XDG_DATA_HOME) and editor data dir in upcoming refactoring.
This commit is contained in:
parent
ebbe2bd572
commit
73049d115e
26 changed files with 53 additions and 53 deletions
|
|
@ -889,11 +889,11 @@ String OS_JavaScript::get_resource_dir() const {
|
|||
return "/"; //javascript has it's own filesystem for resources inside the APK
|
||||
}
|
||||
|
||||
String OS_JavaScript::get_data_dir() const {
|
||||
String OS_JavaScript::get_user_data_dir() const {
|
||||
|
||||
/*
|
||||
if (get_data_dir_func)
|
||||
return get_data_dir_func();
|
||||
if (get_user_data_dir_func)
|
||||
return get_user_data_dir_func();
|
||||
*/
|
||||
return "/userfs";
|
||||
};
|
||||
|
|
@ -993,7 +993,7 @@ bool OS_JavaScript::is_userfs_persistent() const {
|
|||
return idbfs_available;
|
||||
}
|
||||
|
||||
OS_JavaScript::OS_JavaScript(const char *p_execpath, GetDataDirFunc p_get_data_dir_func) {
|
||||
OS_JavaScript::OS_JavaScript(const char *p_execpath, GetUserDataDirFunc p_get_user_data_dir_func) {
|
||||
set_cmdline(p_execpath, get_cmdline_args());
|
||||
main_loop = NULL;
|
||||
gl_extensions = NULL;
|
||||
|
|
@ -1001,7 +1001,7 @@ OS_JavaScript::OS_JavaScript(const char *p_execpath, GetDataDirFunc p_get_data_d
|
|||
soft_fs_enabled = false;
|
||||
canvas_size_adjustment_requested = false;
|
||||
|
||||
get_data_dir_func = p_get_data_dir_func;
|
||||
get_user_data_dir_func = p_get_user_data_dir_func;
|
||||
FileAccessUnix::close_notification_func = _close_notification_funcs;
|
||||
|
||||
idbfs_available = false;
|
||||
|
|
|
|||
|
|
@ -42,7 +42,7 @@
|
|||
|
||||
#include <emscripten/html5.h>
|
||||
|
||||
typedef String (*GetDataDirFunc)();
|
||||
typedef String (*GetUserDataDirFunc)();
|
||||
|
||||
class OS_JavaScript : public OS_Unix {
|
||||
|
||||
|
|
@ -63,7 +63,7 @@ class OS_JavaScript : public OS_Unix {
|
|||
CursorShape cursor_shape;
|
||||
MainLoop *main_loop;
|
||||
|
||||
GetDataDirFunc get_data_dir_func;
|
||||
GetUserDataDirFunc get_user_data_dir_func;
|
||||
|
||||
PowerJavascript *power_manager;
|
||||
|
||||
|
|
@ -146,7 +146,7 @@ public:
|
|||
void set_opengl_extensions(const char *p_gl_extensions);
|
||||
|
||||
virtual Error shell_open(String p_uri);
|
||||
virtual String get_data_dir() const;
|
||||
virtual String get_user_data_dir() const;
|
||||
String get_executable_path() const;
|
||||
virtual String get_resource_dir() const;
|
||||
|
||||
|
|
@ -165,7 +165,7 @@ public:
|
|||
|
||||
void set_idbfs_available(bool p_idbfs_available);
|
||||
|
||||
OS_JavaScript(const char *p_execpath, GetDataDirFunc p_get_data_dir_func);
|
||||
OS_JavaScript(const char *p_execpath, GetUserDataDirFunc p_get_user_data_dir_func);
|
||||
~OS_JavaScript();
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue