class_undoredo.rst 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338
  1. :github_url: hide
  2. .. Generated automatically by doc/tools/make_rst.py in Godot's source tree.
  3. .. DO NOT EDIT THIS FILE, but the UndoRedo.xml source instead.
  4. .. The source is found in doc/classes or modules/<name>/doc_classes.
  5. .. _class_UndoRedo:
  6. UndoRedo
  7. ========
  8. **Inherits:** :ref:`Object<class_Object>`
  9. Helper to manage undo/redo operations in the editor or custom tools.
  10. Description
  11. -----------
  12. Helper to manage undo/redo operations in the editor or custom tools. It works by registering methods and property changes inside "actions".
  13. Common behavior is to create an action, then add do/undo calls to functions or property changes, then committing the action.
  14. Here's an example on how to add an action to the Godot editor's own ``UndoRedo``, from a plugin:
  15. .. tabs::
  16. .. code-tab:: gdscript
  17. var undo_redo = get_undo_redo() # Method of EditorPlugin.
  18. func do_something():
  19. pass # Put your code here.
  20. func undo_something():
  21. pass # Put here the code that reverts what's done by "do_something()".
  22. func _on_MyButton_pressed():
  23. var node = get_node("MyNode2D")
  24. undo_redo.create_action("Move the node")
  25. undo_redo.add_do_method(self, "do_something")
  26. undo_redo.add_undo_method(self, "undo_something")
  27. undo_redo.add_do_property(node, "position", Vector2(100,100))
  28. undo_redo.add_undo_property(node, "position", node.position)
  29. undo_redo.commit_action()
  30. .. code-tab:: csharp
  31. public UndoRedo UndoRedo;
  32. public override void _Ready()
  33. {
  34. UndoRedo = GetUndoRedo(); // Method of EditorPlugin.
  35. }
  36. public void DoSomething()
  37. {
  38. // Put your code here.
  39. }
  40. public void UndoSomething()
  41. {
  42. // Put here the code that reverts what's done by "DoSomething()".
  43. }
  44. private void OnMyButtonPressed()
  45. {
  46. var node = GetNode<Node2D>("MyNode2D");
  47. UndoRedo.CreateAction("Move the node");
  48. UndoRedo.AddDoMethod(this, nameof(DoSomething));
  49. UndoRedo.AddUndoMethod(this, nameof(UndoSomething));
  50. UndoRedo.AddDoProperty(node, "position", new Vector2(100, 100));
  51. UndoRedo.AddUndoProperty(node, "position", node.Position);
  52. UndoRedo.CommitAction();
  53. }
  54. \ :ref:`create_action<class_UndoRedo_method_create_action>`, :ref:`add_do_method<class_UndoRedo_method_add_do_method>`, :ref:`add_undo_method<class_UndoRedo_method_add_undo_method>`, :ref:`add_do_property<class_UndoRedo_method_add_do_property>`, :ref:`add_undo_property<class_UndoRedo_method_add_undo_property>`, and :ref:`commit_action<class_UndoRedo_method_commit_action>` should be called one after the other, like in the example. Not doing so could lead to crashes.
  55. If you don't need to register a method, you can leave :ref:`add_do_method<class_UndoRedo_method_add_do_method>` and :ref:`add_undo_method<class_UndoRedo_method_add_undo_method>` out; the same goes for properties. You can also register more than one method/property.
  56. Methods
  57. -------
  58. +-----------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  59. | void | :ref:`add_do_method<class_UndoRedo_method_add_do_method>` **(** :ref:`Object<class_Object>` object, :ref:`StringName<class_StringName>` method, ... **)** |vararg| |
  60. +-----------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  61. | void | :ref:`add_do_property<class_UndoRedo_method_add_do_property>` **(** :ref:`Object<class_Object>` object, :ref:`StringName<class_StringName>` property, :ref:`Variant<class_Variant>` value **)** |
  62. +-----------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  63. | void | :ref:`add_do_reference<class_UndoRedo_method_add_do_reference>` **(** :ref:`Object<class_Object>` object **)** |
  64. +-----------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  65. | void | :ref:`add_undo_method<class_UndoRedo_method_add_undo_method>` **(** :ref:`Object<class_Object>` object, :ref:`StringName<class_StringName>` method, ... **)** |vararg| |
  66. +-----------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  67. | void | :ref:`add_undo_property<class_UndoRedo_method_add_undo_property>` **(** :ref:`Object<class_Object>` object, :ref:`StringName<class_StringName>` property, :ref:`Variant<class_Variant>` value **)** |
  68. +-----------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  69. | void | :ref:`add_undo_reference<class_UndoRedo_method_add_undo_reference>` **(** :ref:`Object<class_Object>` object **)** |
  70. +-----------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  71. | void | :ref:`clear_history<class_UndoRedo_method_clear_history>` **(** :ref:`bool<class_bool>` increase_version=true **)** |
  72. +-----------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  73. | void | :ref:`commit_action<class_UndoRedo_method_commit_action>` **(** :ref:`bool<class_bool>` execute=true **)** |
  74. +-----------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  75. | void | :ref:`create_action<class_UndoRedo_method_create_action>` **(** :ref:`String<class_String>` name, :ref:`MergeMode<enum_UndoRedo_MergeMode>` merge_mode=0 **)** |
  76. +-----------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  77. | void | :ref:`end_force_keep_in_merge_ends<class_UndoRedo_method_end_force_keep_in_merge_ends>` **(** **)** |
  78. +-----------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  79. | :ref:`String<class_String>` | :ref:`get_action_name<class_UndoRedo_method_get_action_name>` **(** :ref:`int<class_int>` id **)** |
  80. +-----------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  81. | :ref:`int<class_int>` | :ref:`get_current_action<class_UndoRedo_method_get_current_action>` **(** **)** |
  82. +-----------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  83. | :ref:`String<class_String>` | :ref:`get_current_action_name<class_UndoRedo_method_get_current_action_name>` **(** **)** |const| |
  84. +-----------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  85. | :ref:`int<class_int>` | :ref:`get_history_count<class_UndoRedo_method_get_history_count>` **(** **)** |
  86. +-----------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  87. | :ref:`int<class_int>` | :ref:`get_version<class_UndoRedo_method_get_version>` **(** **)** |const| |
  88. +-----------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  89. | :ref:`bool<class_bool>` | :ref:`has_redo<class_UndoRedo_method_has_redo>` **(** **)** |const| |
  90. +-----------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  91. | :ref:`bool<class_bool>` | :ref:`has_undo<class_UndoRedo_method_has_undo>` **(** **)** |const| |
  92. +-----------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  93. | :ref:`bool<class_bool>` | :ref:`is_committing_action<class_UndoRedo_method_is_committing_action>` **(** **)** |const| |
  94. +-----------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  95. | :ref:`bool<class_bool>` | :ref:`redo<class_UndoRedo_method_redo>` **(** **)** |
  96. +-----------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  97. | void | :ref:`start_force_keep_in_merge_ends<class_UndoRedo_method_start_force_keep_in_merge_ends>` **(** **)** |
  98. +-----------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  99. | :ref:`bool<class_bool>` | :ref:`undo<class_UndoRedo_method_undo>` **(** **)** |
  100. +-----------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  101. Signals
  102. -------
  103. .. _class_UndoRedo_signal_version_changed:
  104. - **version_changed** **(** **)**
  105. Called when :ref:`undo<class_UndoRedo_method_undo>` or :ref:`redo<class_UndoRedo_method_redo>` was called.
  106. Enumerations
  107. ------------
  108. .. _enum_UndoRedo_MergeMode:
  109. .. _class_UndoRedo_constant_MERGE_DISABLE:
  110. .. _class_UndoRedo_constant_MERGE_ENDS:
  111. .. _class_UndoRedo_constant_MERGE_ALL:
  112. enum **MergeMode**:
  113. - **MERGE_DISABLE** = **0** --- Makes "do"/"undo" operations stay in separate actions.
  114. - **MERGE_ENDS** = **1** --- Makes so that the action's "undo" operations are from the first action created and the "do" operations are from the last subsequent action with the same name.
  115. - **MERGE_ALL** = **2** --- Makes subsequent actions with the same name be merged into one.
  116. Method Descriptions
  117. -------------------
  118. .. _class_UndoRedo_method_add_do_method:
  119. - void **add_do_method** **(** :ref:`Object<class_Object>` object, :ref:`StringName<class_StringName>` method, ... **)** |vararg|
  120. Register a method that will be called when the action is committed.
  121. ----
  122. .. _class_UndoRedo_method_add_do_property:
  123. - void **add_do_property** **(** :ref:`Object<class_Object>` object, :ref:`StringName<class_StringName>` property, :ref:`Variant<class_Variant>` value **)**
  124. Register a property value change for "do".
  125. ----
  126. .. _class_UndoRedo_method_add_do_reference:
  127. - void **add_do_reference** **(** :ref:`Object<class_Object>` object **)**
  128. Register a reference for "do" that will be erased if the "do" history is lost. This is useful mostly for new nodes created for the "do" call. Do not use for resources.
  129. ----
  130. .. _class_UndoRedo_method_add_undo_method:
  131. - void **add_undo_method** **(** :ref:`Object<class_Object>` object, :ref:`StringName<class_StringName>` method, ... **)** |vararg|
  132. Register a method that will be called when the action is undone.
  133. ----
  134. .. _class_UndoRedo_method_add_undo_property:
  135. - void **add_undo_property** **(** :ref:`Object<class_Object>` object, :ref:`StringName<class_StringName>` property, :ref:`Variant<class_Variant>` value **)**
  136. Register a property value change for "undo".
  137. ----
  138. .. _class_UndoRedo_method_add_undo_reference:
  139. - void **add_undo_reference** **(** :ref:`Object<class_Object>` object **)**
  140. Register a reference for "undo" that will be erased if the "undo" history is lost. This is useful mostly for nodes removed with the "do" call (not the "undo" call!).
  141. ----
  142. .. _class_UndoRedo_method_clear_history:
  143. - void **clear_history** **(** :ref:`bool<class_bool>` increase_version=true **)**
  144. Clear the undo/redo history and associated references.
  145. Passing ``false`` to ``increase_version`` will prevent the version number to be increased from this.
  146. ----
  147. .. _class_UndoRedo_method_commit_action:
  148. - void **commit_action** **(** :ref:`bool<class_bool>` execute=true **)**
  149. Commit the action. If ``execute`` is true (default), all "do" methods/properties are called/set when this function is called.
  150. ----
  151. .. _class_UndoRedo_method_create_action:
  152. - void **create_action** **(** :ref:`String<class_String>` name, :ref:`MergeMode<enum_UndoRedo_MergeMode>` merge_mode=0 **)**
  153. Create a new action. After this is called, do all your calls to :ref:`add_do_method<class_UndoRedo_method_add_do_method>`, :ref:`add_undo_method<class_UndoRedo_method_add_undo_method>`, :ref:`add_do_property<class_UndoRedo_method_add_do_property>`, and :ref:`add_undo_property<class_UndoRedo_method_add_undo_property>`, then commit the action with :ref:`commit_action<class_UndoRedo_method_commit_action>`.
  154. The way actions are merged is dictated by the ``merge_mode`` argument. See :ref:`MergeMode<enum_UndoRedo_MergeMode>` for details.
  155. ----
  156. .. _class_UndoRedo_method_end_force_keep_in_merge_ends:
  157. - void **end_force_keep_in_merge_ends** **(** **)**
  158. Stops marking operations as to be processed even if the action gets merged with another in the :ref:`MERGE_ENDS<class_UndoRedo_constant_MERGE_ENDS>` mode. See :ref:`start_force_keep_in_merge_ends<class_UndoRedo_method_start_force_keep_in_merge_ends>`.
  159. ----
  160. .. _class_UndoRedo_method_get_action_name:
  161. - :ref:`String<class_String>` **get_action_name** **(** :ref:`int<class_int>` id **)**
  162. Gets the action name from its index.
  163. ----
  164. .. _class_UndoRedo_method_get_current_action:
  165. - :ref:`int<class_int>` **get_current_action** **(** **)**
  166. Gets the index of the current action.
  167. ----
  168. .. _class_UndoRedo_method_get_current_action_name:
  169. - :ref:`String<class_String>` **get_current_action_name** **(** **)** |const|
  170. Gets the name of the current action, equivalent to ``get_action_name(get_current_action())``.
  171. ----
  172. .. _class_UndoRedo_method_get_history_count:
  173. - :ref:`int<class_int>` **get_history_count** **(** **)**
  174. Returns how many elements are in the history.
  175. ----
  176. .. _class_UndoRedo_method_get_version:
  177. - :ref:`int<class_int>` **get_version** **(** **)** |const|
  178. Gets the version. Every time a new action is committed, the ``UndoRedo``'s version number is increased automatically.
  179. This is useful mostly to check if something changed from a saved version.
  180. ----
  181. .. _class_UndoRedo_method_has_redo:
  182. - :ref:`bool<class_bool>` **has_redo** **(** **)** |const|
  183. Returns ``true`` if a "redo" action is available.
  184. ----
  185. .. _class_UndoRedo_method_has_undo:
  186. - :ref:`bool<class_bool>` **has_undo** **(** **)** |const|
  187. Returns ``true`` if an "undo" action is available.
  188. ----
  189. .. _class_UndoRedo_method_is_committing_action:
  190. - :ref:`bool<class_bool>` **is_committing_action** **(** **)** |const|
  191. Returns ``true`` if the ``UndoRedo`` is currently committing the action, i.e. running its "do" method or property change (see :ref:`commit_action<class_UndoRedo_method_commit_action>`).
  192. ----
  193. .. _class_UndoRedo_method_redo:
  194. - :ref:`bool<class_bool>` **redo** **(** **)**
  195. Redo the last action.
  196. ----
  197. .. _class_UndoRedo_method_start_force_keep_in_merge_ends:
  198. - void **start_force_keep_in_merge_ends** **(** **)**
  199. Marks the next "do" and "undo" operations to be processed even if the action gets merged with another in the :ref:`MERGE_ENDS<class_UndoRedo_constant_MERGE_ENDS>` mode. Return to normal operation using :ref:`end_force_keep_in_merge_ends<class_UndoRedo_method_end_force_keep_in_merge_ends>`.
  200. ----
  201. .. _class_UndoRedo_method_undo:
  202. - :ref:`bool<class_bool>` **undo** **(** **)**
  203. Undo the last action.
  204. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  205. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  206. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  207. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  208. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  209. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`