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