scene_tree_dock.h 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320
  1. /**************************************************************************/
  2. /* scene_tree_dock.h */
  3. /**************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /**************************************************************************/
  8. /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
  9. /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /**************************************************************************/
  30. #ifndef SCENE_TREE_DOCK_H
  31. #define SCENE_TREE_DOCK_H
  32. #include "editor/connections_dialog.h"
  33. #include "editor/create_dialog.h"
  34. #include "editor/editor_data.h"
  35. #include "editor/editor_quick_open.h"
  36. #include "editor/editor_sub_scene.h"
  37. #include "editor/groups_editor.h"
  38. #include "editor/rename_dialog.h"
  39. #include "editor/reparent_dialog.h"
  40. #include "editor/script_create_dialog.h"
  41. #include "scene/animation/animation_player.h"
  42. #include "scene/gui/box_container.h"
  43. #include "scene/gui/button.h"
  44. #include "scene/gui/control.h"
  45. #include "scene/gui/label.h"
  46. #include "scene/gui/popup_menu.h"
  47. #include "scene/gui/tool_button.h"
  48. #include "scene/gui/tree.h"
  49. #include "scene_tree_editor.h"
  50. #include "modules/modules_enabled.gen.h" // For regex.
  51. class EditorNode;
  52. class SceneTreeDock : public VBoxContainer {
  53. GDCLASS(SceneTreeDock, VBoxContainer);
  54. enum Tool {
  55. TOOL_NEW,
  56. TOOL_INSTANCE,
  57. TOOL_EXPAND_COLLAPSE,
  58. TOOL_CUT,
  59. TOOL_COPY,
  60. TOOL_PASTE,
  61. TOOL_RENAME,
  62. #ifdef MODULE_REGEX_ENABLED
  63. TOOL_BATCH_RENAME,
  64. #endif // MODULE_REGEX_ENABLED
  65. TOOL_REPLACE,
  66. TOOL_EXTEND_SCRIPT,
  67. TOOL_ATTACH_SCRIPT,
  68. TOOL_DETACH_SCRIPT,
  69. TOOL_MOVE_UP,
  70. TOOL_MOVE_DOWN,
  71. TOOL_DUPLICATE,
  72. TOOL_REPARENT,
  73. TOOL_REPARENT_TO_NEW_NODE,
  74. TOOL_MAKE_ROOT,
  75. TOOL_NEW_SCENE_FROM,
  76. TOOL_MERGE_FROM_SCENE,
  77. TOOL_MULTI_EDIT,
  78. TOOL_ERASE,
  79. TOOL_COPY_NODE_PATH,
  80. TOOL_BUTTON_MAX,
  81. TOOL_OPEN_DOCUMENTATION,
  82. TOOL_SCENE_EDITABLE_CHILDREN,
  83. TOOL_SCENE_USE_PLACEHOLDER,
  84. TOOL_SCENE_MAKE_LOCAL,
  85. TOOL_SCENE_OPEN,
  86. TOOL_SCENE_CLEAR_INHERITANCE,
  87. TOOL_SCENE_CLEAR_INHERITANCE_CONFIRM,
  88. TOOL_SCENE_OPEN_INHERITED,
  89. TOOL_TOGGLE_SCENE_UNIQUE_NAME,
  90. TOOL_CREATE_2D_SCENE,
  91. TOOL_CREATE_3D_SCENE,
  92. TOOL_CREATE_USER_INTERFACE,
  93. TOOL_CREATE_FAVORITE,
  94. };
  95. enum {
  96. EDIT_SUBRESOURCE_BASE = 100
  97. };
  98. Vector<ObjectID> subresources;
  99. bool reset_create_dialog = false;
  100. int current_option;
  101. CreateDialog *create_dialog;
  102. #ifdef MODULE_REGEX_ENABLED
  103. RenameDialog *rename_dialog;
  104. #endif // MODULE_REGEX_ENABLED
  105. ToolButton *button_add;
  106. ToolButton *button_instance;
  107. ToolButton *button_create_script;
  108. ToolButton *button_detach_script;
  109. Button *button_2d;
  110. Button *button_3d;
  111. Button *button_ui;
  112. Button *button_custom;
  113. HBoxContainer *button_hb;
  114. ToolButton *edit_local, *edit_remote;
  115. SceneTreeEditor *scene_tree;
  116. Control *remote_tree;
  117. HBoxContainer *tool_hbc;
  118. void _tool_selected(int p_tool, bool p_confirm_override = false);
  119. void _property_selected(int p_idx);
  120. void _node_collapsed(Object *p_obj);
  121. Node *property_drop_node = nullptr;
  122. String resource_drop_path;
  123. void _perform_property_drop(Node *p_node, String p_property, RES p_res);
  124. EditorData *editor_data;
  125. EditorSelection *editor_selection;
  126. List<Node *> node_clipboard;
  127. String clipboard_source_scene;
  128. HashMap<String, Map<RES, RES>> clipboard_resource_remap;
  129. ScriptCreateDialog *script_create_dialog;
  130. AcceptDialog *accept;
  131. ConfirmationDialog *delete_dialog;
  132. ConfirmationDialog *editable_instance_remove_dialog;
  133. ConfirmationDialog *placeholder_editable_instance_remove_dialog;
  134. ReparentDialog *reparent_dialog;
  135. EditorQuickOpen *quick_open;
  136. EditorSubScene *import_subscene_dialog;
  137. EditorFileDialog *new_scene_from_dialog;
  138. enum FilterMenuItems {
  139. FILTER_BY_TYPE = 64, // Used in the same menus as the Tool enum.
  140. FILTER_BY_GROUP,
  141. };
  142. LineEdit *filter;
  143. PopupMenu *filter_quick_menu;
  144. TextureRect *filter_icon;
  145. PopupMenu *menu;
  146. PopupMenu *menu_subresources;
  147. PopupMenu *menu_properties;
  148. ConfirmationDialog *clear_inherit_confirm;
  149. bool first_enter;
  150. void _create();
  151. void _do_create(Node *p_parent);
  152. Node *scene_root;
  153. Node *edited_scene;
  154. Node *pending_click_select;
  155. EditorNode *editor;
  156. bool tree_clicked;
  157. VBoxContainer *create_root_dialog;
  158. String selected_favorite_root;
  159. void _add_children_to_popup(Object *p_obj, int p_depth);
  160. void _node_reparent(NodePath p_path, bool p_keep_global_xform);
  161. void _do_reparent(Node *p_new_parent, int p_position_in_parent, Vector<Node *> p_nodes, bool p_keep_global_xform);
  162. bool _is_collapsed_recursive(TreeItem *p_item) const;
  163. void _set_collapsed_recursive(TreeItem *p_item, bool p_collapsed);
  164. void _set_owners(Node *p_owner, const Array &p_nodes);
  165. enum ReplaceOwnerMode {
  166. MODE_BIDI,
  167. MODE_DO,
  168. MODE_UNDO
  169. };
  170. void _node_replace_owner(Node *p_base, Node *p_node, Node *p_root, ReplaceOwnerMode p_mode = MODE_BIDI);
  171. void _load_request(const String &p_path);
  172. void _script_open_request(const Ref<Script> &p_script);
  173. void _push_item(Object *p_object);
  174. void _handle_select(Node *p_node);
  175. bool _cyclical_dependency_exists(const String &p_target_scene_path, Node *p_desired_node);
  176. bool _track_inherit(const String &p_target_scene_path, Node *p_desired_node);
  177. void _node_selected();
  178. void _node_renamed();
  179. void _script_created(Ref<Script> p_script);
  180. void _script_creation_closed();
  181. void _delete_confirm(bool p_cut = false);
  182. void _toggle_editable_children_from_selection();
  183. void _toggle_editable_children(Node *p_node);
  184. void _toggle_placeholder_from_selection();
  185. void _node_prerenamed(Node *p_node, const String &p_new_name);
  186. void _nodes_drag_begin();
  187. void _input(Ref<InputEvent> p_event);
  188. void _unhandled_key_input(Ref<InputEvent> p_event);
  189. void _import_subscene();
  190. void _new_scene_from(String p_file);
  191. bool _validate_no_foreign();
  192. bool _validate_no_instance();
  193. void _selection_changed();
  194. void _update_script_button();
  195. Node *_get_selection_group_tail(Node *p_node, List<Node *> p_list);
  196. void _fill_path_renames(Vector<StringName> base_path, Vector<StringName> new_base_path, Node *p_node, Map<Node *, NodePath> *p_renames);
  197. void _normalize_drop(Node *&to_node, int &to_pos, int p_type);
  198. void _nodes_dragged(Array p_nodes, NodePath p_to, int p_type);
  199. void _files_dropped(Vector<String> p_files, NodePath p_to, int p_type);
  200. void _script_dropped(String p_file, NodePath p_to);
  201. void _quick_open();
  202. void _tree_rmb(const Vector2 &p_menu_pos);
  203. void _update_filter_menu();
  204. void _filter_changed(const String &p_filter);
  205. void _filter_gui_input(const Ref<InputEvent> &p_event);
  206. void _filter_option_selected(int option);
  207. void _append_filter_options_to(PopupMenu *p_menu, bool p_include_separator = true);
  208. void _perform_instance_scenes(const Vector<String> &p_files, Node *parent, int p_pos);
  209. void _replace_with_branch_scene(const String &p_file, Node *base);
  210. void _remote_tree_selected();
  211. void _local_tree_selected();
  212. void _update_create_root_dialog();
  213. void _favorite_root_selected(const String &p_class);
  214. void _feature_profile_changed();
  215. void _clear_clipboard();
  216. void _create_remap_for_node(Node *p_node, Map<RES, RES> &r_remap);
  217. void _create_remap_for_resource(RES p_resource, Map<RES, RES> &r_remap);
  218. bool profile_allow_editing;
  219. bool profile_allow_script_editing;
  220. bool _update_node_path(Node *p_root_node, NodePath &r_node_path, Map<Node *, NodePath> *p_renames) const;
  221. bool _check_node_path_recursive(Node *p_root_node, Variant &r_variant, Map<Node *, NodePath> *p_renames) const;
  222. protected:
  223. void _notification(int p_what);
  224. static void _bind_methods();
  225. public:
  226. String get_filter();
  227. void set_filter(const String &p_filter);
  228. void save_branch_to_file(String p_directory);
  229. void _focus_node();
  230. void import_subscene();
  231. void set_edited_scene(Node *p_scene);
  232. void instance(const String &p_file);
  233. void instance_scenes(const Vector<String> &p_files, Node *p_parent = nullptr);
  234. void set_selected(Node *p_node, bool p_emit_selected = false);
  235. void fill_path_renames(Node *p_node, Node *p_new_parent, Map<Node *, NodePath> *p_renames);
  236. void perform_node_renames(Node *p_base, Map<Node *, NodePath> *p_renames, Map<Ref<Animation>, Set<int>> *r_rem_anims = nullptr);
  237. SceneTreeEditor *get_tree_editor() { return scene_tree; }
  238. EditorData *get_editor_data() { return editor_data; }
  239. void add_remote_tree_editor(Control *p_remote);
  240. void show_remote_tree();
  241. void hide_remote_tree();
  242. void show_tab_buttons();
  243. void hide_tab_buttons();
  244. void add_root_node(Node *p_node);
  245. void replace_node(Node *p_node, Node *p_by_node, bool p_keep_properties = true, bool p_remove_old = true);
  246. void attach_script_to_selected(bool p_extend);
  247. void open_script_dialog(Node *p_for_node, bool p_extend);
  248. void open_add_child_dialog();
  249. void open_instance_child_dialog();
  250. ScriptCreateDialog *get_script_create_dialog() { return script_create_dialog; }
  251. SceneTreeDock(EditorNode *p_editor, Node *p_scene_root, EditorSelection *p_editor_selection, EditorData &p_editor_data);
  252. ~SceneTreeDock();
  253. };
  254. #endif // SCENE_TREE_DOCK_H