gdscript_basics.rst 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221
  1. .. _doc_gdscript:
  2. GDScript
  3. ========
  4. Introduction
  5. ------------
  6. *GDScript* is a high level, dynamically typed programming language used to
  7. create content. It uses a syntax similar to
  8. `Python <https://en.wikipedia.org/wiki/Python_%28programming_language%29>`_
  9. (blocks are indent-based and many keywords are similar). Its goal is
  10. to be optimized for and tightly integrated with Godot Engine, allowing great
  11. flexibility for content creation and integration.
  12. History
  13. ~~~~~~~
  14. Initially, Godot was designed to support multiple scripting languages
  15. (this ability still exists today). However, only GDScript is in use
  16. right now. There is a little history behind this.
  17. In the early days, the engine used the `Lua <http://www.lua.org>`__
  18. scripting language. Lua is fast, but creating bindings to an object
  19. oriented system (by using fallbacks) was complex and slow and took an
  20. enormous amount of code. After some experiments with
  21. `Python <http://www.python.org>`__, it also proved difficult to embed.
  22. The last third party scripting language that was used for shipped games
  23. was `Squirrel <http://squirrel-lang.org>`__, but it was dropped as well.
  24. At that point, it became evident that a custom scripting language could
  25. more optimally make use of Godot's particular architecture:
  26. - Godot embeds scripts in nodes. Most languages are not designed with
  27. this in mind.
  28. - Godot uses several built-in data types for 2D and 3D math. Script
  29. languages do not provide this, and binding them is inefficient.
  30. - Godot uses threads heavily for lifting and initializing data from the
  31. net or disk. Script interpreters for common languages are not
  32. friendly to this.
  33. - Godot already has a memory management model for resources, most
  34. script languages provide their own, which results in duplicate
  35. effort and bugs.
  36. - Binding code is always messy and results in several failure points,
  37. unexpected bugs and generally low maintainability.
  38. The result of these considerations is *GDScript*. The language and
  39. interpreter for GDScript ended up being smaller than the binding code itself
  40. for Lua and Squirrel, while having equal functionality. With time, having a
  41. built-in language has proven to be a huge advantage.
  42. Example of GDScript
  43. ~~~~~~~~~~~~~~~~~~~
  44. Some people can learn better by just taking a look at the syntax, so
  45. here's a simple example of how GDScript looks.
  46. ::
  47. # a file is a class!
  48. # inheritance
  49. extends BaseClass
  50. # member variables
  51. var a = 5
  52. var s = "Hello"
  53. var arr = [1, 2, 3]
  54. var dict = {"key":"value", 2:3}
  55. # constants
  56. const answer = 42
  57. const thename = "Charly"
  58. # enums
  59. enum {UNIT_NEUTRAL, UNIT_ENEMY, UNIT_ALLY}
  60. enum Named {THING_1, THING_2, ANOTHER_THING = -1}
  61. # built-in vector types
  62. var v2 = Vector2(1, 2)
  63. var v3 = Vector3(1, 2, 3)
  64. # function
  65. func some_function(param1, param2):
  66. var local_var = 5
  67. if param1 < local_var:
  68. print(param1)
  69. elif param2 > 5:
  70. print(param2)
  71. else:
  72. print("fail!")
  73. for i in range(20):
  74. print(i)
  75. while(param2 != 0):
  76. param2 -= 1
  77. var local_var2 = param1+3
  78. return local_var2
  79. # inner class
  80. class Something:
  81. var a = 10
  82. # constructor
  83. func _init():
  84. print("constructed!")
  85. var lv = Something.new()
  86. print(lv.a)
  87. If you have previous experience with statically typed languages such as
  88. C, C++, or C# but never used a dynamically typed one before, it is advised you
  89. read this tutorial: :ref:`doc_gdscript_more_efficiently`.
  90. Language
  91. --------
  92. In the following, an overview is given to GDScript. Details, such as which
  93. methods are available to arrays or other objects, should be looked up in
  94. the linked class descriptions.
  95. Identifiers
  96. ~~~~~~~~~~~
  97. Any string that restricts itself to alphabetic characters (``a`` to
  98. ``z`` and ``A`` to ``Z``), digits (``0`` to ``9``) and ``_`` qualifies
  99. as an identifier. Additionally, identifiers must not begin with a digit.
  100. Identifiers are case-sensitive (``foo`` is different from ``FOO``).
  101. Keywords
  102. ~~~~~~~~
  103. The following is the list of keywords supported by the language. Since
  104. keywords are reserved words (tokens), they can't be used as identifiers.
  105. +------------+---------------------------------------------------------------------------------------------------------------+
  106. | Keyword | Description |
  107. +============+===============================================================================================================+
  108. | if | See `if/else/elif`_. |
  109. +------------+---------------------------------------------------------------------------------------------------------------+
  110. | elif | See `if/else/elif`_. |
  111. +------------+---------------------------------------------------------------------------------------------------------------+
  112. | else | See `if/else/elif`_. |
  113. +------------+---------------------------------------------------------------------------------------------------------------+
  114. | for | See for_. |
  115. +------------+---------------------------------------------------------------------------------------------------------------+
  116. | do | Reserved for future implementation of do...while loops. |
  117. +------------+---------------------------------------------------------------------------------------------------------------+
  118. | while | See while_. |
  119. +------------+---------------------------------------------------------------------------------------------------------------+
  120. | switch | Reserved for future implementation. |
  121. +------------+---------------------------------------------------------------------------------------------------------------+
  122. | case | Reserved for future implementation. |
  123. +------------+---------------------------------------------------------------------------------------------------------------+
  124. | break | Exits the execution of the current ``for`` or ``while`` loop. |
  125. +------------+---------------------------------------------------------------------------------------------------------------+
  126. | continue | Immediately skips to the next iteration of the ``for`` or ``while`` loop. |
  127. +------------+---------------------------------------------------------------------------------------------------------------+
  128. | pass | Used where a statement is required syntactically but execution of code is undesired, e.g. in empty functions. |
  129. +------------+---------------------------------------------------------------------------------------------------------------+
  130. | return | Returns a value from a function. |
  131. +------------+---------------------------------------------------------------------------------------------------------------+
  132. | class | Defines a class. |
  133. +------------+---------------------------------------------------------------------------------------------------------------+
  134. | extends | Defines what class to extend with the current class. Also tests whether a variable extends a given class. |
  135. +------------+---------------------------------------------------------------------------------------------------------------+
  136. | tool | Executes the script in the editor. |
  137. +------------+---------------------------------------------------------------------------------------------------------------+
  138. | signal | Defines a signal. |
  139. +------------+---------------------------------------------------------------------------------------------------------------+
  140. | func | Defines a function. |
  141. +------------+---------------------------------------------------------------------------------------------------------------+
  142. | static | Defines a static function. Static member variables are not allowed. |
  143. +------------+---------------------------------------------------------------------------------------------------------------+
  144. | const | Defines a constant. |
  145. +------------+---------------------------------------------------------------------------------------------------------------+
  146. | enum | Defines an enum. |
  147. +------------+---------------------------------------------------------------------------------------------------------------+
  148. | var | Defines a variable. |
  149. +------------+---------------------------------------------------------------------------------------------------------------+
  150. | onready | Initializes a variable once the Node the script is attached to and its children are part of the scene tree. |
  151. +------------+---------------------------------------------------------------------------------------------------------------+
  152. | export | Saves a variable along with the resource it's attached to and makes it visible and modifiable in the editor. |
  153. +------------+---------------------------------------------------------------------------------------------------------------+
  154. | setget | Defines setter and getter functions for a variable. |
  155. +------------+---------------------------------------------------------------------------------------------------------------+
  156. | breakpoint | Editor helper for debugger breakpoints. |
  157. +------------+---------------------------------------------------------------------------------------------------------------+
  158. Operators
  159. ~~~~~~~~~
  160. The following is the list of supported operators and their precedence
  161. (TODO, change since this was made to reflect python operators)
  162. +---------------------------------------------------------------+-----------------------------------------+
  163. | **Operator** | **Description** |
  164. +---------------------------------------------------------------+-----------------------------------------+
  165. | ``x[index]`` | Subscription, Highest Priority |
  166. +---------------------------------------------------------------+-----------------------------------------+
  167. | ``x.attribute`` | Attribute Reference |
  168. +---------------------------------------------------------------+-----------------------------------------+
  169. | ``extends`` | Instance Type Checker |
  170. +---------------------------------------------------------------+-----------------------------------------+
  171. | ``~`` | Bitwise NOT |
  172. +---------------------------------------------------------------+-----------------------------------------+
  173. | ``-x`` | Negative |
  174. +---------------------------------------------------------------+-----------------------------------------+
  175. | ``*`` ``/`` ``%`` | Multiplication / Division / Remainder |
  176. | | |
  177. | | NOTE: The result of these operations |
  178. | | depends on the operands types. If both |
  179. | | are Integers, then the result will be |
  180. | | an Integer. That means 1/10 returns 0 |
  181. | | instead of 0.1. If at least one of the |
  182. | | operands is a float, then the result is |
  183. | | a float: float(1)/10 or 1.0/10 return |
  184. | | both 0.1. |
  185. +---------------------------------------------------------------+-----------------------------------------+
  186. | ``+`` ``-`` | Addition / Subtraction |
  187. +---------------------------------------------------------------+-----------------------------------------+
  188. | ``<<`` ``>>`` | Bit Shifting |
  189. +---------------------------------------------------------------+-----------------------------------------+
  190. | ``&`` | Bitwise AND |
  191. +---------------------------------------------------------------+-----------------------------------------+
  192. | ``^`` | Bitwise XOR |
  193. +---------------------------------------------------------------+-----------------------------------------+
  194. | ``|`` | Bitwise OR |
  195. +---------------------------------------------------------------+-----------------------------------------+
  196. | ``<`` ``>`` ``==`` ``!=`` ``>=`` ``<=`` | Comparisons |
  197. +---------------------------------------------------------------+-----------------------------------------+
  198. | ``in`` | Content Test |
  199. +---------------------------------------------------------------+-----------------------------------------+
  200. | ``!`` ``not`` | Boolean NOT |
  201. +---------------------------------------------------------------+-----------------------------------------+
  202. | ``and`` ``&&`` | Boolean AND |
  203. +---------------------------------------------------------------+-----------------------------------------+
  204. | ``or`` ``||`` | Boolean OR |
  205. +---------------------------------------------------------------+-----------------------------------------+
  206. | ``if x else`` | Ternary if/else |
  207. +---------------------------------------------------------------+-----------------------------------------+
  208. | ``=`` ``+=`` ``-=`` ``*=`` ``/=`` ``%=`` ``&=`` ``|=`` | Assignment, Lowest Priority |
  209. +---------------------------------------------------------------+-----------------------------------------+
  210. Literals
  211. ~~~~~~~~
  212. +--------------------------+--------------------------------+
  213. | **Literal** | **Type** |
  214. +--------------------------+--------------------------------+
  215. | ``45`` | Base 10 integer |
  216. +--------------------------+--------------------------------+
  217. | ``0x8F51`` | Base 16 (hex) integer |
  218. +--------------------------+--------------------------------+
  219. | ``3.14``, ``58.1e-10`` | Floating point number (real) |
  220. +--------------------------+--------------------------------+
  221. | ``"Hello"``, ``"Hi"`` | Strings |
  222. +--------------------------+--------------------------------+
  223. | ``"""Hello, Dude"""`` | Multiline string |
  224. +--------------------------+--------------------------------+
  225. | ``@"Node/Label"`` | NodePath or StringName |
  226. +--------------------------+--------------------------------+
  227. Comments
  228. ~~~~~~~~
  229. Anything from a ``#`` to the end of the line is ignored and is
  230. considered a comment.
  231. ::
  232. # This is a comment
  233. .. Uncomment me if/when https://github.com/godotengine/godot/issues/1320 gets fixed
  234. Multi-line comments can be created using """ (three quotes in a row) at
  235. the beginning and end of a block of text.
  236. ::
  237. """ Everything on these
  238. lines is considered
  239. a comment """
  240. Built-in types
  241. --------------
  242. Basic built-in types
  243. ~~~~~~~~~~~~~~~~~~~~
  244. A variable in GDScript can be assigned to several built-in types.
  245. null
  246. ^^^^
  247. ``null`` is an empty data type that contains no information and can not
  248. be assigned any other value.
  249. bool
  250. ^^^^
  251. The Boolean data type can only contain ``true`` or ``false``.
  252. int
  253. ^^^
  254. The integer data type can only contain integer numbers, (both negative
  255. and positive).
  256. float
  257. ^^^^^
  258. Used to contain a floating point value (real numbers).
  259. :ref:`String <class_String>`
  260. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  261. A sequence of characters in `Unicode format <https://en.wikipedia.org/wiki/Unicode>`_. Strings can contain the
  262. `standard C escape sequences <https://en.wikipedia.org/wiki/Escape_sequences_in_C>`_.
  263. GDScript supports :ref:`format strings aka printf functionality
  264. <doc_gdscript_printf>`.
  265. Vector built-in types
  266. ~~~~~~~~~~~~~~~~~~~~~
  267. :ref:`Vector2 <class_Vector2>`
  268. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  269. 2D vector type containing ``x`` and ``y`` fields. Can alternatively
  270. access fields as ``width`` and ``height`` for readability. Can also be
  271. accessed as array.
  272. :ref:`Rect2 <class_Rect2>`
  273. ^^^^^^^^^^^^^^^^^^^^^^^^^^
  274. 2D Rectangle type containing two vectors fields: ``pos`` and ``size``.
  275. Alternatively contains an ``end`` field which is ``pos+size``.
  276. :ref:`Vector3 <class_Vector3>`
  277. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  278. 3D vector type containing ``x``, ``y`` and ``z`` fields. This can also
  279. be accessed as an array.
  280. :ref:`Matrix32 <class_Matrix32>`
  281. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  282. 3x2 matrix used for 2D transforms.
  283. :ref:`Plane <class_Plane>`
  284. ^^^^^^^^^^^^^^^^^^^^^^^^^^
  285. 3D Plane type in normalized form that contains a ``normal`` vector field
  286. and a ``d`` scalar distance.
  287. :ref:`Quat <class_Quat>`
  288. ^^^^^^^^^^^^^^^^^^^^^^^^
  289. Quaternion is a datatype used for representing a 3D rotation. It's
  290. useful for interpolating rotations.
  291. :ref:`AABB <class_AABB>`
  292. ^^^^^^^^^^^^^^^^^^^^^^^^
  293. Axis Aligned bounding box (or 3D box) contains 2 vectors fields: ``pos``
  294. and ``size``. Alternatively contains an ``end`` field which is
  295. ``pos+size``. As an alias of this type, ``Rect3`` can be used
  296. interchangeably.
  297. :ref:`Matrix3 <class_Matrix3>`
  298. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  299. 3x3 matrix used for 3D rotation and scale. It contains 3 vector fields
  300. (``x``, ``y`` and ``z``) and can also be accessed as an array of 3D
  301. vectors.
  302. :ref:`Transform <class_Transform>`
  303. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  304. 3D Transform contains a Matrix3 field ``basis`` and a Vector3 field
  305. ``origin``.
  306. Engine built-in types
  307. ~~~~~~~~~~~~~~~~~~~~~
  308. :ref:`Color <class_Color>`
  309. ^^^^^^^^^^^^^^^^^^^^^^^^^^
  310. Color data type contains ``r``, ``g``, ``b``, and ``a`` fields. It can
  311. also be accessed as ``h``, ``s``, and ``v`` for hue/saturation/value.
  312. :ref:`Image <class_Image>`
  313. ^^^^^^^^^^^^^^^^^^^^^^^^^^
  314. Contains a custom format 2D image and allows direct access to the
  315. pixels.
  316. :ref:`NodePath <class_NodePath>`
  317. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  318. Compiled path to a node used mainly in the scene system. It can be
  319. easily assigned to, and from, a String.
  320. :ref:`RID <class_RID>`
  321. ^^^^^^^^^^^^^^^^^^^^^^
  322. Resource ID (RID). Servers use generic RIDs to reference opaque data.
  323. :ref:`Object <class_Object>`
  324. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  325. Base class for anything that is not a built-in type.
  326. :ref:`InputEvent <class_InputEvent>`
  327. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  328. Events from input devices are contained in very compact form in
  329. InputEvent objects. Due to the fact that they can be received in high
  330. amounts from frame to frame they are optimized as their own data type.
  331. Container built-in types
  332. ~~~~~~~~~~~~~~~~~~~~~~~~
  333. :ref:`Array <class_Array>`
  334. ^^^^^^^^^^^^^^^^^^^^^^^^^^
  335. Generic sequence of arbitrary object types, including other arrays or dictionaries (see below).
  336. The array can resize dynamically. Arrays are indexed starting from index ``0``.
  337. Starting with Godot 2.1, indices may be negative like in Python, to count from the end.
  338. ::
  339. var arr=[]
  340. arr=[1, 2, 3]
  341. var b = arr[1] # this is 2
  342. var c = arr[arr.size()-1] # this is 3
  343. var d = arr[-1] # same as the previous line, but shorter
  344. arr[0] = "Hi!" # replacing value 1 with "Hi"
  345. arr.append(4) # array is now ["Hi", 2, 3, 4]
  346. GDScript arrays are allocated linearly in memory for speed. Very
  347. large arrays (more than tens of thousands of elements) may however cause
  348. memory fragmentation. If this is a concern special types of
  349. arrays are available. These only accept a single data type. They avoid memory
  350. fragmentation and also use less memory but are atomic and tend to run slower than generic
  351. arrays. They are therefore only recommended to use for very large data sets:
  352. - :ref:`ByteArray <class_ByteArray>`: An array of bytes (integers from 0 to 255).
  353. - :ref:`IntArray <class_IntArray>`: An array of integers.
  354. - :ref:`FloatArray <class_FloatArray>`: An array of floats.
  355. - :ref:`StringArray <class_StringArray>`: An array of strings.
  356. - :ref:`Vector2Array <class_Vector2Array>`: An array of :ref:`Vector2 <class_Vector2>` objects.
  357. - :ref:`Vector3Array <class_Vector3Array>`: An array of :ref:`Vector3 <class_Vector3>` objects.
  358. - :ref:`ColorArray <class_ColorArray>`: An array of :ref:`Color <class_Color>` objects.
  359. :ref:`Dictionary <class_Dictionary>`
  360. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  361. Associative container which contains values referenced by unique keys.
  362. ::
  363. var d={4:5, "a key":"a value", 28:[1,2,3]}
  364. d["Hi!"] = 0
  365. var d = {
  366. 22 : "Value",
  367. "somekey" : 2,
  368. "otherkey" : [2,3,4],
  369. "morekey" : "Hello"
  370. }
  371. Lua-style table syntax is also supported. Lua-style uses ``=`` instead of ``:``
  372. and doesn't use quotes to mark string keys (making for slightly less to write).
  373. Note however that like any GDScript identifier, keys written in this form cannot
  374. start with a digit.
  375. ::
  376. var d = {
  377. test22 = "Value",
  378. somekey = 2,
  379. otherkey = [2,3,4],
  380. morekey = "Hello"
  381. }
  382. To add a key to an existing dictionary, access it like an existing key and
  383. assign to it::
  384. var d = {} # create an empty Dictionary
  385. d.Waiting = 14 # add String "Waiting" as a key and assign the value 14 to it
  386. d[4] = "hello" # add integer `4` as a key and assign the String "hello" as its value
  387. d["Godot"] = 3.01 # add String "Godot" as a key and assign the value 3.01 to it
  388. Data
  389. ----
  390. Variables
  391. ~~~~~~~~~
  392. Variables can exist as class members or local to functions. They are
  393. created with the ``var`` keyword and may, optionally, be assigned a
  394. value upon initialization.
  395. ::
  396. var a # data type is null by default
  397. var b = 5
  398. var c = 3.8
  399. var d = b + c # variables are always initialized in order
  400. Constants
  401. ~~~~~~~~~
  402. Constants are similar to variables, but must be constants or constant
  403. expressions and must be assigned on initialization.
  404. ::
  405. const a = 5
  406. const b = Vector2(20, 20)
  407. const c = 10 + 20 # constant expression
  408. const d = Vector2(20, 30).x # constant expression: 20
  409. const e = [1, 2, 3, 4][0] # constant expression: 1
  410. const f = sin(20) # sin() can be used in constant expressions
  411. const g = x + 20 # invalid; this is not a constant expression!
  412. Enums
  413. ^^^^^
  414. Enums are basically a shorthand for constants, and are pretty useful if you
  415. want to assign consecutive integers to some constant.
  416. If you pass a name to the enum, it would also put all the values inside a
  417. constant dictionary of that name.
  418. ::
  419. enum {TILE_BRICK, TILE_FLOOR, TILE_SPIKE, TILE_TELEPORT}
  420. # Is the same as:
  421. const TILE_BRICK = 0
  422. const TILE_FLOOR = 1
  423. const TILE_SPIKE = 2
  424. const TILE_TELEPORT = 3
  425. enum State {STATE_IDLE, STATE_JUMP = 5, STATE_SHOOT}
  426. # Is the same as:
  427. const STATE_IDLE = 0
  428. const STATE_JUMP = 5
  429. const STATE_SHOOT = 6
  430. const State = {STATE_IDLE = 0, STATE_JUMP = 5, STATE_SHOOT = 6}
  431. Functions
  432. ~~~~~~~~~
  433. Functions always belong to a `class <Classes_>`_. The scope priority for
  434. variable look-up is: local → class member → global. The ``self`` variable is
  435. always available and is provided as an option for accessing class members, but
  436. is not always required (and should *not* be sent as the function's first
  437. argument, unlike Python).
  438. ::
  439. func myfunction(a, b):
  440. print(a)
  441. print(b)
  442. return a + b # return is optional; without it null is returned
  443. A function can ``return`` at any point. The default return value is ``null``.
  444. Referencing Functions
  445. ^^^^^^^^^^^^^^^^^^^^^
  446. To call a function in a *base class* (i.e. one ``extend``-ed in your current class),
  447. prepend ``.`` to the function name:
  448. ::
  449. .basefunc(args)
  450. Contrary to Python, functions are *not* first class objects in GDScript. This
  451. means they cannot be stored in variables, passed as an argument to another
  452. function or be returned from other functions. This is for performance reasons.
  453. To reference a function by name at runtime, (e.g. to store it in a variable, or
  454. pass it to another function as an argument) one must use the ``call`` or
  455. ``funcref`` helpers::
  456. # Call a function by name in one step
  457. mynode.call("myfunction", args)
  458. # Store a function reference
  459. var myfunc = funcref(mynode, "myfunction")
  460. # Call stored function reference
  461. myfunc.call_func(args)
  462. Remember that default functions like ``_init``, and most
  463. notifications such as ``_enter_tree``, ``_exit_tree``, ``_process``,
  464. ``_fixed_process``, etc. are called in all base classes automatically.
  465. So there is only a need to call the function explicitly when overloading
  466. them in some way.
  467. Static functions
  468. ^^^^^^^^^^^^^^^^
  469. A function can be declared static. When a function is static it has no
  470. access to the instance member variables or ``self``. This is mainly
  471. useful to make libraries of helper functions:
  472. ::
  473. static func sum2(a, b):
  474. return a + b
  475. Statements and control flow
  476. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  477. Statements are standard and can be assignments, function calls, control
  478. flow structures, etc (see below). ``;`` as a statement separator is
  479. entirely optional.
  480. if/else/elif
  481. ^^^^^^^^^^^^
  482. Simple conditions are created by using the ``if``/``else``/``elif`` syntax.
  483. Parenthesis around conditions are allowed, but not required. Given the
  484. nature of the tab-based indentation, ``elif`` can be used instead of
  485. ``else``/``if`` to maintain a level of indentation.
  486. ::
  487. if [expression]:
  488. statement(s)
  489. elif [expression]:
  490. statement(s)
  491. else:
  492. statement(s)
  493. Short statements can be written on the same line as the condition::
  494. if (1 + 1 == 2): return 2 + 2
  495. else:
  496. var x = 3 + 3
  497. return x
  498. Sometimes you might want to assign a different initial value based on a
  499. boolean expression. In this case ternary-if expressions come in handy::
  500. var x = [true-value] if [expression] else [false-value]
  501. y += 3 if y < 10 else -1
  502. while
  503. ^^^^^
  504. Simple loops are created by using ``while`` syntax. Loops can be broken
  505. using ``break`` or continued using ``continue``:
  506. ::
  507. while [expression]:
  508. statement(s)
  509. for
  510. ^^^
  511. To iterate through a range, such as an array or table, a *for* loop is
  512. used. When iterating over an array, the current array element is stored in
  513. the loop variable. When iterating over a dictionary, the *index* is stored
  514. in the loop variable.
  515. ::
  516. for x in [5, 7, 11]:
  517. statement # loop iterates 3 times with x as 5, then 7 and finally 11
  518. var dict = {"a":0, "b":1, "c":2}
  519. for i in dict:
  520. print(dict[i]) # loop provides the keys in an arbitrary order; may print 0, 1, 2, or 2, 0, 1, etc...
  521. for i in range(3):
  522. statement # similar to [0, 1, 2] but does not allocate an array
  523. for i in range(1,3):
  524. statement # similar to [1, 2] but does not allocate an array
  525. for i in range(2,8,2):
  526. statement # similar to [2, 4, 6] but does not allocate an array
  527. for c in "Hello":
  528. print(c) # iterate through all characters in a String, print every letter on new line
  529. Classes
  530. ~~~~~~~
  531. By default, the body of a script file is an unnamed class and it can
  532. only be referenced externally as a resource or file. Class syntax is
  533. meant to be very compact and can only contain member variables or
  534. functions. Static functions are allowed, but not static members (this is
  535. in the spirit of thread safety, since scripts can be initialized in
  536. separate threads without the user knowing). In the same way, member
  537. variables (including arrays and dictionaries) are initialized every time
  538. an instance is created.
  539. Below is an example of a class file.
  540. ::
  541. # saved as a file named myclass.gd
  542. var a = 5
  543. func print_value_of_a():
  544. print(a)
  545. Inheritance
  546. ^^^^^^^^^^^
  547. A class (stored as a file) can inherit from
  548. - A global class
  549. - Another class file
  550. - An inner class inside another class file.
  551. Multiple inheritance is not allowed.
  552. Inheritance uses the ``extends`` keyword:
  553. ::
  554. # Inherit/extend a globally available class
  555. extends SomeClass
  556. # Inherit/extend a named class file
  557. extends "somefile.gd"
  558. # Inherit/extend an inner class in another file
  559. extends "somefile.gd".SomeInnerClass
  560. To check if a given instance inherits from a given class
  561. the ``extends`` keyword can be used as an operator instead:
  562. ::
  563. # Cache the enemy class
  564. const enemy_class = preload("enemy.gd")
  565. # [...]
  566. # use 'extends' to check inheritance
  567. if (entity extends enemy_class):
  568. entity.apply_damage()
  569. Class Constructor
  570. ^^^^^^^^^^^^^^^^^
  571. The class constructor, called on class instantiation, is named ``_init``.
  572. As mentioned earlier, the constructors of parent classes are called automatically when
  573. inheriting a class. So there is usually no need to call ``._init()`` explicitly.
  574. If a parent constructor takes arguments, they are passed like this:
  575. ::
  576. func _init(args).(parent_args):
  577. pass
  578. Inner classes
  579. ^^^^^^^^^^^^^
  580. A class file can contain inner classes. Inner classes are defined using the
  581. ``class`` keyword. They are instanced using the ``ClassName.new()``
  582. function.
  583. ::
  584. # inside a class file
  585. # An inner class in this class file
  586. class SomeInnerClass:
  587. var a = 5
  588. func print_value_of_a():
  589. print(a)
  590. # This is the constructor of the class file's main class
  591. func _init():
  592. var c = SomeInnerClass.new()
  593. c.print_value_of_a()
  594. Classes as resources
  595. ^^^^^^^^^^^^^^^^^^^^
  596. Classes stored as files are treated as :ref:`resources <class_GDScript>`. They
  597. must be loaded from disk to access them in other classes. This is done using
  598. either the ``load`` or ``preload`` functions (see below). Instancing of a loaded
  599. class resource is done by calling the ``new`` function on the class object::
  600. # Load the class resource when calling load()
  601. var MyClass = load("myclass.gd")
  602. # Preload the class only once at compile time
  603. var MyClass2 = preload("myclass.gd")
  604. func _init():
  605. var a = MyClass.new()
  606. a.somefunction()
  607. Exports
  608. ~~~~~~~
  609. Class members can be exported. This means their value gets saved along
  610. with the resource (e.g. the :ref:`scene <class_PackedScene>`) they're attached
  611. to. They will also be available for editing in the property editor. Exporting
  612. is done by using the ``export`` keyword::
  613. extends Button
  614. export var number = 5 # value will be saved and visible in the property editor
  615. An exported variable must be initialized to a constant expression or have an
  616. export hint in the form of an argument to the export keyword (see below).
  617. One of the fundamental benefits of exporting member variables is to have
  618. them visible and editable in the editor. This way artists and game designers
  619. can modify values that later influence how the program runs. For this, a
  620. special export syntax is provided.
  621. ::
  622. # If the exported value assigns a constant or constant expression,
  623. # the type will be inferred and used in the editor
  624. export var number = 5
  625. # Export can take a basic data type as an argument which will be
  626. # used in the editor
  627. export(int) var number
  628. # Export can also take a resource type to use as a hint
  629. export(Texture) var character_face
  630. export(PackedScene) var scene_file
  631. # Integers and strings hint enumerated values
  632. # Editor will enumerate as 0, 1 and 2
  633. export(int, "Warrior", "Magician", "Thief") var character_class
  634. # Editor will enumerate with string names
  635. export(String, "Rebecca", "Mary", "Leah") var character_name
  636. # Strings as paths
  637. # String is a path to a file
  638. export(String, FILE) var f
  639. # String is a path to a directory
  640. export(String, DIR) var f
  641. # String is a path to a file, custom filter provided as hint
  642. export(String, FILE, "*.txt") var f
  643. # Using paths in the global filesystem is also possible,
  644. # but only in tool scripts (see further below)
  645. # String is a path to a PNG file in the global filesystem
  646. export(String, FILE, GLOBAL, "*.png") var tool_image
  647. # String is a path to a directory in the global filesystem
  648. export(String, DIR, GLOBAL) var tool_dir
  649. # The MULTILINE setting tells the editor to show a large input
  650. # field for editing over multiple lines
  651. export(String, MULTILINE) var text
  652. # Limiting editor input ranges
  653. # Allow integer values from 0 to 20
  654. export(int, 20) var i
  655. # Allow integer values from -10 to 20
  656. export(int, -10, 20) var j
  657. # Allow floats from -10 to 20, with a step of 0.2
  658. export(float, -10, 20, 0.2) var k
  659. # Allow values y = exp(x) where y varies betwee 100 and 1000
  660. # while snapping to steps of 20. The editor will present a
  661. # slider for easily editing the value.
  662. export(float, EXP, 100, 1000, 20) var l
  663. # Floats with easing hint
  664. # Display a visual representation of the ease() function
  665. # when editing
  666. export(float, EASE) var transition_speed
  667. # Colors
  668. # Color given as Red-Green-Blue value
  669. export(Color, RGB) var col # Color is RGB
  670. # Color given as Red-Green-Blue-Alpha value
  671. export(Color, RGBA) var col # Color is RGBA
  672. # another node in the scene can be exported too
  673. export(NodePath) var node
  674. It must be noted that even if the script is not being run while at the
  675. editor, the exported properties are still editable (see below for
  676. "tool").
  677. Exporting bit flags
  678. ^^^^^^^^^^^^^^^^^^^
  679. Integers used as bit flags can store multiple ``true``/``false`` (boolean)
  680. values in one property. By using the export hint ``int, FLAGS``, they
  681. can be set from the editor:
  682. ::
  683. # Individually edit the bits of an integer
  684. export(int, FLAGS) var spell_elements = ELEMENT_WIND | ELEMENT_WATER
  685. Restricting the flags to a certain number of named flags is also
  686. possible. The syntax is very similar to the enumeration syntax:
  687. ::
  688. # Set any of the given flags from the editor
  689. export(int, FLAGS, "Fire", "Water", "Earth", "Wind") var spell_elements = 0
  690. In this example, ``Fire`` has value 1, ``Water`` has value 2, ``Earth``
  691. has value 4 and ``Wind`` corresponds to value 8. Usually, constants
  692. should be defined accordingly (e.g. ``const ELEMENT_WIND = 8`` and so
  693. on).
  694. Using bit flags requires some understanding of bitwise operations. If in
  695. doubt, boolean variables should be exported instead.
  696. Exporting arrays
  697. ^^^^^^^^^^^^^^^^
  698. Exporting arrays works but with an important caveat: While regular
  699. arrays are created local to every class instance, exported arrays are *shared*
  700. between all instances. This means that editing them in one instance will
  701. cause them to change in all other instances. Exported arrays can have
  702. initializers, but they must be constant expressions.
  703. ::
  704. # Exported array, shared between all instances.
  705. # Default value must be a constant expression.
  706. export var a=[1,2,3]
  707. # Typed arrays also work, only initialized empty:
  708. export var vector3s = Vector3Array()
  709. export var strings = StringArray()
  710. # Regular array, created local for every instance.
  711. # Default value can include run-time values, but can't
  712. # be exported.
  713. var b = [a,2,3]
  714. Setters/getters
  715. ~~~~~~~~~~~~~~~
  716. It is often useful to know when a class' member variable changes for
  717. whatever reason. It may also be desired to encapsulate its access in some way.
  718. For this, GDScript provides a *setter/getter* syntax using the ``setget`` keyword.
  719. It is used directly after a variable definition:
  720. ::
  721. var variable = value setget setterfunc, getterfunc
  722. Whenever the value of ``variable`` is modified by an *external* source
  723. (i.e. not from local usage in the class), the *setter* function (``setterfunc`` above)
  724. will be called. This happens *before* the value is changed. The *setter* must decide what to do
  725. with the new value. Vice-versa, when ``variable`` is accessed, the *getter* function
  726. (``getterfunc`` above) must ``return`` the desired value. Below is an example:
  727. ::
  728. var myvar setget myvar_set,myvar_get
  729. func myvar_set(newvalue):
  730. myvar=newvalue
  731. func myvar_get():
  732. return myvar # getter must return a value
  733. Either of the *setter* or *getter* functions can be omitted:
  734. ::
  735. # Only a setter
  736. var myvar = 5 setget myvar_set
  737. # Only a getter (note the comma)
  738. var myvar = 5 setget ,myvar_get
  739. Get/Setters are especially useful when exporting variables to editor in tool
  740. scripts or plugins, for validating input.
  741. As said *local* access will *not* trigger the setter and getter. Here is an
  742. illustration of this:
  743. ::
  744. func _init():
  745. # Does not trigger setter/getter
  746. myinteger=5
  747. print(myinteger)
  748. # Does trigger setter/getter
  749. self.myinteger=5
  750. print(self.myinteger)
  751. Tool mode
  752. ~~~~~~~~~
  753. Scripts, by default, don't run inside the editor and only the exported
  754. properties can be changed. In some cases it is desired that they do run
  755. inside the editor (as long as they don't execute game code or manually
  756. avoid doing so). For this, the ``tool`` keyword exists and must be
  757. placed at the top of the file:
  758. ::
  759. tool
  760. extends Button
  761. func _ready():
  762. print("Hello")
  763. Memory management
  764. ~~~~~~~~~~~~~~~~~
  765. If a class inherits from :ref:`class_Reference`, then instances will be
  766. freed when no longer in use. No garbage collector exists, just simple
  767. reference counting. By default, all classes that don't define
  768. inheritance extend **Reference**. If this is not desired, then a class
  769. must inherit :ref:`class_Object` manually and must call instance.free(). To
  770. avoid reference cycles that can't be freed, a ``weakref`` function is
  771. provided for creating weak references.
  772. Signals
  773. ~~~~~~~
  774. It is often desired to send a notification that something happened in an
  775. instance. GDScript supports creation of built-in Godot signals.
  776. Declaring a signal in GDScript is easy using the `signal` keyword.
  777. ::
  778. # No arguments
  779. signal your_signal_name
  780. # With arguments
  781. signal your_signal_name_with_args(a,b)
  782. These signals, just like regular signals, can be connected in the editor
  783. or from code. Just take the instance of a class where the signal was
  784. declared and connect it to the method of another instance:
  785. ::
  786. func _callback_no_args():
  787. print("Got callback!")
  788. func _callback_args(a,b):
  789. print("Got callback with args! a: ",a," and b: ",b)
  790. func _at_some_func():
  791. instance.connect("your_signal_name",self,"_callback_no_args")
  792. instance.connect("your_signal_name_with_args",self,"_callback_args")
  793. It is also possible to bind arguments to a signal that lacks them with
  794. your custom values:
  795. ::
  796. func _at_some_func():
  797. instance.connect("your_signal_name",self,"_callback_args",[22,"hello"])
  798. This is very useful when a signal from many objects is connected to a
  799. single callback and the sender must be identified:
  800. ::
  801. func _button_pressed(which):
  802. print("Button was pressed: ",which.get_name())
  803. func _ready():
  804. for b in get_node("buttons").get_children():
  805. b.connect("pressed",self,"_button_pressed",[b])
  806. Finally, emitting a custom signal is done by using the
  807. Object.emit_signal method:
  808. ::
  809. func _at_some_func():
  810. emit_signal("your_signal_name")
  811. emit_signal("your_signal_name_with_args",55,128)
  812. someinstance.emit_signal("somesignal")
  813. Coroutines
  814. ~~~~~~~~~~
  815. GDScript offers support for `coroutines <https://en.wikipedia.org/wiki/Coroutine>`_
  816. via the ``yield`` built-in function. Calling ``yield()`` will
  817. immediately return from the current function, with the current frozen
  818. state of the same function as the return value. Calling ``resume`` on
  819. this resulting object will continue execution and return whatever the
  820. function returns. Once resumed the state object becomes invalid. Here is
  821. an example:
  822. ::
  823. func myfunc():
  824. print("hello")
  825. yield()
  826. print("world")
  827. func _ready():
  828. var y = myfunc()
  829. # Function state saved in 'y'
  830. print("my dear")
  831. y.resume()
  832. # 'y' resumed and is now an invalid state
  833. Will print:
  834. ::
  835. hello
  836. my dear
  837. world
  838. It is also possible to pass values between yield() and resume(), for
  839. example:
  840. ::
  841. func myfunc():
  842. print("hello")
  843. print( yield() )
  844. return "cheers!"
  845. func _ready():
  846. var y = myfunc()
  847. # Function state saved in 'y'
  848. print( y.resume("world") )
  849. # 'y' resumed and is now an invalid state
  850. Will print:
  851. ::
  852. hello
  853. world
  854. cheers!
  855. Coroutines & signals
  856. ^^^^^^^^^^^^^^^^^^^^
  857. The real strength of using ``yield`` is when combined with signals.
  858. ``yield`` can accept two parameters, an object and a signal. When the
  859. signal is received, execution will recommence. Here are some examples:
  860. ::
  861. # Resume execution the next frame
  862. yield( get_tree(), "idle_frame" )
  863. # Resume execution when animation is done playing:
  864. yield( get_node("AnimationPlayer"), "finished" )
  865. Onready keyword
  866. ~~~~~~~~~~~~~~~
  867. When using nodes, it's very common to desire to keep references to parts
  868. of the scene in a variable. As scenes are only warranted to be
  869. configured when entering the active scene tree, the sub-nodes can only
  870. be obtained when a call to Node._ready() is made.
  871. ::
  872. var mylabel
  873. func _ready():
  874. mylabel = get_node("MyLabel")
  875. This can get a little cumbersome, specially when nodes and external
  876. references pile up. For this, GDScript has the ``onready`` keyword, that
  877. defers initialization of a member variable until _ready is called. It
  878. can replace the above code with a single line:
  879. ::
  880. onready var mylabel = get_node("MyLabel")