2014-02-10 01:10:30 +00:00
|
|
|
/**************************************************************************/
|
|
|
|
/* editor_settings.h */
|
|
|
|
/**************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* https://godotengine.org */
|
|
|
|
/**************************************************************************/
|
|
|
|
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
|
|
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* */
|
|
|
|
/* 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. */
|
|
|
|
/**************************************************************************/
|
2018-01-04 23:50:27 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
#ifndef EDITOR_SETTINGS_H
|
|
|
|
#define EDITOR_SETTINGS_H
|
|
|
|
|
2023-04-12 19:02:28 +00:00
|
|
|
#include "core/input/shortcut.h"
|
2016-02-21 23:15:47 +00:00
|
|
|
#include "core/io/config_file.h"
|
2020-11-07 22:33:38 +00:00
|
|
|
#include "core/io/resource.h"
|
2018-09-11 16:13:45 +00:00
|
|
|
#include "core/os/thread_safe.h"
|
2022-05-19 15:00:06 +00:00
|
|
|
#include "core/templates/rb_set.h"
|
2016-06-05 00:31:29 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
class EditorPlugin;
|
|
|
|
|
|
|
|
class EditorSettings : public Resource {
|
2017-01-03 02:03:46 +00:00
|
|
|
GDCLASS(EditorSettings, Resource);
|
2017-03-05 15:44:50 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
_THREAD_SAFE_CLASS_
|
|
|
|
|
|
|
|
public:
|
|
|
|
struct Plugin {
|
2020-11-24 09:12:55 +00:00
|
|
|
EditorPlugin *instance = nullptr;
|
2014-02-10 01:10:30 +00:00
|
|
|
String path;
|
|
|
|
String name;
|
|
|
|
String author;
|
|
|
|
String version;
|
|
|
|
String description;
|
2020-11-24 09:12:55 +00:00
|
|
|
bool installs = false;
|
2014-02-10 01:10:30 +00:00
|
|
|
String script;
|
|
|
|
Vector<String> install_files;
|
|
|
|
};
|
|
|
|
|
2024-01-30 16:35:46 +00:00
|
|
|
enum NetworkMode {
|
|
|
|
NETWORK_OFFLINE,
|
|
|
|
NETWORK_ONLINE,
|
|
|
|
};
|
|
|
|
|
2024-09-22 17:36:41 +00:00
|
|
|
enum InitialScreen {
|
|
|
|
INITIAL_SCREEN_AUTO = -5, // Remembers last screen position.
|
|
|
|
INITIAL_SCREEN_WITH_MOUSE_FOCUS = -4,
|
|
|
|
INITIAL_SCREEN_WITH_KEYBOARD_FOCUS = -3,
|
|
|
|
INITIAL_SCREEN_PRIMARY = -2,
|
|
|
|
};
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
private:
|
2014-02-10 01:10:30 +00:00
|
|
|
struct VariantContainer {
|
2020-05-12 15:01:17 +00:00
|
|
|
int order = 0;
|
2014-02-10 01:10:30 +00:00
|
|
|
Variant variant;
|
2017-09-25 03:26:41 +00:00
|
|
|
Variant initial;
|
2024-09-02 12:04:02 +00:00
|
|
|
bool basic = false;
|
2020-05-12 15:01:17 +00:00
|
|
|
bool has_default_value = false;
|
|
|
|
bool hide_from_editor = false;
|
|
|
|
bool save = false;
|
|
|
|
bool restart_if_changed = false;
|
|
|
|
|
|
|
|
VariantContainer() {}
|
|
|
|
|
2018-12-08 20:07:33 +00:00
|
|
|
VariantContainer(const Variant &p_variant, int p_order) :
|
|
|
|
order(p_order),
|
2020-05-12 15:01:17 +00:00
|
|
|
variant(p_variant) {
|
2017-03-05 15:44:50 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
};
|
|
|
|
|
2017-10-28 13:40:55 +00:00
|
|
|
static Ref<EditorSettings> singleton;
|
|
|
|
|
2022-05-19 15:00:06 +00:00
|
|
|
HashSet<String> changed_settings;
|
2021-10-15 12:34:11 +00:00
|
|
|
|
2023-07-22 11:36:51 +00:00
|
|
|
mutable Ref<ConfigFile> project_metadata;
|
2014-02-10 01:10:30 +00:00
|
|
|
HashMap<String, PropertyInfo> hints;
|
|
|
|
HashMap<String, VariantContainer> props;
|
2017-10-28 13:40:55 +00:00
|
|
|
int last_order;
|
2017-09-25 03:26:41 +00:00
|
|
|
|
2017-10-28 13:40:55 +00:00
|
|
|
Ref<Resource> clipboard;
|
2022-05-13 13:04:37 +00:00
|
|
|
mutable HashMap<String, Ref<Shortcut>> shortcuts;
|
|
|
|
HashMap<String, List<Ref<InputEvent>>> builtin_action_overrides;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2018-09-18 12:02:59 +00:00
|
|
|
Vector<String> favorites;
|
2017-10-28 13:40:55 +00:00
|
|
|
Vector<String> recent_dirs;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2022-02-15 14:56:58 +00:00
|
|
|
bool save_changed_setting = true;
|
|
|
|
bool optimize_save = true; //do not save stuff that came from config but was not set from engine
|
2024-08-17 17:23:06 +00:00
|
|
|
bool initialized = false;
|
2016-06-12 00:16:14 +00:00
|
|
|
|
2018-01-06 11:40:43 +00:00
|
|
|
bool _set(const StringName &p_name, const Variant &p_value);
|
|
|
|
bool _set_only(const StringName &p_name, const Variant &p_value);
|
2017-10-28 13:40:55 +00:00
|
|
|
bool _get(const StringName &p_name, Variant &r_ret) const;
|
2024-09-02 12:04:02 +00:00
|
|
|
void _initial_set(const StringName &p_name, const Variant &p_value, bool p_basic = false);
|
2017-10-28 13:40:55 +00:00
|
|
|
void _get_property_list(List<PropertyInfo> *p_list) const;
|
|
|
|
void _add_property_info_bind(const Dictionary &p_info);
|
2022-08-12 18:43:14 +00:00
|
|
|
bool _property_can_revert(const StringName &p_name) const;
|
|
|
|
bool _property_get_revert(const StringName &p_name, Variant &r_property) const;
|
2017-10-28 13:40:55 +00:00
|
|
|
|
2024-08-17 17:23:06 +00:00
|
|
|
void _set_initialized();
|
2020-03-03 09:46:03 +00:00
|
|
|
void _load_defaults(Ref<ConfigFile> p_extra_config = Ref<ConfigFile>());
|
2021-05-27 08:22:36 +00:00
|
|
|
void _load_godot2_text_editor_theme();
|
2024-02-09 14:02:58 +00:00
|
|
|
void _load_default_visual_shader_editor_theme();
|
2024-02-15 16:25:58 +00:00
|
|
|
bool _save_text_editor_theme(const String &p_file);
|
|
|
|
bool _is_default_text_editor_theme(const String &p_theme_name);
|
2023-07-22 11:36:51 +00:00
|
|
|
const String _get_project_metadata_path() const;
|
2024-07-29 22:24:19 +00:00
|
|
|
#ifndef DISABLE_DEPRECATED
|
|
|
|
void _remove_deprecated_settings();
|
|
|
|
#endif
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
public:
|
2014-02-10 01:10:30 +00:00
|
|
|
enum {
|
|
|
|
NOTIFICATION_EDITOR_SETTINGS_CHANGED = 10000
|
|
|
|
};
|
|
|
|
|
|
|
|
static EditorSettings *get_singleton();
|
2024-04-18 22:09:15 +00:00
|
|
|
static String get_existing_settings_path();
|
|
|
|
static String get_newest_settings_path();
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-10-28 13:40:55 +00:00
|
|
|
static void create();
|
2016-05-27 22:58:28 +00:00
|
|
|
void setup_language();
|
2015-08-06 05:37:40 +00:00
|
|
|
void setup_network();
|
2014-02-10 01:10:30 +00:00
|
|
|
static void save();
|
|
|
|
static void destroy();
|
2017-10-28 13:40:55 +00:00
|
|
|
void set_optimize_save(bool p_optimize);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-10-28 21:25:28 +00:00
|
|
|
bool has_default_value(const String &p_setting) const;
|
2017-10-28 13:40:55 +00:00
|
|
|
void set_setting(const String &p_setting, const Variant &p_value);
|
|
|
|
Variant get_setting(const String &p_setting) const;
|
2017-10-31 14:24:35 +00:00
|
|
|
bool has_setting(const String &p_setting) const;
|
|
|
|
void erase(const String &p_setting);
|
|
|
|
void raise_order(const String &p_setting);
|
2018-02-01 08:57:10 +00:00
|
|
|
void set_initial_value(const StringName &p_setting, const Variant &p_value, bool p_update_current = false);
|
2018-07-19 21:58:15 +00:00
|
|
|
void set_restart_if_changed(const StringName &p_setting, bool p_restart);
|
2024-09-02 12:04:02 +00:00
|
|
|
void set_basic(const StringName &p_setting, bool p_basic);
|
2017-10-31 14:24:35 +00:00
|
|
|
void set_manually(const StringName &p_setting, const Variant &p_value, bool p_emit_signal = false) {
|
2020-05-14 14:41:43 +00:00
|
|
|
if (p_emit_signal) {
|
2018-01-06 11:40:43 +00:00
|
|
|
_set(p_setting, p_value);
|
2020-05-14 14:41:43 +00:00
|
|
|
} else {
|
2018-01-06 11:40:43 +00:00
|
|
|
_set_only(p_setting, p_value);
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2017-10-28 13:40:55 +00:00
|
|
|
}
|
|
|
|
void add_property_hint(const PropertyInfo &p_hint);
|
2022-08-05 01:41:48 +00:00
|
|
|
PackedStringArray get_changed_settings() const;
|
2021-10-15 12:34:11 +00:00
|
|
|
bool check_changed_settings_in_group(const String &p_setting_prefix) const;
|
|
|
|
void mark_setting_changed(const String &p_setting);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
void set_resource_clipboard(const Ref<Resource> &p_resource) { clipboard = p_resource; }
|
|
|
|
Ref<Resource> get_resource_clipboard() const { return clipboard; }
|
|
|
|
|
2024-02-15 16:25:58 +00:00
|
|
|
void set_project_metadata(const String &p_section, const String &p_key, const Variant &p_data);
|
|
|
|
Variant get_project_metadata(const String &p_section, const String &p_key, const Variant &p_default) const;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2018-09-18 12:02:59 +00:00
|
|
|
void set_favorites(const Vector<String> &p_favorites);
|
|
|
|
Vector<String> get_favorites() const;
|
2015-06-06 12:44:38 +00:00
|
|
|
void set_recent_dirs(const Vector<String> &p_recent_dirs);
|
|
|
|
Vector<String> get_recent_dirs() const;
|
2022-02-03 00:21:52 +00:00
|
|
|
void load_favorites_and_recent_dirs();
|
2015-06-06 12:44:38 +00:00
|
|
|
|
2016-04-12 14:45:31 +00:00
|
|
|
void list_text_editor_themes();
|
|
|
|
void load_text_editor_theme();
|
2024-02-15 16:25:58 +00:00
|
|
|
bool import_text_editor_theme(const String &p_file);
|
2016-04-12 14:45:31 +00:00
|
|
|
bool save_text_editor_theme();
|
|
|
|
bool save_text_editor_theme_as(String p_file);
|
2019-05-23 15:18:24 +00:00
|
|
|
bool is_default_text_editor_theme();
|
2016-04-12 14:45:31 +00:00
|
|
|
|
2019-08-22 15:59:43 +00:00
|
|
|
Vector<String> get_script_templates(const String &p_extension, const String &p_custom_path = String());
|
2017-11-17 20:48:24 +00:00
|
|
|
String get_editor_layouts_config() const;
|
2021-06-16 12:36:09 +00:00
|
|
|
float get_auto_display_scale() const;
|
2017-06-13 20:03:08 +00:00
|
|
|
|
2023-02-21 06:08:53 +00:00
|
|
|
void _add_shortcut_default(const String &p_name, const Ref<Shortcut> &p_shortcut);
|
2022-04-05 10:40:26 +00:00
|
|
|
void add_shortcut(const String &p_name, const Ref<Shortcut> &p_shortcut);
|
2017-05-20 15:38:03 +00:00
|
|
|
bool is_shortcut(const String &p_name, const Ref<InputEvent> &p_event) const;
|
2020-09-09 19:53:24 +00:00
|
|
|
Ref<Shortcut> get_shortcut(const String &p_name) const;
|
2016-06-05 00:31:29 +00:00
|
|
|
void get_shortcut_list(List<String> *r_shortcuts);
|
|
|
|
|
2022-08-31 17:24:04 +00:00
|
|
|
void set_builtin_action_override(const String &p_name, const TypedArray<InputEvent> &p_events);
|
2020-12-07 11:31:51 +00:00
|
|
|
const Array get_builtin_action_overrides(const String &p_name) const;
|
|
|
|
|
2017-10-28 13:40:55 +00:00
|
|
|
void notify_changes();
|
2017-09-25 03:26:41 +00:00
|
|
|
|
2024-03-01 13:58:19 +00:00
|
|
|
#ifdef TOOLS_ENABLED
|
|
|
|
virtual void get_argument_options(const StringName &p_function, int p_idx, List<String> *r_options) const override;
|
|
|
|
#endif
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
EditorSettings();
|
|
|
|
};
|
|
|
|
|
|
|
|
//not a macro any longer
|
|
|
|
|
|
|
|
#define EDITOR_DEF(m_var, m_val) _EDITOR_DEF(m_var, Variant(m_val))
|
2018-07-19 21:58:15 +00:00
|
|
|
#define EDITOR_DEF_RST(m_var, m_val) _EDITOR_DEF(m_var, Variant(m_val), true)
|
2024-09-02 12:04:02 +00:00
|
|
|
#define EDITOR_DEF_BASIC(m_var, m_val) _EDITOR_DEF(m_var, Variant(m_val), false, true)
|
|
|
|
Variant _EDITOR_DEF(const String &p_setting, const Variant &p_default, bool p_restart_if_changed = false, bool p_basic = false);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-08-26 03:40:45 +00:00
|
|
|
#define EDITOR_GET(m_var) _EDITOR_GET(m_var)
|
2017-10-31 14:24:35 +00:00
|
|
|
Variant _EDITOR_GET(const String &p_setting);
|
2017-08-26 03:40:45 +00:00
|
|
|
|
2016-06-05 00:31:29 +00:00
|
|
|
#define ED_IS_SHORTCUT(p_name, p_ev) (EditorSettings::get_singleton()->is_shortcut(p_name, p_ev))
|
2023-02-20 22:11:57 +00:00
|
|
|
Ref<Shortcut> ED_SHORTCUT(const String &p_path, const String &p_name, Key p_keycode = Key::NONE, bool p_physical = false);
|
|
|
|
Ref<Shortcut> ED_SHORTCUT_ARRAY(const String &p_path, const String &p_name, const PackedInt32Array &p_keycodes, bool p_physical = false);
|
|
|
|
void ED_SHORTCUT_OVERRIDE(const String &p_path, const String &p_feature, Key p_keycode = Key::NONE, bool p_physical = false);
|
|
|
|
void ED_SHORTCUT_OVERRIDE_ARRAY(const String &p_path, const String &p_feature, const PackedInt32Array &p_keycodes, bool p_physical = false);
|
2020-09-09 19:53:24 +00:00
|
|
|
Ref<Shortcut> ED_GET_SHORTCUT(const String &p_path);
|
2016-06-05 00:31:29 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
#endif // EDITOR_SETTINGS_H
|