editor_data.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332
  1. /**************************************************************************/
  2. /* editor_data.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 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 next();
  73. bool previous();
  74. ObjectID get_current();
  75. bool is_current_inspector_only() const;
  76. // Gets the size of the path of the current history item.
  77. int get_path_size() const;
  78. // Gets the object of the current history item, if valid.
  79. ObjectID get_path_object(int p_index) const;
  80. // Gets the property of the current history item.
  81. String get_path_property(int p_index) const;
  82. void clear();
  83. EditorSelectionHistory();
  84. };
  85. class EditorSelection;
  86. class EditorData {
  87. public:
  88. struct CustomType {
  89. String name;
  90. Ref<Script> script;
  91. Ref<Texture2D> icon;
  92. };
  93. struct EditedScene {
  94. Node *root = nullptr;
  95. String path;
  96. uint64_t file_modified_time = 0;
  97. Dictionary editor_states;
  98. List<Node *> selection;
  99. Vector<EditorSelectionHistory::HistoryElement> history_stored;
  100. int history_current = 0;
  101. Dictionary custom_state;
  102. NodePath live_edit_root;
  103. int history_id = 0;
  104. uint64_t last_checked_version = 0;
  105. };
  106. private:
  107. Vector<EditorPlugin *> editor_plugins;
  108. HashMap<StringName, EditorPlugin *> extension_editor_plugins;
  109. struct PropertyData {
  110. String name;
  111. Variant value;
  112. };
  113. HashMap<String, Vector<CustomType>> custom_types;
  114. List<PropertyData> clipboard;
  115. 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. HashMap<Ref<Script>, Ref<Texture>> _script_icon_cache;
  125. Ref<Texture2D> _load_script_icon(const String &p_path) const;
  126. public:
  127. EditorPlugin *get_handling_main_editor(Object *p_object);
  128. Vector<EditorPlugin *> get_handling_sub_editors(Object *p_object);
  129. EditorPlugin *get_editor_by_name(const String &p_name);
  130. void copy_object_params(Object *p_object);
  131. void paste_object_params(Object *p_object);
  132. Dictionary get_editor_plugin_states() const;
  133. Dictionary get_scene_editor_states(int p_idx) const;
  134. void set_editor_plugin_states(const Dictionary &p_states);
  135. void get_editor_breakpoints(List<String> *p_breakpoints);
  136. void clear_editor_states();
  137. void save_editor_external_data();
  138. void apply_changes_in_editors();
  139. void add_editor_plugin(EditorPlugin *p_plugin);
  140. void remove_editor_plugin(EditorPlugin *p_plugin);
  141. int get_editor_plugin_count() const;
  142. EditorPlugin *get_editor_plugin(int p_idx);
  143. void add_extension_editor_plugin(const StringName &p_class_name, EditorPlugin *p_plugin);
  144. void remove_extension_editor_plugin(const StringName &p_class_name);
  145. bool has_extension_editor_plugin(const StringName &p_class_name);
  146. EditorPlugin *get_extension_editor_plugin(const StringName &p_class_name);
  147. 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)
  148. void remove_undo_redo_inspector_hook_callback(Callable p_callable);
  149. const Vector<Callable> get_undo_redo_inspector_hook_callback();
  150. 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)
  151. void remove_move_array_element_function(const StringName &p_class);
  152. Callable get_move_array_element_function(const StringName &p_class) const;
  153. void save_editor_global_states();
  154. void add_custom_type(const String &p_type, const String &p_inherits, const Ref<Script> &p_script, const Ref<Texture2D> &p_icon);
  155. Variant instantiate_custom_type(const String &p_type, const String &p_inherits);
  156. void remove_custom_type(const String &p_type);
  157. const HashMap<String, Vector<CustomType>> &get_custom_types() const { return custom_types; }
  158. const CustomType *get_custom_type_by_name(const String &p_name) const;
  159. const CustomType *get_custom_type_by_path(const String &p_path) const;
  160. bool is_type_recognized(const String &p_type) const;
  161. void instantiate_object_properties(Object *p_object);
  162. int add_edited_scene(int p_at_pos);
  163. void move_edited_scene_index(int p_idx, int p_to_idx);
  164. void remove_scene(int p_idx);
  165. void set_edited_scene(int p_idx);
  166. void set_edited_scene_root(Node *p_root);
  167. int get_edited_scene() const;
  168. int get_edited_scene_from_path(const String &p_path) const;
  169. Node *get_edited_scene_root(int p_idx = -1);
  170. int get_edited_scene_count() const;
  171. Vector<EditedScene> get_edited_scenes() const;
  172. String get_scene_title(int p_idx, bool p_always_strip_extension = false) const;
  173. String get_scene_path(int p_idx) const;
  174. String get_scene_type(int p_idx) const;
  175. void set_scene_path(int p_idx, const String &p_path);
  176. Ref<Script> get_scene_root_script(int p_idx) const;
  177. void set_scene_modified_time(int p_idx, uint64_t p_time);
  178. uint64_t get_scene_modified_time(int p_idx) const;
  179. void clear_edited_scenes();
  180. void set_edited_scene_live_edit_root(const NodePath &p_root);
  181. NodePath get_edited_scene_live_edit_root();
  182. bool check_and_update_scene(int p_idx);
  183. void move_edited_scene_to_index(int p_idx);
  184. bool call_build();
  185. void set_scene_as_saved(int p_idx);
  186. bool is_scene_changed(int p_idx);
  187. int get_scene_history_id_from_path(const String &p_path) const;
  188. int get_current_edited_scene_history_id() const;
  189. int get_scene_history_id(int p_idx) const;
  190. void set_plugin_window_layout(Ref<ConfigFile> p_layout);
  191. void get_plugin_window_layout(Ref<ConfigFile> p_layout);
  192. void save_edited_scene_state(EditorSelection *p_selection, EditorSelectionHistory *p_history, const Dictionary &p_custom);
  193. Dictionary restore_edited_scene_state(EditorSelection *p_selection, EditorSelectionHistory *p_history);
  194. void notify_edited_scene_changed();
  195. void notify_resource_saved(const Ref<Resource> &p_resource);
  196. void notify_scene_saved(const String &p_path);
  197. bool script_class_is_parent(const String &p_class, const String &p_inherits);
  198. StringName script_class_get_base(const String &p_class) const;
  199. Variant script_class_instance(const String &p_class);
  200. Ref<Script> script_class_load_script(const String &p_class) const;
  201. StringName script_class_get_name(const String &p_path) const;
  202. void script_class_set_name(const String &p_path, const StringName &p_class);
  203. String script_class_get_icon_path(const String &p_class) const;
  204. void script_class_set_icon_path(const String &p_class, const String &p_icon_path);
  205. void script_class_clear_icon_paths() { _script_class_icon_paths.clear(); }
  206. void script_class_save_icon_paths();
  207. void script_class_load_icon_paths();
  208. Ref<Texture2D> extension_class_get_icon(const String &p_class) const;
  209. Ref<Texture2D> get_script_icon(const Ref<Script> &p_script);
  210. void clear_script_icon_cache();
  211. EditorData();
  212. ~EditorData();
  213. };
  214. /**
  215. * Stores and provides access to the nodes currently selected in the editor.
  216. *
  217. * This provides a central location for storing "selected" nodes, as a selection can be triggered from multiple places,
  218. * such as the SceneTreeDock or a main screen editor plugin (e.g. CanvasItemEditor).
  219. */
  220. class EditorSelection : public Object {
  221. GDCLASS(EditorSelection, Object);
  222. // Contains the selected nodes and corresponding metadata.
  223. // Metadata objects come from calling _get_editor_data on the editor_plugins, passing the selected node.
  224. HashMap<Node *, Object *> selection;
  225. // Tracks whether the selection change signal has been emitted.
  226. // Prevents multiple signals being called in one frame.
  227. bool emitted = false;
  228. bool changed = false;
  229. bool node_list_changed = false;
  230. void _node_removed(Node *p_node);
  231. // Editor plugins which are related to selection.
  232. List<Object *> editor_plugins;
  233. List<Node *> selected_node_list;
  234. void _update_node_list();
  235. TypedArray<Node> _get_transformable_selected_nodes();
  236. void _emit_change();
  237. protected:
  238. static void _bind_methods();
  239. public:
  240. void add_node(Node *p_node);
  241. void remove_node(Node *p_node);
  242. bool is_selected(Node *p_node) const;
  243. template <typename T>
  244. T *get_node_editor_data(Node *p_node) {
  245. if (!selection.has(p_node)) {
  246. return nullptr;
  247. }
  248. return Object::cast_to<T>(selection[p_node]);
  249. }
  250. // Adds an editor plugin which can provide metadata for selected nodes.
  251. void add_editor_plugin(Object *p_object);
  252. void update();
  253. void clear();
  254. // Returns all the selected nodes.
  255. TypedArray<Node> get_selected_nodes();
  256. // Returns only the top level selected nodes.
  257. // That is, if the selection includes some node and a child of that node, only the parent is returned.
  258. List<Node *> &get_selected_node_list();
  259. // Returns all the selected nodes (list version of "get_selected_nodes").
  260. List<Node *> get_full_selected_node_list();
  261. // Returns the map of selected objects and their metadata.
  262. HashMap<Node *, Object *> &get_selection() { return selection; }
  263. EditorSelection();
  264. ~EditorSelection();
  265. };
  266. #endif // EDITOR_DATA_H