scene_tree_editor.h 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  1. /**************************************************************************/
  2. /* scene_tree_editor.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. #pragma once
  31. #include "scene/gui/check_box.h"
  32. #include "scene/gui/check_button.h"
  33. #include "scene/gui/dialogs.h"
  34. #include "scene/gui/tree.h"
  35. class EditorSelection;
  36. class TextureRect;
  37. class Timer;
  38. class SceneTreeEditor : public Control {
  39. GDCLASS(SceneTreeEditor, Control);
  40. EditorSelection *editor_selection = nullptr;
  41. enum SceneTreeEditorButton {
  42. BUTTON_SUBSCENE = 0,
  43. BUTTON_VISIBILITY = 1,
  44. BUTTON_SCRIPT = 2,
  45. BUTTON_LOCK = 3,
  46. BUTTON_GROUP = 4,
  47. BUTTON_WARNING = 5,
  48. BUTTON_SIGNALS = 6,
  49. BUTTON_GROUPS = 7,
  50. BUTTON_PIN = 8,
  51. BUTTON_UNIQUE = 9,
  52. };
  53. struct CachedNode {
  54. Node *node = nullptr;
  55. TreeItem *item = nullptr;
  56. int index = -1;
  57. bool dirty = true;
  58. bool has_moved_children = false;
  59. bool removed = false;
  60. // Store the iterator for faster removal. This is safe as
  61. // HashMap never moves elements.
  62. HashMap<Node *, CachedNode>::Iterator cache_iterator;
  63. // This is safe because it gets compared to a uint8_t.
  64. uint16_t delete_serial = UINT16_MAX;
  65. // To know whether to update children or not.
  66. bool can_process = false;
  67. CachedNode() = delete; // Always an error.
  68. CachedNode(Node *p_node, TreeItem *p_item) :
  69. node(p_node), item(p_item) {}
  70. };
  71. struct NodeCache {
  72. ~NodeCache() {
  73. clear();
  74. }
  75. NodeCache(SceneTreeEditor *p_editor) :
  76. editor(p_editor) {}
  77. HashMap<Node *, CachedNode>::Iterator add(Node *p_node, TreeItem *p_item);
  78. HashMap<Node *, CachedNode>::Iterator get(Node *p_node, bool p_deleted_ok = true);
  79. bool has(Node *p_node);
  80. void remove(Node *p_node, bool p_recursive = false);
  81. void mark_dirty(Node *p_node, bool p_parents = true);
  82. void mark_children_dirty(Node *p_node, bool p_recursive = false);
  83. void delete_pending();
  84. void clear();
  85. SceneTreeEditor *editor;
  86. HashMap<Node *, CachedNode> cache;
  87. HashSet<CachedNode *> to_delete;
  88. Node *current_scene_node = nullptr;
  89. Node *current_pinned_node = nullptr;
  90. bool current_has_pin = false;
  91. bool force_update = false;
  92. uint8_t delete_serial = 0;
  93. };
  94. NodeCache node_cache;
  95. Tree *tree = nullptr;
  96. Node *selected = nullptr;
  97. ObjectID instance_node;
  98. String filter;
  99. String filter_term_warning;
  100. bool show_all_nodes = false;
  101. AcceptDialog *error = nullptr;
  102. AcceptDialog *warning = nullptr;
  103. ConfirmationDialog *revoke_dialog = nullptr;
  104. Label *revoke_dialog_label = nullptr;
  105. CheckBox *ask_before_revoke_checkbox = nullptr;
  106. Node *revoke_node = nullptr;
  107. bool auto_expand_selected = true;
  108. bool hide_filtered_out_parents = false;
  109. bool connect_to_script_mode = false;
  110. bool connecting_signal = false;
  111. bool update_when_invisible = true;
  112. int blocked;
  113. void _compute_hash(Node *p_node, uint64_t &hash);
  114. void _reset();
  115. PackedStringArray _get_node_configuration_warnings(Node *p_node);
  116. void _update_node_path(Node *p_node, bool p_recursive = true);
  117. void _update_node_subtree(Node *p_node, TreeItem *p_parent, bool p_force = false);
  118. void _update_node(Node *p_node, TreeItem *p_item, bool p_part_of_subscene);
  119. void _update_if_clean();
  120. void _test_update_tree();
  121. bool _update_filter(TreeItem *p_parent = nullptr, bool p_scroll_to_selected = false);
  122. bool _item_matches_all_terms(TreeItem *p_item, const PackedStringArray &p_terms);
  123. void _tree_changed();
  124. void _tree_process_mode_changed();
  125. void _move_node_children(HashMap<Node *, CachedNode>::Iterator &p_I);
  126. void _move_node_item(TreeItem *p_parent, HashMap<Node *, CachedNode>::Iterator &p_I);
  127. void _node_child_order_changed(Node *p_node);
  128. void _node_editor_state_changed(Node *p_node);
  129. void _node_added(Node *p_node);
  130. void _node_removed(Node *p_node);
  131. void _node_renamed(Node *p_node);
  132. TreeItem *_find(TreeItem *p_node, const NodePath &p_path);
  133. void _notification(int p_what);
  134. void _selected_changed();
  135. void _deselect_items();
  136. void _cell_collapsed(Object *p_obj);
  137. uint64_t last_hash;
  138. bool can_rename;
  139. bool can_open_instance;
  140. bool updating_tree = false;
  141. bool show_enabled_subscene = false;
  142. bool is_scene_tree_dock = false;
  143. void _edited();
  144. void _renamed(TreeItem *p_item, TreeItem *p_batch_item, Node *p_node = nullptr);
  145. HashSet<Node *> marked;
  146. bool marked_selectable = false;
  147. bool marked_children_selectable = false;
  148. bool display_foreign = false;
  149. bool tree_dirty = true;
  150. bool pending_test_update = false;
  151. Timer *update_node_tooltip_delay = nullptr;
  152. static void _bind_methods();
  153. void _cell_button_pressed(Object *p_item, int p_column, int p_id, MouseButton p_button);
  154. void _toggle_visible(Node *p_node);
  155. void _cell_multi_selected(Object *p_object, int p_cell, bool p_selected);
  156. void _update_selection(TreeItem *item);
  157. void _node_script_changed(Node *p_node);
  158. void _node_visibility_changed(Node *p_node);
  159. void _update_visibility_color(Node *p_node, TreeItem *p_item);
  160. void _set_item_custom_color(TreeItem *p_item, Color p_color);
  161. void _update_node_tooltip(Node *p_node, TreeItem *p_item);
  162. void _queue_update_node_tooltip(Node *p_node, TreeItem *p_item);
  163. void _tree_scroll_to_item(ObjectID p_item_id);
  164. void _selection_changed();
  165. Node *get_scene_node() const;
  166. Variant get_drag_data_fw(const Point2 &p_point, Control *p_from);
  167. bool can_drop_data_fw(const Point2 &p_point, const Variant &p_data, Control *p_from) const;
  168. void drop_data_fw(const Point2 &p_point, const Variant &p_data, Control *p_from);
  169. void _empty_clicked(const Vector2 &p_pos, MouseButton p_button);
  170. void _rmb_select(const Vector2 &p_pos, MouseButton p_button = MouseButton::RIGHT);
  171. void _warning_changed(Node *p_for_node);
  172. void _update_marking_list(const HashSet<Node *> &p_marked);
  173. Timer *update_timer = nullptr;
  174. List<StringName> *script_types;
  175. bool _is_script_type(const StringName &p_type) const;
  176. Vector<StringName> valid_types;
  177. void _update_ask_before_revoking_unique_name();
  178. void _revoke_unique_name();
  179. public:
  180. // Public for use with callable_mp.
  181. void _update_tree(bool p_scroll_to_selected = false);
  182. void rename_node(Node *p_node, const String &p_name, TreeItem *p_item = nullptr);
  183. void set_filter(const String &p_filter);
  184. String get_filter() const;
  185. String get_filter_term_warning();
  186. void set_show_all_nodes(bool p_show_all_nodes);
  187. void set_as_scene_tree_dock();
  188. void set_display_foreign_nodes(bool p_display);
  189. void set_marked(const HashSet<Node *> &p_marked, bool p_selectable = true, bool p_children_selectable = true);
  190. void set_marked(Node *p_marked, bool p_selectable = true, bool p_children_selectable = true);
  191. void set_selected(Node *p_node, bool p_emit_selected = true);
  192. Node *get_selected();
  193. void set_can_rename(bool p_can_rename) { can_rename = p_can_rename; }
  194. void set_editor_selection(EditorSelection *p_selection);
  195. void set_show_enabled_subscene(bool p_show) { show_enabled_subscene = p_show; }
  196. void set_valid_types(const Vector<StringName> &p_valid);
  197. inline void update_tree() { _update_tree(); }
  198. void set_auto_expand_selected(bool p_auto, bool p_update_settings);
  199. void set_hide_filtered_out_parents(bool p_hide, bool p_update_settings);
  200. void set_connect_to_script_mode(bool p_enable);
  201. void set_connecting_signal(bool p_enable);
  202. void set_update_when_invisible(bool p_enable);
  203. Tree *get_scene_tree() { return tree; }
  204. void update_warning();
  205. SceneTreeEditor(bool p_label = true, bool p_can_rename = false, bool p_can_open_instance = false);
  206. ~SceneTreeEditor();
  207. };
  208. class SceneTreeDialog : public ConfirmationDialog {
  209. GDCLASS(SceneTreeDialog, ConfirmationDialog);
  210. VBoxContainer *content = nullptr;
  211. SceneTreeEditor *tree = nullptr;
  212. LineEdit *filter = nullptr;
  213. CheckButton *show_all_nodes = nullptr;
  214. LocalVector<TextureRect *> valid_type_icons;
  215. HBoxContainer *allowed_types_hbox = nullptr;
  216. void _select();
  217. void _cancel();
  218. void _selected_changed();
  219. void _filter_changed(const String &p_filter);
  220. void _on_filter_gui_input(const Ref<InputEvent> &p_event);
  221. void _show_all_nodes_changed(bool p_button_pressed);
  222. protected:
  223. void _update_valid_type_icons();
  224. void _notification(int p_what);
  225. static void _bind_methods();
  226. public:
  227. void popup_scenetree_dialog(Node *p_selected_node = nullptr, Node *p_marked_node = nullptr, bool p_marked_node_selectable = true, bool p_marked_node_children_selectable = true);
  228. void set_valid_types(const Vector<StringName> &p_valid);
  229. SceneTreeEditor *get_scene_tree() { return tree; }
  230. LineEdit *get_filter_line_edit() { return filter; }
  231. SceneTreeDialog();
  232. };