editor_data.h 13 KB

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