class_callable.rst 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474
  1. :github_url: hide
  2. .. DO NOT EDIT THIS FILE!!!
  3. .. Generated automatically from Godot engine sources.
  4. .. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py.
  5. .. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Callable.xml.
  6. .. _class_Callable:
  7. Callable
  8. ========
  9. A built-in type representing a method or a standalone function.
  10. .. rst-class:: classref-introduction-group
  11. Description
  12. -----------
  13. **Callable** is a built-in :ref:`Variant<class_Variant>` type that represents a function. It can either be a method within an :ref:`Object<class_Object>` instance, or a standalone function not related to any object, like a lambda function. Like all :ref:`Variant<class_Variant>` types, it can be stored in variables and passed to other functions. It is most commonly used for signal callbacks.
  14. \ **Example:**\
  15. .. tabs::
  16. .. code-tab:: gdscript
  17. func print_args(arg1, arg2, arg3 = ""):
  18. prints(arg1, arg2, arg3)
  19. func test():
  20. var callable = Callable(self, "print_args")
  21. callable.call("hello", "world") # Prints "hello world ".
  22. callable.call(Vector2.UP, 42, callable) # Prints "(0, -1) 42 Node(node.gd)::print_args".
  23. callable.call("invalid") # Invalid call, should have at least 2 arguments.
  24. .. code-tab:: csharp
  25. // Default parameter values are not supported.
  26. public void PrintArgs(Variant arg1, Variant arg2, Variant arg3 = default)
  27. {
  28. GD.PrintS(arg1, arg2, arg3);
  29. }
  30. public void Test()
  31. {
  32. // Invalid calls fail silently.
  33. Callable callable = new Callable(this, MethodName.PrintArgs);
  34. callable.Call("hello", "world"); // Default parameter values are not supported, should have 3 arguments.
  35. callable.Call(Vector2.Up, 42, callable); // Prints "(0, -1) 42 Node(Node.cs)::PrintArgs".
  36. callable.Call("invalid"); // Invalid call, should have 3 arguments.
  37. }
  38. In GDScript, it's possible to create lambda functions within a method. Lambda functions are custom callables that are not associated with an :ref:`Object<class_Object>` instance. Optionally, lambda functions can also be named. The name will be displayed in the debugger, or when calling :ref:`get_method<class_Callable_method_get_method>`.
  39. ::
  40. func _init():
  41. var my_lambda = func (message):
  42. print(message)
  43. # Prints Hello everyone!
  44. my_lambda.call("Hello everyone!")
  45. # Prints "Attack!", when the button_pressed signal is emitted.
  46. button_pressed.connect(func(): print("Attack!"))
  47. \ **Note:** Methods of native types such as :ref:`Signal<class_Signal>`, :ref:`Array<class_Array>`, or :ref:`Dictionary<class_Dictionary>` are not of type **Callable** in order to avoid unnecessary overhead. If you need to pass those methods as **Callable**, use a lambda function as a wrapper.
  48. ::
  49. func _init():
  50. var my_dictionary = { "hello": "world" }
  51. # This will not work, `clear` is not a callable.
  52. create_tween().tween_callback(my_dictionary.clear)
  53. # This will work, as lambdas are custom callables.
  54. create_tween().tween_callback(func(): my_dictionary.clear())
  55. .. rst-class:: classref-reftable-group
  56. Constructors
  57. ------------
  58. .. table::
  59. :widths: auto
  60. +---------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------+
  61. | :ref:`Callable<class_Callable>` | :ref:`Callable<class_Callable_constructor_Callable>` **(** **)** |
  62. +---------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------+
  63. | :ref:`Callable<class_Callable>` | :ref:`Callable<class_Callable_constructor_Callable>` **(** :ref:`Callable<class_Callable>` from **)** |
  64. +---------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------+
  65. | :ref:`Callable<class_Callable>` | :ref:`Callable<class_Callable_constructor_Callable>` **(** :ref:`Object<class_Object>` object, :ref:`StringName<class_StringName>` method **)** |
  66. +---------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------+
  67. .. rst-class:: classref-reftable-group
  68. Methods
  69. -------
  70. .. table::
  71. :widths: auto
  72. +-------------------------------------+-------------------------------------------------------------------------------------------------------------+
  73. | :ref:`Callable<class_Callable>` | :ref:`bind<class_Callable_method_bind>` **(** ... **)** |vararg| |const| |
  74. +-------------------------------------+-------------------------------------------------------------------------------------------------------------+
  75. | :ref:`Callable<class_Callable>` | :ref:`bindv<class_Callable_method_bindv>` **(** :ref:`Array<class_Array>` arguments **)** |
  76. +-------------------------------------+-------------------------------------------------------------------------------------------------------------+
  77. | :ref:`Variant<class_Variant>` | :ref:`call<class_Callable_method_call>` **(** ... **)** |vararg| |const| |
  78. +-------------------------------------+-------------------------------------------------------------------------------------------------------------+
  79. | void | :ref:`call_deferred<class_Callable_method_call_deferred>` **(** ... **)** |vararg| |const| |
  80. +-------------------------------------+-------------------------------------------------------------------------------------------------------------+
  81. | :ref:`Variant<class_Variant>` | :ref:`callv<class_Callable_method_callv>` **(** :ref:`Array<class_Array>` arguments **)** |const| |
  82. +-------------------------------------+-------------------------------------------------------------------------------------------------------------+
  83. | :ref:`Array<class_Array>` | :ref:`get_bound_arguments<class_Callable_method_get_bound_arguments>` **(** **)** |const| |
  84. +-------------------------------------+-------------------------------------------------------------------------------------------------------------+
  85. | :ref:`int<class_int>` | :ref:`get_bound_arguments_count<class_Callable_method_get_bound_arguments_count>` **(** **)** |const| |
  86. +-------------------------------------+-------------------------------------------------------------------------------------------------------------+
  87. | :ref:`StringName<class_StringName>` | :ref:`get_method<class_Callable_method_get_method>` **(** **)** |const| |
  88. +-------------------------------------+-------------------------------------------------------------------------------------------------------------+
  89. | :ref:`Object<class_Object>` | :ref:`get_object<class_Callable_method_get_object>` **(** **)** |const| |
  90. +-------------------------------------+-------------------------------------------------------------------------------------------------------------+
  91. | :ref:`int<class_int>` | :ref:`get_object_id<class_Callable_method_get_object_id>` **(** **)** |const| |
  92. +-------------------------------------+-------------------------------------------------------------------------------------------------------------+
  93. | :ref:`int<class_int>` | :ref:`hash<class_Callable_method_hash>` **(** **)** |const| |
  94. +-------------------------------------+-------------------------------------------------------------------------------------------------------------+
  95. | :ref:`bool<class_bool>` | :ref:`is_custom<class_Callable_method_is_custom>` **(** **)** |const| |
  96. +-------------------------------------+-------------------------------------------------------------------------------------------------------------+
  97. | :ref:`bool<class_bool>` | :ref:`is_null<class_Callable_method_is_null>` **(** **)** |const| |
  98. +-------------------------------------+-------------------------------------------------------------------------------------------------------------+
  99. | :ref:`bool<class_bool>` | :ref:`is_standard<class_Callable_method_is_standard>` **(** **)** |const| |
  100. +-------------------------------------+-------------------------------------------------------------------------------------------------------------+
  101. | :ref:`bool<class_bool>` | :ref:`is_valid<class_Callable_method_is_valid>` **(** **)** |const| |
  102. +-------------------------------------+-------------------------------------------------------------------------------------------------------------+
  103. | void | :ref:`rpc<class_Callable_method_rpc>` **(** ... **)** |vararg| |const| |
  104. +-------------------------------------+-------------------------------------------------------------------------------------------------------------+
  105. | void | :ref:`rpc_id<class_Callable_method_rpc_id>` **(** :ref:`int<class_int>` peer_id, ... **)** |vararg| |const| |
  106. +-------------------------------------+-------------------------------------------------------------------------------------------------------------+
  107. | :ref:`Callable<class_Callable>` | :ref:`unbind<class_Callable_method_unbind>` **(** :ref:`int<class_int>` argcount **)** |const| |
  108. +-------------------------------------+-------------------------------------------------------------------------------------------------------------+
  109. .. rst-class:: classref-reftable-group
  110. Operators
  111. ---------
  112. .. table::
  113. :widths: auto
  114. +-------------------------+------------------------------------------------------------------------------------------------------------+
  115. | :ref:`bool<class_bool>` | :ref:`operator !=<class_Callable_operator_neq_Callable>` **(** :ref:`Callable<class_Callable>` right **)** |
  116. +-------------------------+------------------------------------------------------------------------------------------------------------+
  117. | :ref:`bool<class_bool>` | :ref:`operator ==<class_Callable_operator_eq_Callable>` **(** :ref:`Callable<class_Callable>` right **)** |
  118. +-------------------------+------------------------------------------------------------------------------------------------------------+
  119. .. rst-class:: classref-section-separator
  120. ----
  121. .. rst-class:: classref-descriptions-group
  122. Constructor Descriptions
  123. ------------------------
  124. .. _class_Callable_constructor_Callable:
  125. .. rst-class:: classref-constructor
  126. :ref:`Callable<class_Callable>` **Callable** **(** **)**
  127. Constructs an empty **Callable**, with no object nor method bound.
  128. .. rst-class:: classref-item-separator
  129. ----
  130. .. rst-class:: classref-constructor
  131. :ref:`Callable<class_Callable>` **Callable** **(** :ref:`Callable<class_Callable>` from **)**
  132. Constructs a **Callable** as a copy of the given **Callable**.
  133. .. rst-class:: classref-item-separator
  134. ----
  135. .. rst-class:: classref-constructor
  136. :ref:`Callable<class_Callable>` **Callable** **(** :ref:`Object<class_Object>` object, :ref:`StringName<class_StringName>` method **)**
  137. Creates a new **Callable** for the method named ``method`` in the specified ``object``.
  138. .. rst-class:: classref-section-separator
  139. ----
  140. .. rst-class:: classref-descriptions-group
  141. Method Descriptions
  142. -------------------
  143. .. _class_Callable_method_bind:
  144. .. rst-class:: classref-method
  145. :ref:`Callable<class_Callable>` **bind** **(** ... **)** |vararg| |const|
  146. Returns a copy of this **Callable** with one or more arguments bound. When called, the bound arguments are passed *after* the arguments supplied by :ref:`call<class_Callable_method_call>`. See also :ref:`unbind<class_Callable_method_unbind>`.
  147. \ **Note:** When this method is chained with other similar methods, the order in which the argument list is modified is read from right to left.
  148. .. rst-class:: classref-item-separator
  149. ----
  150. .. _class_Callable_method_bindv:
  151. .. rst-class:: classref-method
  152. :ref:`Callable<class_Callable>` **bindv** **(** :ref:`Array<class_Array>` arguments **)**
  153. Returns a copy of this **Callable** with one or more arguments bound, reading them from an array. When called, the bound arguments are passed *after* the arguments supplied by :ref:`call<class_Callable_method_call>`. See also :ref:`unbind<class_Callable_method_unbind>`.
  154. \ **Note:** When this method is chained with other similar methods, the order in which the argument list is modified is read from right to left.
  155. .. rst-class:: classref-item-separator
  156. ----
  157. .. _class_Callable_method_call:
  158. .. rst-class:: classref-method
  159. :ref:`Variant<class_Variant>` **call** **(** ... **)** |vararg| |const|
  160. Calls the method represented by this **Callable**. Arguments can be passed and should match the method's signature.
  161. .. rst-class:: classref-item-separator
  162. ----
  163. .. _class_Callable_method_call_deferred:
  164. .. rst-class:: classref-method
  165. void **call_deferred** **(** ... **)** |vararg| |const|
  166. Calls the method represented by this **Callable** in deferred mode, i.e. at the end of the current frame. Arguments can be passed and should match the method's signature.
  167. ::
  168. func _ready():
  169. grab_focus.call_deferred()
  170. See also :ref:`Object.call_deferred<class_Object_method_call_deferred>`.
  171. .. rst-class:: classref-item-separator
  172. ----
  173. .. _class_Callable_method_callv:
  174. .. rst-class:: classref-method
  175. :ref:`Variant<class_Variant>` **callv** **(** :ref:`Array<class_Array>` arguments **)** |const|
  176. Calls the method represented by this **Callable**. Unlike :ref:`call<class_Callable_method_call>`, this method expects all arguments to be contained inside the ``arguments`` :ref:`Array<class_Array>`.
  177. .. rst-class:: classref-item-separator
  178. ----
  179. .. _class_Callable_method_get_bound_arguments:
  180. .. rst-class:: classref-method
  181. :ref:`Array<class_Array>` **get_bound_arguments** **(** **)** |const|
  182. Return the bound arguments (as long as :ref:`get_bound_arguments_count<class_Callable_method_get_bound_arguments_count>` is greater than zero), or empty (if :ref:`get_bound_arguments_count<class_Callable_method_get_bound_arguments_count>` is less than or equal to zero).
  183. .. rst-class:: classref-item-separator
  184. ----
  185. .. _class_Callable_method_get_bound_arguments_count:
  186. .. rst-class:: classref-method
  187. :ref:`int<class_int>` **get_bound_arguments_count** **(** **)** |const|
  188. Returns the total amount of arguments bound (or unbound) via successive :ref:`bind<class_Callable_method_bind>` or :ref:`unbind<class_Callable_method_unbind>` calls. If the amount of arguments unbound is greater than the ones bound, this function returns a value less than zero.
  189. .. rst-class:: classref-item-separator
  190. ----
  191. .. _class_Callable_method_get_method:
  192. .. rst-class:: classref-method
  193. :ref:`StringName<class_StringName>` **get_method** **(** **)** |const|
  194. Returns the name of the method represented by this **Callable**. If the callable is a lambda function, returns the function's name.
  195. .. rst-class:: classref-item-separator
  196. ----
  197. .. _class_Callable_method_get_object:
  198. .. rst-class:: classref-method
  199. :ref:`Object<class_Object>` **get_object** **(** **)** |const|
  200. Returns the object on which this **Callable** is called.
  201. .. rst-class:: classref-item-separator
  202. ----
  203. .. _class_Callable_method_get_object_id:
  204. .. rst-class:: classref-method
  205. :ref:`int<class_int>` **get_object_id** **(** **)** |const|
  206. Returns the ID of this **Callable**'s object (see :ref:`Object.get_instance_id<class_Object_method_get_instance_id>`).
  207. .. rst-class:: classref-item-separator
  208. ----
  209. .. _class_Callable_method_hash:
  210. .. rst-class:: classref-method
  211. :ref:`int<class_int>` **hash** **(** **)** |const|
  212. Returns the 32-bit hash value of this **Callable**'s object.
  213. \ **Note:** **Callable**\ s with equal content will always produce identical hash values. However, the reverse is not true. Returning identical hash values does *not* imply the callables are equal, because different callables can have identical hash values due to hash collisions. The engine uses a 32-bit hash algorithm for :ref:`hash<class_Callable_method_hash>`.
  214. .. rst-class:: classref-item-separator
  215. ----
  216. .. _class_Callable_method_is_custom:
  217. .. rst-class:: classref-method
  218. :ref:`bool<class_bool>` **is_custom** **(** **)** |const|
  219. Returns ``true`` if this **Callable** is a custom callable. Custom callables are created from :ref:`bind<class_Callable_method_bind>` or :ref:`unbind<class_Callable_method_unbind>`. In GDScript, lambda functions are also custom callables.
  220. .. rst-class:: classref-item-separator
  221. ----
  222. .. _class_Callable_method_is_null:
  223. .. rst-class:: classref-method
  224. :ref:`bool<class_bool>` **is_null** **(** **)** |const|
  225. Returns ``true`` if this **Callable** has no target to call the method on.
  226. .. rst-class:: classref-item-separator
  227. ----
  228. .. _class_Callable_method_is_standard:
  229. .. rst-class:: classref-method
  230. :ref:`bool<class_bool>` **is_standard** **(** **)** |const|
  231. Returns ``true`` if this **Callable** is a standard callable. This method is the opposite of :ref:`is_custom<class_Callable_method_is_custom>`. Returns ``false`` if this callable is a lambda function.
  232. .. rst-class:: classref-item-separator
  233. ----
  234. .. _class_Callable_method_is_valid:
  235. .. rst-class:: classref-method
  236. :ref:`bool<class_bool>` **is_valid** **(** **)** |const|
  237. Returns ``true`` if the callable's object exists and has a valid method name assigned, or is a custom callable.
  238. .. rst-class:: classref-item-separator
  239. ----
  240. .. _class_Callable_method_rpc:
  241. .. rst-class:: classref-method
  242. void **rpc** **(** ... **)** |vararg| |const|
  243. Perform an RPC (Remote Procedure Call) on all connected peers. This is used for multiplayer and is normally not available, unless the function being called has been marked as *RPC* (using :ref:`@GDScript.@rpc<class_@GDScript_annotation_@rpc>` or :ref:`Node.rpc_config<class_Node_method_rpc_config>`). Calling this method on unsupported functions will result in an error. See :ref:`Node.rpc<class_Node_method_rpc>`.
  244. .. rst-class:: classref-item-separator
  245. ----
  246. .. _class_Callable_method_rpc_id:
  247. .. rst-class:: classref-method
  248. void **rpc_id** **(** :ref:`int<class_int>` peer_id, ... **)** |vararg| |const|
  249. Perform an RPC (Remote Procedure Call) on a specific peer ID (see multiplayer documentation for reference). This is used for multiplayer and is normally not available unless the function being called has been marked as *RPC* (using :ref:`@GDScript.@rpc<class_@GDScript_annotation_@rpc>` or :ref:`Node.rpc_config<class_Node_method_rpc_config>`). Calling this method on unsupported functions will result in an error. See :ref:`Node.rpc_id<class_Node_method_rpc_id>`.
  250. .. rst-class:: classref-item-separator
  251. ----
  252. .. _class_Callable_method_unbind:
  253. .. rst-class:: classref-method
  254. :ref:`Callable<class_Callable>` **unbind** **(** :ref:`int<class_int>` argcount **)** |const|
  255. Returns a copy of this **Callable** with a number of arguments unbound. In other words, when the new callable is called the last few arguments supplied by the user are ignored, according to ``argcount``. The remaining arguments are passed to the callable. This allows to use the original callable in a context that attempts to pass more arguments than this callable can handle, e.g. a signal with a fixed number of arguments. See also :ref:`bind<class_Callable_method_bind>`.
  256. \ **Note:** When this method is chained with other similar methods, the order in which the argument list is modified is read from right to left.
  257. ::
  258. func _ready():
  259. foo.unbind(1).call(1, 2) # Calls foo(1).
  260. foo.bind(3, 4).unbind(1).call(1, 2) # Calls foo(1, 3, 4), note that it does not change the arguments from bind.
  261. .. rst-class:: classref-section-separator
  262. ----
  263. .. rst-class:: classref-descriptions-group
  264. Operator Descriptions
  265. ---------------------
  266. .. _class_Callable_operator_neq_Callable:
  267. .. rst-class:: classref-operator
  268. :ref:`bool<class_bool>` **operator !=** **(** :ref:`Callable<class_Callable>` right **)**
  269. Returns ``true`` if both **Callable**\ s invoke different targets.
  270. .. rst-class:: classref-item-separator
  271. ----
  272. .. _class_Callable_operator_eq_Callable:
  273. .. rst-class:: classref-operator
  274. :ref:`bool<class_bool>` **operator ==** **(** :ref:`Callable<class_Callable>` right **)**
  275. Returns ``true`` if both **Callable**\ s invoke the same custom target.
  276. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  277. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  278. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  279. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  280. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  281. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`
  282. .. |bitfield| replace:: :abbr:`BitField (This value is an integer composed as a bitmask of the following flags.)`