2023-01-05 12:25:55 +00:00
|
|
|
/**************************************************************************/
|
|
|
|
/* editor_feature_profile.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. */
|
|
|
|
/**************************************************************************/
|
2019-06-11 13:31:23 +00:00
|
|
|
|
2019-04-08 22:18:03 +00:00
|
|
|
#ifndef EDITOR_FEATURE_PROFILE_H
|
|
|
|
#define EDITOR_FEATURE_PROFILE_H
|
|
|
|
|
2021-06-11 12:51:48 +00:00
|
|
|
#include "core/io/file_access.h"
|
2021-06-04 16:03:15 +00:00
|
|
|
#include "core/object/ref_counted.h"
|
2022-02-12 01:46:22 +00:00
|
|
|
#include "editor/editor_help.h"
|
2019-04-08 22:18:03 +00:00
|
|
|
#include "scene/gui/dialogs.h"
|
|
|
|
#include "scene/gui/option_button.h"
|
|
|
|
#include "scene/gui/separator.h"
|
|
|
|
#include "scene/gui/split_container.h"
|
|
|
|
#include "scene/gui/tree.h"
|
|
|
|
|
2022-11-11 19:12:48 +00:00
|
|
|
class EditorFileDialog;
|
|
|
|
|
2021-06-04 16:03:15 +00:00
|
|
|
class EditorFeatureProfile : public RefCounted {
|
|
|
|
GDCLASS(EditorFeatureProfile, RefCounted);
|
2019-04-08 22:18:03 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
enum Feature {
|
|
|
|
FEATURE_3D,
|
|
|
|
FEATURE_SCRIPT,
|
|
|
|
FEATURE_ASSET_LIB,
|
|
|
|
FEATURE_SCENE_TREE,
|
|
|
|
FEATURE_NODE_DOCK,
|
|
|
|
FEATURE_FILESYSTEM_DOCK,
|
2020-05-08 19:51:42 +00:00
|
|
|
FEATURE_IMPORT_DOCK,
|
2022-11-06 19:53:20 +00:00
|
|
|
FEATURE_HISTORY_DOCK,
|
2019-04-08 22:18:03 +00:00
|
|
|
FEATURE_MAX
|
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
2022-05-19 15:00:06 +00:00
|
|
|
HashSet<StringName> disabled_classes;
|
|
|
|
HashSet<StringName> disabled_editors;
|
|
|
|
HashMap<StringName, HashSet<StringName>> disabled_properties;
|
2019-04-08 22:18:03 +00:00
|
|
|
|
2022-05-19 15:00:06 +00:00
|
|
|
HashSet<StringName> collapsed_classes;
|
2021-05-27 14:19:33 +00:00
|
|
|
|
2019-04-08 22:18:03 +00:00
|
|
|
bool features_disabled[FEATURE_MAX];
|
|
|
|
static const char *feature_names[FEATURE_MAX];
|
2021-05-06 19:24:41 +00:00
|
|
|
static const char *feature_descriptions[FEATURE_MAX];
|
2019-04-08 22:18:03 +00:00
|
|
|
static const char *feature_identifiers[FEATURE_MAX];
|
|
|
|
|
|
|
|
String _get_feature_name(Feature p_feature) { return get_feature_name(p_feature); }
|
|
|
|
|
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
|
|
|
|
|
|
|
public:
|
|
|
|
void set_disable_class(const StringName &p_class, bool p_disabled);
|
|
|
|
bool is_class_disabled(const StringName &p_class) const;
|
|
|
|
|
|
|
|
void set_disable_class_editor(const StringName &p_class, bool p_disabled);
|
|
|
|
bool is_class_editor_disabled(const StringName &p_class) const;
|
|
|
|
|
|
|
|
void set_disable_class_property(const StringName &p_class, const StringName &p_property, bool p_disabled);
|
|
|
|
bool is_class_property_disabled(const StringName &p_class, const StringName &p_property) const;
|
|
|
|
bool has_class_properties_disabled(const StringName &p_class) const;
|
|
|
|
|
2021-05-27 14:19:33 +00:00
|
|
|
void set_item_collapsed(const StringName &p_class, bool p_collapsed);
|
|
|
|
bool is_item_collapsed(const StringName &p_class) const;
|
|
|
|
|
2019-04-08 22:18:03 +00:00
|
|
|
void set_disable_feature(Feature p_feature, bool p_disable);
|
|
|
|
bool is_feature_disabled(Feature p_feature) const;
|
|
|
|
|
|
|
|
Error save_to_file(const String &p_path);
|
|
|
|
Error load_from_file(const String &p_path);
|
|
|
|
|
|
|
|
static String get_feature_name(Feature p_feature);
|
2021-05-06 19:24:41 +00:00
|
|
|
static String get_feature_description(Feature p_feature);
|
2019-04-08 22:18:03 +00:00
|
|
|
|
|
|
|
EditorFeatureProfile();
|
|
|
|
};
|
|
|
|
|
|
|
|
VARIANT_ENUM_CAST(EditorFeatureProfile::Feature)
|
|
|
|
|
|
|
|
class EditorFeatureProfileManager : public AcceptDialog {
|
|
|
|
GDCLASS(EditorFeatureProfileManager, AcceptDialog);
|
|
|
|
|
|
|
|
enum Action {
|
|
|
|
PROFILE_CLEAR,
|
|
|
|
PROFILE_SET,
|
|
|
|
PROFILE_IMPORT,
|
|
|
|
PROFILE_EXPORT,
|
|
|
|
PROFILE_NEW,
|
|
|
|
PROFILE_ERASE,
|
|
|
|
PROFILE_MAX
|
|
|
|
};
|
|
|
|
|
|
|
|
enum ClassOptions {
|
|
|
|
CLASS_OPTION_DISABLE_EDITOR
|
|
|
|
};
|
|
|
|
|
2022-04-04 13:06:57 +00:00
|
|
|
ConfirmationDialog *erase_profile_dialog = nullptr;
|
|
|
|
ConfirmationDialog *new_profile_dialog = nullptr;
|
|
|
|
LineEdit *new_profile_name = nullptr;
|
2019-04-08 22:18:03 +00:00
|
|
|
|
2022-04-04 13:06:57 +00:00
|
|
|
LineEdit *current_profile_name = nullptr;
|
|
|
|
OptionButton *profile_list = nullptr;
|
2019-04-08 22:18:03 +00:00
|
|
|
Button *profile_actions[PROFILE_MAX];
|
|
|
|
|
2022-04-04 13:06:57 +00:00
|
|
|
HSplitContainer *h_split = nullptr;
|
2019-04-08 22:18:03 +00:00
|
|
|
|
2022-04-04 13:06:57 +00:00
|
|
|
VBoxContainer *class_list_vbc = nullptr;
|
|
|
|
Tree *class_list = nullptr;
|
|
|
|
VBoxContainer *property_list_vbc = nullptr;
|
|
|
|
Tree *property_list = nullptr;
|
|
|
|
EditorHelpBit *description_bit = nullptr;
|
|
|
|
Label *no_profile_selected_help = nullptr;
|
2019-04-08 22:18:03 +00:00
|
|
|
|
2022-04-04 13:06:57 +00:00
|
|
|
EditorFileDialog *import_profiles = nullptr;
|
|
|
|
EditorFileDialog *export_profile = nullptr;
|
2019-04-08 22:18:03 +00:00
|
|
|
|
|
|
|
void _profile_action(int p_action);
|
|
|
|
void _profile_selected(int p_what);
|
|
|
|
|
|
|
|
String current_profile;
|
|
|
|
void _update_profile_list(const String &p_select_profile = String());
|
|
|
|
void _update_selected_profile();
|
|
|
|
void _fill_classes_from(TreeItem *p_parent, const String &p_class, const String &p_selected);
|
|
|
|
|
|
|
|
Ref<EditorFeatureProfile> current;
|
|
|
|
Ref<EditorFeatureProfile> edited;
|
|
|
|
|
|
|
|
void _erase_selected_profile();
|
|
|
|
void _create_new_profile();
|
|
|
|
String _get_selected_profile();
|
|
|
|
|
|
|
|
void _import_profiles(const Vector<String> &p_paths);
|
|
|
|
void _export_profile(const String &p_path);
|
|
|
|
|
2022-02-15 14:56:58 +00:00
|
|
|
bool updating_features = false;
|
2019-04-08 22:18:03 +00:00
|
|
|
|
|
|
|
void _class_list_item_selected();
|
|
|
|
void _class_list_item_edited();
|
2021-05-27 14:19:33 +00:00
|
|
|
void _class_list_item_collapsed(Object *p_item);
|
2019-04-08 22:18:03 +00:00
|
|
|
void _property_item_edited();
|
|
|
|
void _save_and_update();
|
|
|
|
|
2022-04-04 13:06:57 +00:00
|
|
|
Timer *update_timer = nullptr;
|
2019-04-08 22:18:03 +00:00
|
|
|
void _emit_current_profile_changed();
|
|
|
|
|
|
|
|
static EditorFeatureProfileManager *singleton;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
|
|
|
void _notification(int p_what);
|
|
|
|
|
|
|
|
public:
|
|
|
|
Ref<EditorFeatureProfile> get_current_profile();
|
|
|
|
void notify_changed();
|
|
|
|
|
|
|
|
static EditorFeatureProfileManager *get_singleton() { return singleton; }
|
|
|
|
EditorFeatureProfileManager();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // EDITOR_FEATURE_PROFILE_H
|