mirror of
https://github.com/tiennm99/godot.git
synced 2026-08-05 16:24:39 +00:00
EditorSettings: Rename settings_path to settings_dir
Also to prepare for upcoming refactoring for XDG support.
This commit is contained in:
+11
-11
@@ -705,7 +705,7 @@ void EditorNode::_get_scene_metadata(const String &p_file) {
|
||||
if (!scene)
|
||||
return;
|
||||
|
||||
String path = EditorSettings::get_singleton()->get_project_settings_path().plus_file(p_file.get_file() + "-editstate-" + p_file.md5_text() + ".cfg");
|
||||
String path = EditorSettings::get_singleton()->get_project_settings_dir().plus_file(p_file.get_file() + "-editstate-" + p_file.md5_text() + ".cfg");
|
||||
|
||||
Ref<ConfigFile> cf;
|
||||
cf.instance();
|
||||
@@ -739,7 +739,7 @@ void EditorNode::_set_scene_metadata(const String &p_file, int p_idx) {
|
||||
scene->set_meta("__editor_run_settings__", Variant()); //clear it (no point in keeping it)
|
||||
scene->set_meta("__editor_plugin_states__", Variant());
|
||||
|
||||
String path = EditorSettings::get_singleton()->get_project_settings_path().plus_file(p_file.get_file() + "-editstate-" + p_file.md5_text() + ".cfg");
|
||||
String path = EditorSettings::get_singleton()->get_project_settings_dir().plus_file(p_file.get_file() + "-editstate-" + p_file.md5_text() + ".cfg");
|
||||
|
||||
Ref<ConfigFile> cf;
|
||||
cf.instance();
|
||||
@@ -926,7 +926,7 @@ void EditorNode::_save_scene_with_preview(String p_file, int p_idx) {
|
||||
img->flip_y();
|
||||
|
||||
//save thumbnail directly, as thumbnailer may not update due to actual scene not changing md5
|
||||
String temp_path = EditorSettings::get_singleton()->get_settings_path().plus_file("tmp");
|
||||
String temp_path = EditorSettings::get_singleton()->get_settings_dir().plus_file("tmp");
|
||||
String cache_base = ProjectSettings::get_singleton()->globalize_path(p_file).md5_text();
|
||||
cache_base = temp_path.plus_file("resthumb-" + cache_base);
|
||||
|
||||
@@ -1198,7 +1198,7 @@ void EditorNode::_dialog_action(String p_file) {
|
||||
|
||||
Ref<ConfigFile> config;
|
||||
config.instance();
|
||||
Error err = config->load(EditorSettings::get_singleton()->get_settings_path().plus_file("editor_layouts-3.cfg"));
|
||||
Error err = config->load(EditorSettings::get_singleton()->get_settings_dir().plus_file("editor_layouts-3.cfg"));
|
||||
|
||||
if (err == ERR_CANT_OPEN) {
|
||||
config.instance(); // new config
|
||||
@@ -1209,7 +1209,7 @@ void EditorNode::_dialog_action(String p_file) {
|
||||
|
||||
_save_docks_to_config(config, p_file);
|
||||
|
||||
config->save(EditorSettings::get_singleton()->get_settings_path().plus_file("editor_layouts-3.cfg"));
|
||||
config->save(EditorSettings::get_singleton()->get_settings_dir().plus_file("editor_layouts-3.cfg"));
|
||||
|
||||
layout_dialog->hide();
|
||||
_update_layouts_menu();
|
||||
@@ -1226,7 +1226,7 @@ void EditorNode::_dialog_action(String p_file) {
|
||||
|
||||
Ref<ConfigFile> config;
|
||||
config.instance();
|
||||
Error err = config->load(EditorSettings::get_singleton()->get_settings_path().plus_file("editor_layouts-3.cfg"));
|
||||
Error err = config->load(EditorSettings::get_singleton()->get_settings_dir().plus_file("editor_layouts-3.cfg"));
|
||||
|
||||
if (err != OK || !config->has_section(p_file)) {
|
||||
show_warning(TTR("Layout name not found!"));
|
||||
@@ -1240,7 +1240,7 @@ void EditorNode::_dialog_action(String p_file) {
|
||||
config->set_value(p_file, E->get(), Variant());
|
||||
}
|
||||
|
||||
config->save(EditorSettings::get_singleton()->get_settings_path().plus_file("editor_layouts-3.cfg"));
|
||||
config->save(EditorSettings::get_singleton()->get_settings_dir().plus_file("editor_layouts-3.cfg"));
|
||||
|
||||
layout_dialog->hide();
|
||||
_update_layouts_menu();
|
||||
@@ -3581,7 +3581,7 @@ void EditorNode::_save_docks() {
|
||||
_save_docks_to_config(config, "docks");
|
||||
editor_data.get_plugin_window_layout(config);
|
||||
|
||||
config->save(EditorSettings::get_singleton()->get_project_settings_path().plus_file("editor_layout.cfg"));
|
||||
config->save(EditorSettings::get_singleton()->get_project_settings_dir().plus_file("editor_layout.cfg"));
|
||||
}
|
||||
|
||||
void EditorNode::_save_docks_to_config(Ref<ConfigFile> p_layout, const String &p_section) {
|
||||
@@ -3643,7 +3643,7 @@ void EditorNode::_load_docks() {
|
||||
|
||||
Ref<ConfigFile> config;
|
||||
config.instance();
|
||||
Error err = config->load(EditorSettings::get_singleton()->get_project_settings_path().plus_file("editor_layout.cfg"));
|
||||
Error err = config->load(EditorSettings::get_singleton()->get_project_settings_dir().plus_file("editor_layout.cfg"));
|
||||
if (err != OK) {
|
||||
//no config
|
||||
if (overridden_default_layout >= 0) {
|
||||
@@ -3812,7 +3812,7 @@ void EditorNode::_update_layouts_menu() {
|
||||
|
||||
Ref<ConfigFile> config;
|
||||
config.instance();
|
||||
Error err = config->load(EditorSettings::get_singleton()->get_settings_path().plus_file("editor_layouts-3.cfg"));
|
||||
Error err = config->load(EditorSettings::get_singleton()->get_settings_dir().plus_file("editor_layouts-3.cfg"));
|
||||
if (err != OK) {
|
||||
return; //no config
|
||||
}
|
||||
@@ -3860,7 +3860,7 @@ void EditorNode::_layout_menu_option(int p_id) {
|
||||
|
||||
Ref<ConfigFile> config;
|
||||
config.instance();
|
||||
Error err = config->load(EditorSettings::get_singleton()->get_settings_path().plus_file("editor_layouts-3.cfg"));
|
||||
Error err = config->load(EditorSettings::get_singleton()->get_settings_dir().plus_file("editor_layouts-3.cfg"));
|
||||
if (err != OK) {
|
||||
return; //no config
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user