editor_data.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316
  1. /*************************************************************************/
  2. /* editor_data.h */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2022 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 EDITOR_DATA_H
  31. #define EDITOR_DATA_H
  32. #include "core/templates/list.h"
  33. #include "scene/resources/texture.h"
  34. class ConfigFile;
  35. class EditorPlugin;
  36. class EditorUndoRedoManager;
  37. /**
  38. * Stores the history of objects which have been selected for editing in the Editor & the Inspector.
  39. *
  40. * Used in the editor to set & access the currently edited object, as well as the history of objects which have been edited.
  41. */
  42. class EditorSelectionHistory {
  43. // Stores the object & property (if relevant).
  44. struct _Object {
  45. Ref<RefCounted> ref;
  46. ObjectID object;
  47. String property;
  48. bool inspector_only = false;
  49. };
  50. // Represents the selection of an object for editing.
  51. struct HistoryElement {
  52. // The sub-resources of the parent object (first in the path) that have been edited.
  53. // For example, Node2D -> nested resource -> nested resource, if edited each individually in their own inspector.
  54. Vector<_Object> path;
  55. // The current point in the path. This is always equal to the last item in the path - it is never decremented.
  56. int level = 0;
  57. };
  58. friend class EditorData;
  59. Vector<HistoryElement> history;
  60. int current_elem_idx; // The current history element being edited.
  61. public:
  62. void cleanup_history();
  63. bool is_at_beginning() const;
  64. bool is_at_end() const;
  65. // Adds an object to the selection history. A property name can be passed if the target is a subresource of the given object.
  66. // If the object should not change the main screen plugin, it can be set as inspector only.
  67. void add_object(ObjectID p_object, const String &p_property = String(), bool p_inspector_only = false);
  68. int get_history_len();
  69. int get_history_pos();
  70. // Gets an object from the history. The most recent object would be the object with p_obj = get_history_len() - 1.
  71. ObjectID get_history_obj(int p_obj) const;
  72. bool is_history_obj_inspector_only(int p_obj) const;
  73. bool next();
  74. bool previous();
  75. ObjectID get_current();
  76. bool is_current_inspector_only() const;
  77. // Gets the size of the path of the current history item.
  78. int get_path_size() const;
  79. // Gets the object of the current history item, if valid.
  80. ObjectID get_path_object(int p_index) const;
  81. // Gets the property of the current history item.
  82. String get_path_property(int p_index) const;
  83. void clear();
  84. EditorSelectionHistory();
  85. };
  86. class EditorSelection;
  87. class EditorData {
  88. public:
  89. struct CustomType {
  90. String name;
  91. Ref<Script> script;
  92. Ref<Texture2D> icon;
  93. };
  94. struct EditedScene {
  95. Node *root = nullptr;
  96. String path;
  97. uint64_t file_modified_time = 0;
  98. Dictionary editor_states;
  99. List<Node *> selection;
  100. Vector<EditorSelectionHistory::HistoryElement> history_stored;
  101. int history_current = 0;
  102. Dictionary custom_state;
  103. NodePath live_edit_root;
  104. int history_id = 0;
  105. uint64_t last_checked_version = 0;
  106. };
  107. private:
  108. Vector<EditorPlugin *> editor_plugins;
  109. struct PropertyData {
  110. String name;
  111. Variant value;
  112. };
  113. HashMap<String, Vector<CustomType>> custom_types;
  114. List<PropertyData> clipboard;
  115. Ref<EditorUndoRedoManager> undo_redo_manager;
  116. Vector<Callable> undo_redo_callbacks;
  117. HashMap<StringName, Callable> move_element_functions;
  118. Vector<EditedScene> edited_scene;
  119. int current_edited_scene = -1;
  120. int last_created_scene = 1;
  121. bool _find_updated_instances(Node *p_root, Node *p_node, HashSet<String> &checked_paths);
  122. HashMap<StringName, String> _script_class_icon_paths;
  123. HashMap<String, StringName> _script_class_file_to_path;
  124. public:
  125. EditorPlugin *get_editor(Object *p_object);
  126. Vector<EditorPlugin *> get_subeditors(Object *p_object);
  127. EditorPlugin *get_editor(String p_name);
  128. void copy_object_params(Object *p_object);
  129. void paste_object_params(Object *p_object);
  130. Dictionary get_editor_states() const;
  131. Dictionary get_scene_editor_states(int p_idx) const;
  132. void set_editor_states(const Dictionary &p_states);
  133. void get_editor_breakpoints(List<String> *p_breakpoints);
  134. void clear_editor_states();
  135. void save_editor_external_data();
  136. void apply_changes_in_editors();
  137. void add_editor_plugin(EditorPlugin *p_plugin);
  138. void remove_editor_plugin(EditorPlugin *p_plugin);
  139. int get_editor_plugin_count() const;
  140. EditorPlugin *get_editor_plugin(int p_idx);
  141. Ref<EditorUndoRedoManager> &get_undo_redo();
  142. void add_undo_redo_inspector_hook_callback(Callable p_callable); // Callbacks should have this signature: void (Object* undo_redo, Object *modified_object, String property, Variant new_value)
  143. void remove_undo_redo_inspector_hook_callback(Callable p_callable);
  144. const Vector<Callable> get_undo_redo_inspector_hook_callback();
  145. void add_move_array_element_function(const StringName &p_class, Callable p_callable); // Function should have this signature: void (Object* undo_redo, Object *modified_object, String array_prefix, int element_index, int new_position)
  146. void remove_move_array_element_function(const StringName &p_class);
  147. Callable get_move_array_element_function(const StringName &p_class) const;
  148. void save_editor_global_states();
  149. void restore_editor_global_states();
  150. void add_custom_type(const String &p_type, const String &p_inherits, const Ref<Script> &p_script, const Ref<Texture2D> &p_icon);
  151. Variant instance_custom_type(const String &p_type, const String &p_inherits);
  152. void remove_custom_type(const String &p_type);
  153. const HashMap<String, Vector<CustomType>> &get_custom_types() const { return custom_types; }
  154. const CustomType *get_custom_type_by_name(const String &p_name) const;
  155. const CustomType *get_custom_type_by_path(const String &p_path) const;
  156. bool is_type_recognized(const String &p_type) const;
  157. void instantiate_object_properties(Object *p_object);
  158. int add_edited_scene(int p_at_pos);
  159. void move_edited_scene_index(int p_idx, int p_to_idx);
  160. void remove_scene(int p_idx);
  161. void set_edited_scene(int p_idx);
  162. void set_edited_scene_root(Node *p_root);
  163. int get_edited_scene() const;
  164. Node *get_edited_scene_root(int p_idx = -1);
  165. int get_edited_scene_count() const;
  166. Vector<EditedScene> get_edited_scenes() const;
  167. String get_scene_title(int p_idx, bool p_always_strip_extension = false) const;
  168. String get_scene_path(int p_idx) const;
  169. String get_scene_type(int p_idx) const;
  170. void set_scene_path(int p_idx, const String &p_path);
  171. Ref<Script> get_scene_root_script(int p_idx) const;
  172. void set_edited_scene_version(uint64_t version, int p_scene_idx = -1);
  173. void set_scene_modified_time(int p_idx, uint64_t p_time);
  174. uint64_t get_scene_modified_time(int p_idx) const;
  175. void clear_edited_scenes();
  176. void set_edited_scene_live_edit_root(const NodePath &p_root);
  177. NodePath get_edited_scene_live_edit_root();
  178. bool check_and_update_scene(int p_idx);
  179. void move_edited_scene_to_index(int p_idx);
  180. bool call_build();
  181. void set_scene_as_saved(int p_idx);
  182. bool is_scene_changed(int p_idx);
  183. int get_scene_history_id_from_path(const String &p_path) const;
  184. int get_current_edited_scene_history_id() const;
  185. int get_scene_history_id(int p_idx) const;
  186. void set_plugin_window_layout(Ref<ConfigFile> p_layout);
  187. void get_plugin_window_layout(Ref<ConfigFile> p_layout);
  188. void save_edited_scene_state(EditorSelection *p_selection, EditorSelectionHistory *p_history, const Dictionary &p_custom);
  189. Dictionary restore_edited_scene_state(EditorSelection *p_selection, EditorSelectionHistory *p_history);
  190. void notify_edited_scene_changed();
  191. void notify_resource_saved(const Ref<Resource> &p_resource);
  192. bool script_class_is_parent(const String &p_class, const String &p_inherits);
  193. StringName script_class_get_base(const String &p_class) const;
  194. Variant script_class_instance(const String &p_class);
  195. Ref<Script> script_class_load_script(const String &p_class) const;
  196. StringName script_class_get_name(const String &p_path) const;
  197. void script_class_set_name(const String &p_path, const StringName &p_class);
  198. String script_class_get_icon_path(const String &p_class) const;
  199. void script_class_set_icon_path(const String &p_class, const String &p_icon_path);
  200. void script_class_clear_icon_paths() { _script_class_icon_paths.clear(); }
  201. void script_class_save_icon_paths();
  202. void script_class_load_icon_paths();
  203. EditorData();
  204. };
  205. /**
  206. * Stores and provides access to the nodes currently selected in the editor.
  207. *
  208. * This provides a central location for storing "selected" nodes, as a selection can be triggered from multiple places,
  209. * such as the SceneTreeDock or a main screen editor plugin (e.g. CanvasItemEditor).
  210. */
  211. class EditorSelection : public Object {
  212. GDCLASS(EditorSelection, Object);
  213. // Contains the selected nodes and corresponding metadata.
  214. // Metadata objects come from calling _get_editor_data on the editor_plugins, passing the selected node.
  215. HashMap<Node *, Object *> selection;
  216. // Tracks whether the selection change signal has been emitted.
  217. // Prevents multiple signals being called in one frame.
  218. bool emitted = false;
  219. bool changed = false;
  220. bool node_list_changed = false;
  221. void _node_removed(Node *p_node);
  222. // Editor plugins which are related to selection.
  223. List<Object *> editor_plugins;
  224. List<Node *> selected_node_list;
  225. void _update_node_list();
  226. TypedArray<Node> _get_transformable_selected_nodes();
  227. void _emit_change();
  228. protected:
  229. static void _bind_methods();
  230. public:
  231. void add_node(Node *p_node);
  232. void remove_node(Node *p_node);
  233. bool is_selected(Node *p_node) const;
  234. template <class T>
  235. T *get_node_editor_data(Node *p_node) {
  236. if (!selection.has(p_node)) {
  237. return nullptr;
  238. }
  239. return Object::cast_to<T>(selection[p_node]);
  240. }
  241. // Adds an editor plugin which can provide metadata for selected nodes.
  242. void add_editor_plugin(Object *p_object);
  243. void update();
  244. void clear();
  245. // Returns all the selected nodes.
  246. TypedArray<Node> get_selected_nodes();
  247. // Returns only the top level selected nodes.
  248. // That is, if the selection includes some node and a child of that node, only the parent is returned.
  249. List<Node *> &get_selected_node_list();
  250. // Returns all the selected nodes (list version of "get_selected_nodes").
  251. List<Node *> get_full_selected_node_list();
  252. // Returns the map of selected objects and their metadata.
  253. HashMap<Node *, Object *> &get_selection() { return selection; }
  254. EditorSelection();
  255. ~EditorSelection();
  256. };
  257. #endif // EDITOR_DATA_H