scene_tree_dock.h 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. /*************************************************************************/
  2. /* scene_tree_dock.h */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */
  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_sub_scene.h"
  36. #include "editor/groups_editor.h"
  37. #include "editor/reparent_dialog.h"
  38. #include "editor/script_create_dialog.h"
  39. #include "scene/animation/animation_player.h"
  40. #include "scene/gui/box_container.h"
  41. #include "scene/gui/button.h"
  42. #include "scene/gui/control.h"
  43. #include "scene/gui/label.h"
  44. #include "scene/gui/popup_menu.h"
  45. #include "scene/gui/tool_button.h"
  46. #include "scene/gui/tree.h"
  47. #include "scene_tree_editor.h"
  48. class EditorNode;
  49. class SceneTreeDock : public VBoxContainer {
  50. GDCLASS(SceneTreeDock, VBoxContainer);
  51. enum Tool {
  52. TOOL_NEW,
  53. TOOL_INSTANCE,
  54. TOOL_REPLACE,
  55. TOOL_ATTACH_SCRIPT,
  56. TOOL_CLEAR_SCRIPT,
  57. TOOL_MOVE_UP,
  58. TOOL_MOVE_DOWN,
  59. TOOL_DUPLICATE,
  60. TOOL_REPARENT,
  61. TOOL_NEW_SCENE_FROM,
  62. TOOL_MERGE_FROM_SCENE,
  63. TOOL_MULTI_EDIT,
  64. TOOL_ERASE,
  65. TOOL_COPY_NODE_PATH,
  66. TOOL_BUTTON_MAX,
  67. TOOL_SCENE_EDITABLE_CHILDREN,
  68. TOOL_SCENE_USE_PLACEHOLDER,
  69. TOOL_SCENE_CLEAR_INSTANCING,
  70. TOOL_SCENE_OPEN,
  71. TOOL_SCENE_CLEAR_INHERITANCE,
  72. TOOL_SCENE_CLEAR_INHERITANCE_CONFIRM,
  73. TOOL_SCENE_OPEN_INHERITED
  74. };
  75. enum {
  76. EDIT_SUBRESOURCE_BASE = 100
  77. };
  78. Vector<ObjectID> subresources;
  79. bool restore_script_editor_on_drag;
  80. int current_option;
  81. CreateDialog *create_dialog;
  82. ToolButton *button_add;
  83. ToolButton *button_instance;
  84. ToolButton *button_create_script;
  85. ToolButton *button_clear_script;
  86. SceneTreeEditor *scene_tree;
  87. HBoxContainer *tool_hbc;
  88. void _tool_selected(int p_tool, bool p_confirm_override = false);
  89. EditorData *editor_data;
  90. EditorSelection *editor_selection;
  91. ScriptCreateDialog *script_create_dialog;
  92. AcceptDialog *accept;
  93. ConfirmationDialog *delete_dialog;
  94. ReparentDialog *reparent_dialog;
  95. EditorFileDialog *file;
  96. EditorSubScene *import_subscene_dialog;
  97. EditorFileDialog *new_scene_from_dialog;
  98. LineEdit *filter;
  99. TextureRect *filter_icon;
  100. PopupMenu *menu;
  101. ConfirmationDialog *clear_inherit_confirm;
  102. bool first_enter;
  103. void _create();
  104. Node *scene_root;
  105. Node *edited_scene;
  106. EditorNode *editor;
  107. void _add_children_to_popup(Object *p_obj, int p_depth);
  108. Node *_duplicate(Node *p_node, Map<Node *, Node *> &duplimap);
  109. void _node_reparent(NodePath p_path, bool p_keep_global_xform);
  110. void _do_reparent(Node *p_new_parent, int p_position_in_parent, Vector<Node *> p_nodes, bool p_keep_global_xform);
  111. void _set_owners(Node *p_owner, const Array &p_nodes);
  112. void _node_replace_owner(Node *p_base, Node *p_node, Node *p_root);
  113. void _load_request(const String &p_path);
  114. void _script_open_request(const Ref<Script> &p_script);
  115. bool _cyclical_dependency_exists(const String &p_target_scene_path, Node *p_desired_node);
  116. void _node_selected();
  117. void _node_renamed();
  118. void _script_created(Ref<Script> p_script);
  119. void _delete_confirm();
  120. void _node_prerenamed(Node *p_node, const String &p_new_name);
  121. void _nodes_drag_begin();
  122. void _input(Ref<InputEvent> p_event);
  123. void _unhandled_key_input(Ref<InputEvent> p_event);
  124. void _import_subscene();
  125. void _new_scene_from(String p_file);
  126. bool _validate_no_foreign();
  127. void _selection_changed();
  128. void _fill_path_renames(Vector<StringName> base_path, Vector<StringName> new_base_path, Node *p_node, List<Pair<NodePath, NodePath> > *p_renames);
  129. void _normalize_drop(Node *&to_node, int &to_pos, int p_type);
  130. void _nodes_dragged(Array p_nodes, NodePath p_to, int p_type);
  131. void _files_dropped(Vector<String> p_files, NodePath p_to, int p_type);
  132. void _script_dropped(String p_file, NodePath p_to);
  133. void _tree_rmb(const Vector2 &p_menu_pos);
  134. void _filter_changed(const String &p_filter);
  135. void _perform_instance_scenes(const Vector<String> &p_files, Node *parent, int p_pos);
  136. void _replace_with_branch_scene(const String &p_file, Node *base);
  137. void _file_selected(String p_file);
  138. protected:
  139. void _notification(int p_what);
  140. static void _bind_methods();
  141. public:
  142. String get_filter();
  143. void set_filter(const String &p_filter);
  144. void _focus_node();
  145. void import_subscene();
  146. void set_edited_scene(Node *p_scene);
  147. void instance(const String &p_file);
  148. void instance_scenes(const Vector<String> &p_files, Node *p_parent = NULL);
  149. void set_selected(Node *p_node, bool p_emit_selected = false);
  150. void fill_path_renames(Node *p_node, Node *p_new_parent, List<Pair<NodePath, NodePath> > *p_renames);
  151. void perform_node_renames(Node *p_base, List<Pair<NodePath, NodePath> > *p_renames, Map<Ref<Animation>, Set<int> > *r_rem_anims = NULL);
  152. SceneTreeEditor *get_tree_editor() { return scene_tree; }
  153. EditorData *get_editor_data() { return editor_data; }
  154. void open_script_dialog(Node *p_for_node);
  155. SceneTreeDock(EditorNode *p_editor, Node *p_scene_root, EditorSelection *p_editor_selection, EditorData &p_editor_data);
  156. };
  157. #endif // SCENE_TREE_DOCK_H