class_undoredo.rst 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  1. :github_url: hide
  2. .. Generated automatically by doc/tools/makerst.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. **Category:** Core
  10. Brief Description
  11. -----------------
  12. Helper to manage undo/redo operations in the editor or custom tools.
  13. Methods
  14. -------
  15. +-------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  16. | :ref:`Variant<class_Variant>` | :ref:`add_do_method<class_UndoRedo_method_add_do_method>` **(** :ref:`Object<class_Object>` object, :ref:`String<class_String>` method, ... **)** vararg |
  17. +-------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  18. | void | :ref:`add_do_property<class_UndoRedo_method_add_do_property>` **(** :ref:`Object<class_Object>` object, :ref:`String<class_String>` property, :ref:`Variant<class_Variant>` value **)** |
  19. +-------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  20. | void | :ref:`add_do_reference<class_UndoRedo_method_add_do_reference>` **(** :ref:`Object<class_Object>` object **)** |
  21. +-------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  22. | :ref:`Variant<class_Variant>` | :ref:`add_undo_method<class_UndoRedo_method_add_undo_method>` **(** :ref:`Object<class_Object>` object, :ref:`String<class_String>` method, ... **)** vararg |
  23. +-------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  24. | void | :ref:`add_undo_property<class_UndoRedo_method_add_undo_property>` **(** :ref:`Object<class_Object>` object, :ref:`String<class_String>` property, :ref:`Variant<class_Variant>` value **)** |
  25. +-------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  26. | void | :ref:`add_undo_reference<class_UndoRedo_method_add_undo_reference>` **(** :ref:`Object<class_Object>` object **)** |
  27. +-------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  28. | void | :ref:`clear_history<class_UndoRedo_method_clear_history>` **(** :ref:`bool<class_bool>` increase_version=true **)** |
  29. +-------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  30. | void | :ref:`commit_action<class_UndoRedo_method_commit_action>` **(** **)** |
  31. +-------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  32. | void | :ref:`create_action<class_UndoRedo_method_create_action>` **(** :ref:`String<class_String>` name, :ref:`MergeMode<enum_UndoRedo_MergeMode>` merge_mode=0 **)** |
  33. +-------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  34. | :ref:`String<class_String>` | :ref:`get_current_action_name<class_UndoRedo_method_get_current_action_name>` **(** **)** const |
  35. +-------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  36. | :ref:`int<class_int>` | :ref:`get_version<class_UndoRedo_method_get_version>` **(** **)** const |
  37. +-------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  38. | :ref:`bool<class_bool>` | :ref:`is_commiting_action<class_UndoRedo_method_is_commiting_action>` **(** **)** const |
  39. +-------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  40. | :ref:`bool<class_bool>` | :ref:`redo<class_UndoRedo_method_redo>` **(** **)** |
  41. +-------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  42. | :ref:`bool<class_bool>` | :ref:`undo<class_UndoRedo_method_undo>` **(** **)** |
  43. +-------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  44. Enumerations
  45. ------------
  46. .. _enum_UndoRedo_MergeMode:
  47. .. _class_UndoRedo_constant_MERGE_DISABLE:
  48. .. _class_UndoRedo_constant_MERGE_ENDS:
  49. .. _class_UndoRedo_constant_MERGE_ALL:
  50. enum **MergeMode**:
  51. - **MERGE_DISABLE** = **0** --- Makes 'do'/'undo' operations stay in separate actions.
  52. - **MERGE_ENDS** = **1** --- Makes so that the action's 'do' operation is from the first action created and the 'undo' operation is from the last subsequent action with the same name.
  53. - **MERGE_ALL** = **2** --- Makes subsequent actions with the same name be merged into one.
  54. Description
  55. -----------
  56. Helper to manage undo/redo operations in the editor or custom tools. It works by registering methods and property changes inside 'actions'.
  57. Common behavior is to create an action, then add do/undo calls to functions or property changes, then committing the action.
  58. Here's an example on how to add an action to the Godot editor's own :ref:`UndoRedo<class_UndoRedo>`, from a plugin:
  59. ::
  60. var undo_redo = get_undo_redo() # Method of EditorPlugin.
  61. func do_something():
  62. pass # Put your code here.
  63. func undo_something():
  64. pass # Put here the code that reverts what's done by "do_something()".
  65. func _on_MyButton_pressed():
  66. var node = get_node("MyNode2D")
  67. undo_redo.create_action("Move the node")
  68. undo_redo.add_do_method(self, "do_something")
  69. undo_redo.add_undo_method(self, "undo_something")
  70. undo_redo.add_do_property(node, "position", Vector2(100,100))
  71. undo_redo.add_undo_property(node, "position", node.position)
  72. undo_redo.commit_action()
  73. :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.
  74. 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, and so it goes for properties. You can register more than one method/property.
  75. Method Descriptions
  76. -------------------
  77. .. _class_UndoRedo_method_add_do_method:
  78. - :ref:`Variant<class_Variant>` **add_do_method** **(** :ref:`Object<class_Object>` object, :ref:`String<class_String>` method, ... **)** vararg
  79. Register a method that will be called when the action is committed.
  80. ----
  81. .. _class_UndoRedo_method_add_do_property:
  82. - void **add_do_property** **(** :ref:`Object<class_Object>` object, :ref:`String<class_String>` property, :ref:`Variant<class_Variant>` value **)**
  83. Register a property value change for 'do'.
  84. ----
  85. .. _class_UndoRedo_method_add_do_reference:
  86. - void **add_do_reference** **(** :ref:`Object<class_Object>` object **)**
  87. 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.
  88. ----
  89. .. _class_UndoRedo_method_add_undo_method:
  90. - :ref:`Variant<class_Variant>` **add_undo_method** **(** :ref:`Object<class_Object>` object, :ref:`String<class_String>` method, ... **)** vararg
  91. Register a method that will be called when the action is undone.
  92. ----
  93. .. _class_UndoRedo_method_add_undo_property:
  94. - void **add_undo_property** **(** :ref:`Object<class_Object>` object, :ref:`String<class_String>` property, :ref:`Variant<class_Variant>` value **)**
  95. Register a property value change for 'undo'.
  96. ----
  97. .. _class_UndoRedo_method_add_undo_reference:
  98. - void **add_undo_reference** **(** :ref:`Object<class_Object>` object **)**
  99. 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!).
  100. ----
  101. .. _class_UndoRedo_method_clear_history:
  102. - void **clear_history** **(** :ref:`bool<class_bool>` increase_version=true **)**
  103. Clear the undo/redo history and associated references.
  104. Passing ``false`` to ``increase_version`` will prevent the version number to be increased from this.
  105. ----
  106. .. _class_UndoRedo_method_commit_action:
  107. - void **commit_action** **(** **)**
  108. Commit the action. All 'do' methods/properties are called/set when this function is called.
  109. ----
  110. .. _class_UndoRedo_method_create_action:
  111. - void **create_action** **(** :ref:`String<class_String>` name, :ref:`MergeMode<enum_UndoRedo_MergeMode>` merge_mode=0 **)**
  112. 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>`.
  113. The way actions are merged is dictated by the ``merge_mode`` argument. See :ref:`MergeMode<enum_UndoRedo_MergeMode>` for details.
  114. ----
  115. .. _class_UndoRedo_method_get_current_action_name:
  116. - :ref:`String<class_String>` **get_current_action_name** **(** **)** const
  117. Get the name of the current action.
  118. ----
  119. .. _class_UndoRedo_method_get_version:
  120. - :ref:`int<class_int>` **get_version** **(** **)** const
  121. Get the version, each time a new action is committed, the version number of the :ref:`UndoRedo<class_UndoRedo>` is increased automatically.
  122. This is useful mostly to check if something changed from a saved version.
  123. ----
  124. .. _class_UndoRedo_method_is_commiting_action:
  125. - :ref:`bool<class_bool>` **is_commiting_action** **(** **)** const
  126. Returns ``true`` if the :ref:`UndoRedo<class_UndoRedo>` is currently committing the action, i.e. running its 'do' method or property change (see :ref:`commit_action<class_UndoRedo_method_commit_action>`).
  127. ----
  128. .. _class_UndoRedo_method_redo:
  129. - :ref:`bool<class_bool>` **redo** **(** **)**
  130. Redo the last action.
  131. ----
  132. .. _class_UndoRedo_method_undo:
  133. - :ref:`bool<class_bool>` **undo** **(** **)**
  134. Undo the last action.