2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* scene_tree_dock.h */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 14:16:55 +02:00
|
|
|
/* https://godotengine.org */
|
2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
2021-01-01 20:13:46 +01:00
|
|
|
/* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). */
|
2014-02-10 02:10:30 +01:00
|
|
|
/* */
|
|
|
|
/* 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-05 00:50:27 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
#ifndef SCENE_TREE_DOCK_H
|
|
|
|
#define SCENE_TREE_DOCK_H
|
|
|
|
|
2017-08-26 17:46:49 +02:00
|
|
|
#include "editor/connections_dialog.h"
|
|
|
|
#include "editor/create_dialog.h"
|
|
|
|
#include "editor/editor_data.h"
|
|
|
|
#include "editor/groups_editor.h"
|
2018-10-17 07:03:22 +02:00
|
|
|
#include "editor/quick_open.h"
|
2018-01-21 07:12:25 +01:00
|
|
|
#include "editor/rename_dialog.h"
|
2017-08-26 17:46:49 +02:00
|
|
|
#include "editor/reparent_dialog.h"
|
|
|
|
#include "editor/script_create_dialog.h"
|
2014-02-10 02:10:30 +01:00
|
|
|
#include "scene/animation/animation_player.h"
|
2017-03-05 16:44:50 +01:00
|
|
|
#include "scene/gui/box_container.h"
|
|
|
|
#include "scene/gui/button.h"
|
|
|
|
#include "scene/gui/control.h"
|
|
|
|
#include "scene/gui/label.h"
|
|
|
|
#include "scene/gui/popup_menu.h"
|
|
|
|
#include "scene/gui/tree.h"
|
|
|
|
#include "scene_tree_editor.h"
|
2017-08-26 17:46:49 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
class EditorNode;
|
|
|
|
|
|
|
|
class SceneTreeDock : public VBoxContainer {
|
2017-03-05 16:44:50 +01:00
|
|
|
GDCLASS(SceneTreeDock, VBoxContainer);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
enum Tool {
|
|
|
|
TOOL_NEW,
|
|
|
|
TOOL_INSTANCE,
|
2018-07-07 16:51:18 +02:00
|
|
|
TOOL_EXPAND_COLLAPSE,
|
2020-01-07 17:43:21 +01:00
|
|
|
TOOL_CUT,
|
|
|
|
TOOL_COPY,
|
|
|
|
TOOL_PASTE,
|
2018-05-11 07:48:14 +02:00
|
|
|
TOOL_RENAME,
|
2018-01-21 07:12:25 +01:00
|
|
|
TOOL_BATCH_RENAME,
|
2014-02-10 02:10:30 +01:00
|
|
|
TOOL_REPLACE,
|
2019-10-21 06:57:10 +02:00
|
|
|
TOOL_EXTEND_SCRIPT,
|
2016-11-09 17:29:15 +01:00
|
|
|
TOOL_ATTACH_SCRIPT,
|
2020-05-09 18:59:19 +02:00
|
|
|
TOOL_DETACH_SCRIPT,
|
2014-02-10 02:10:30 +01:00
|
|
|
TOOL_MOVE_UP,
|
|
|
|
TOOL_MOVE_DOWN,
|
|
|
|
TOOL_DUPLICATE,
|
|
|
|
TOOL_REPARENT,
|
2018-09-12 20:47:12 +02:00
|
|
|
TOOL_REPARENT_TO_NEW_NODE,
|
2018-07-16 04:52:57 +02:00
|
|
|
TOOL_MAKE_ROOT,
|
2015-11-27 21:42:48 +01:00
|
|
|
TOOL_NEW_SCENE_FROM,
|
2015-08-25 05:08:45 +02:00
|
|
|
TOOL_MULTI_EDIT,
|
2014-02-10 02:10:30 +01:00
|
|
|
TOOL_ERASE,
|
2017-01-15 11:56:30 +01:00
|
|
|
TOOL_COPY_NODE_PATH,
|
2017-06-30 18:17:33 +02:00
|
|
|
TOOL_BUTTON_MAX,
|
2018-10-03 11:25:18 +02:00
|
|
|
TOOL_OPEN_DOCUMENTATION,
|
2017-06-30 18:17:33 +02:00
|
|
|
TOOL_SCENE_EDITABLE_CHILDREN,
|
|
|
|
TOOL_SCENE_USE_PLACEHOLDER,
|
2018-06-23 13:03:05 +02:00
|
|
|
TOOL_SCENE_MAKE_LOCAL,
|
2017-06-30 18:17:33 +02:00
|
|
|
TOOL_SCENE_OPEN,
|
|
|
|
TOOL_SCENE_CLEAR_INHERITANCE,
|
|
|
|
TOOL_SCENE_CLEAR_INHERITANCE_CONFIRM,
|
2018-07-16 04:11:29 +02:00
|
|
|
TOOL_SCENE_OPEN_INHERITED,
|
|
|
|
|
|
|
|
TOOL_CREATE_2D_SCENE,
|
|
|
|
TOOL_CREATE_3D_SCENE,
|
|
|
|
TOOL_CREATE_USER_INTERFACE,
|
2018-07-25 05:48:24 +02:00
|
|
|
TOOL_CREATE_FAVORITE,
|
2018-07-16 04:11:29 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
|
|
|
|
2017-06-05 05:12:19 +02:00
|
|
|
enum {
|
|
|
|
EDIT_SUBRESOURCE_BASE = 100
|
|
|
|
};
|
|
|
|
|
|
|
|
Vector<ObjectID> subresources;
|
|
|
|
|
2016-08-03 16:28:20 +02:00
|
|
|
bool restore_script_editor_on_drag;
|
2020-08-25 01:32:58 +02:00
|
|
|
bool reset_create_dialog = false;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
int current_option;
|
|
|
|
CreateDialog *create_dialog;
|
2018-01-21 07:12:25 +01:00
|
|
|
RenameDialog *rename_dialog;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2020-06-19 20:49:04 +02:00
|
|
|
Button *button_add;
|
|
|
|
Button *button_instance;
|
|
|
|
Button *button_create_script;
|
|
|
|
Button *button_detach_script;
|
2016-05-17 23:27:15 +02:00
|
|
|
|
2020-09-17 04:33:19 +02:00
|
|
|
Button *button_2d;
|
2019-11-10 16:58:56 +01:00
|
|
|
Button *button_3d;
|
2020-09-17 04:33:19 +02:00
|
|
|
Button *button_ui;
|
|
|
|
Button *button_custom;
|
2019-11-10 16:58:56 +01:00
|
|
|
|
2017-11-16 02:21:29 +01:00
|
|
|
HBoxContainer *button_hb;
|
2020-06-19 20:49:04 +02:00
|
|
|
Button *edit_local, *edit_remote;
|
2014-02-10 02:10:30 +01:00
|
|
|
SceneTreeEditor *scene_tree;
|
2017-11-16 02:21:29 +01:00
|
|
|
Control *remote_tree;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
HBoxContainer *tool_hbc;
|
2014-05-09 12:50:48 +02:00
|
|
|
void _tool_selected(int p_tool, bool p_confirm_override = false);
|
2018-07-07 16:51:18 +02:00
|
|
|
void _node_collapsed(Object *p_obj);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
EditorData *editor_data;
|
|
|
|
EditorSelection *editor_selection;
|
2021-02-12 17:36:37 +01:00
|
|
|
|
2020-01-07 17:43:21 +01:00
|
|
|
List<Node *> node_clipboard;
|
2021-02-12 17:36:37 +01:00
|
|
|
String clipboard_source_scene;
|
|
|
|
HashMap<String, Map<RES, RES>> clipboard_resource_remap;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
ScriptCreateDialog *script_create_dialog;
|
|
|
|
AcceptDialog *accept;
|
|
|
|
ConfirmationDialog *delete_dialog;
|
2018-09-13 00:49:12 +02:00
|
|
|
ConfirmationDialog *editable_instance_remove_dialog;
|
2019-09-04 21:02:26 +02:00
|
|
|
ConfirmationDialog *placeholder_editable_instance_remove_dialog;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
ReparentDialog *reparent_dialog;
|
2018-10-17 07:03:22 +02:00
|
|
|
EditorQuickOpen *quick_open;
|
2015-11-27 21:42:48 +01:00
|
|
|
EditorFileDialog *new_scene_from_dialog;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-05-16 17:23:40 +02:00
|
|
|
LineEdit *filter;
|
2017-01-12 22:27:27 +01:00
|
|
|
TextureRect *filter_icon;
|
2016-05-16 17:23:40 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
PopupMenu *menu;
|
2017-12-17 15:55:24 +01:00
|
|
|
PopupMenu *menu_subresources;
|
2017-06-30 18:17:33 +02:00
|
|
|
ConfirmationDialog *clear_inherit_confirm;
|
2016-05-16 04:41:48 +02:00
|
|
|
|
2015-06-14 07:13:47 +02:00
|
|
|
bool first_enter;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
void _create();
|
2018-09-12 20:47:12 +02:00
|
|
|
void _do_create(Node *p_parent);
|
2014-02-10 02:10:30 +01:00
|
|
|
Node *scene_root;
|
|
|
|
Node *edited_scene;
|
|
|
|
EditorNode *editor;
|
|
|
|
|
2018-07-16 04:11:29 +02:00
|
|
|
VBoxContainer *create_root_dialog;
|
2018-07-25 05:48:24 +02:00
|
|
|
String selected_favorite_root;
|
2018-07-16 04:11:29 +02:00
|
|
|
|
2017-06-05 05:12:19 +02:00
|
|
|
void _add_children_to_popup(Object *p_obj, int p_depth);
|
|
|
|
|
2016-01-02 15:57:47 +01:00
|
|
|
void _node_reparent(NodePath p_path, bool p_keep_global_xform);
|
2017-03-05 16:44:50 +01:00
|
|
|
void _do_reparent(Node *p_new_parent, int p_position_in_parent, Vector<Node *> p_nodes, bool p_keep_global_xform);
|
2016-05-11 16:46:08 +02:00
|
|
|
|
2018-07-07 16:51:18 +02:00
|
|
|
bool _is_collapsed_recursive(TreeItem *p_item) const;
|
|
|
|
void _set_collapsed_recursive(TreeItem *p_item, bool p_collapsed);
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void _set_owners(Node *p_owner, const Array &p_nodes);
|
2018-07-16 04:52:57 +02:00
|
|
|
|
|
|
|
enum ReplaceOwnerMode {
|
|
|
|
MODE_BIDI,
|
|
|
|
MODE_DO,
|
|
|
|
MODE_UNDO
|
|
|
|
};
|
|
|
|
|
|
|
|
void _node_replace_owner(Node *p_base, Node *p_node, Node *p_root, ReplaceOwnerMode p_mode = MODE_BIDI);
|
2017-03-05 16:44:50 +01:00
|
|
|
void _load_request(const String &p_path);
|
|
|
|
void _script_open_request(const Ref<Script> &p_script);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
bool _cyclical_dependency_exists(const String &p_target_scene_path, Node *p_desired_node);
|
2019-03-14 06:04:16 +01:00
|
|
|
bool _track_inherit(const String &p_target_scene_path, Node *p_desired_node);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
void _node_selected();
|
2014-09-21 17:56:19 +02:00
|
|
|
void _node_renamed();
|
2014-02-10 02:10:30 +01:00
|
|
|
void _script_created(Ref<Script> p_script);
|
2019-06-30 05:19:45 +02:00
|
|
|
void _script_creation_closed();
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2020-01-07 17:43:21 +01:00
|
|
|
void _delete_confirm(bool p_cut = false);
|
2016-05-17 23:27:15 +02:00
|
|
|
|
2019-05-14 02:11:06 +02:00
|
|
|
void _toggle_editable_children_from_selection();
|
|
|
|
void _toggle_editable_children(Node *p_node);
|
2018-09-13 00:49:12 +02:00
|
|
|
|
2019-09-04 21:02:26 +02:00
|
|
|
void _toggle_placeholder_from_selection();
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void _node_prerenamed(Node *p_node, const String &p_new_name);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-08-03 16:28:20 +02:00
|
|
|
void _nodes_drag_begin();
|
2017-05-20 17:38:03 +02:00
|
|
|
void _input(Ref<InputEvent> p_event);
|
|
|
|
void _unhandled_key_input(Ref<InputEvent> p_event);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
void _import_subscene();
|
|
|
|
|
2015-11-27 21:42:48 +01:00
|
|
|
void _new_scene_from(String p_file);
|
2021-02-28 17:19:01 +01:00
|
|
|
void _set_node_owner_recursive(Node *p_node, Node *p_owner);
|
2015-11-27 21:42:48 +01:00
|
|
|
|
2014-09-03 04:13:40 +02:00
|
|
|
bool _validate_no_foreign();
|
2021-02-22 20:18:14 +01:00
|
|
|
bool _validate_no_instance();
|
2015-08-25 05:08:45 +02:00
|
|
|
void _selection_changed();
|
2018-01-11 21:58:17 +01:00
|
|
|
void _update_script_button();
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2020-03-17 07:33:00 +01:00
|
|
|
void _fill_path_renames(Vector<StringName> base_path, Vector<StringName> new_base_path, Node *p_node, List<Pair<NodePath, NodePath>> *p_renames);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void _normalize_drop(Node *&to_node, int &to_pos, int p_type);
|
2016-05-12 01:57:52 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void _nodes_dragged(Array p_nodes, NodePath p_to, int p_type);
|
|
|
|
void _files_dropped(Vector<String> p_files, NodePath p_to, int p_type);
|
2016-10-27 16:32:41 +02:00
|
|
|
void _script_dropped(String p_file, NodePath p_to);
|
2018-10-17 07:03:22 +02:00
|
|
|
void _quick_open();
|
2016-05-11 16:46:08 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void _tree_rmb(const Vector2 &p_menu_pos);
|
2016-05-16 04:41:48 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void _filter_changed(const String &p_filter);
|
2016-05-16 17:23:40 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void _perform_instance_scenes(const Vector<String> &p_files, Node *parent, int p_pos);
|
|
|
|
void _replace_with_branch_scene(const String &p_file, Node *base);
|
2016-07-20 19:09:03 +02:00
|
|
|
|
2016-10-19 21:26:14 +02:00
|
|
|
void _file_selected(String p_file);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-11-16 02:21:29 +01:00
|
|
|
void _remote_tree_selected();
|
|
|
|
void _local_tree_selected();
|
|
|
|
|
2018-07-25 05:48:24 +02:00
|
|
|
void _update_create_root_dialog();
|
|
|
|
void _favorite_root_selected(const String &p_class);
|
|
|
|
|
2019-04-09 00:18:03 +02:00
|
|
|
void _feature_profile_changed();
|
2021-02-12 17:36:37 +01:00
|
|
|
|
2020-01-07 17:43:21 +01:00
|
|
|
void _clear_clipboard();
|
2021-02-12 17:36:37 +01:00
|
|
|
void _create_remap_for_node(Node *p_node, Map<RES, RES> &r_remap);
|
|
|
|
void _create_remap_for_resource(RES p_resource, Map<RES, RES> &r_remap);
|
2019-04-09 00:18:03 +02:00
|
|
|
|
|
|
|
bool profile_allow_editing;
|
|
|
|
bool profile_allow_script_editing;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
protected:
|
2014-02-10 02:10:30 +01:00
|
|
|
void _notification(int p_what);
|
|
|
|
static void _bind_methods();
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
public:
|
2016-05-16 17:23:40 +02:00
|
|
|
String get_filter();
|
2017-03-05 16:44:50 +01:00
|
|
|
void set_filter(const String &p_filter);
|
2016-05-16 17:23:40 +02:00
|
|
|
|
2016-07-28 21:37:52 +02:00
|
|
|
void _focus_node();
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void import_subscene();
|
2017-03-05 16:44:50 +01:00
|
|
|
void set_edited_scene(Node *p_scene);
|
2017-08-12 18:52:50 +02:00
|
|
|
void instance(const String &p_file);
|
2020-04-02 01:20:12 +02:00
|
|
|
void instance_scenes(const Vector<String> &p_files, Node *p_parent = nullptr);
|
2017-03-05 16:44:50 +01:00
|
|
|
void set_selected(Node *p_node, bool p_emit_selected = false);
|
2020-03-17 07:33:00 +01:00
|
|
|
void fill_path_renames(Node *p_node, Node *p_new_parent, List<Pair<NodePath, NodePath>> *p_renames);
|
2020-04-02 01:20:12 +02:00
|
|
|
void perform_node_renames(Node *p_base, List<Pair<NodePath, NodePath>> *p_renames, Map<Ref<Animation>, Set<int>> *r_rem_anims = nullptr);
|
2015-06-22 05:03:19 +02:00
|
|
|
SceneTreeEditor *get_tree_editor() { return scene_tree; }
|
2016-10-25 21:27:24 +02:00
|
|
|
EditorData *get_editor_data() { return editor_data; }
|
2016-06-04 18:17:56 +02:00
|
|
|
|
2017-11-16 02:21:29 +01:00
|
|
|
void add_remote_tree_editor(Control *p_remote);
|
|
|
|
void show_remote_tree();
|
|
|
|
void hide_remote_tree();
|
2017-11-22 14:50:54 +01:00
|
|
|
void show_tab_buttons();
|
|
|
|
void hide_tab_buttons();
|
2017-11-16 02:21:29 +01:00
|
|
|
|
2019-04-23 21:10:44 +02:00
|
|
|
void replace_node(Node *p_node, Node *p_by_node, bool p_keep_properties = true, bool p_remove_old = true);
|
2018-02-21 13:38:21 +01:00
|
|
|
|
2019-10-21 06:57:10 +02:00
|
|
|
void attach_script_to_selected(bool p_extend);
|
|
|
|
void open_script_dialog(Node *p_for_node, bool p_extend);
|
2018-06-30 05:08:28 +02:00
|
|
|
|
2020-08-25 01:32:58 +02:00
|
|
|
void open_add_child_dialog();
|
|
|
|
void open_instance_child_dialog();
|
|
|
|
|
2018-06-30 05:08:28 +02:00
|
|
|
ScriptCreateDialog *get_script_create_dialog() { return script_create_dialog; }
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
SceneTreeDock(EditorNode *p_editor, Node *p_scene_root, EditorSelection *p_editor_selection, EditorData &p_editor_data);
|
2020-01-07 17:43:21 +01:00
|
|
|
~SceneTreeDock();
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SCENE_TREE_DOCK_H
|