command_line_tutorial.rst 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411
  1. :article_outdated: True
  2. .. _doc_command_line_tutorial:
  3. Command line tutorial
  4. =====================
  5. .. highlight:: shell
  6. Some developers like using the command line extensively. Godot is
  7. designed to be friendly to them, so here are the steps for working
  8. entirely from the command line. Given the engine relies on almost no
  9. external libraries, initialization times are pretty fast, making it
  10. suitable for this workflow.
  11. .. note::
  12. On Windows and Linux, you can run a Godot binary in a terminal by specifying
  13. its relative or absolute path.
  14. On macOS, the process is different due to Godot being contained within an
  15. ``.app`` bundle (which is a *folder*, not a file). To run a Godot binary
  16. from a terminal on macOS, you have to ``cd`` to the folder where the Godot
  17. application bundle is located, then run ``Godot.app/Contents/MacOS/Godot``
  18. followed by any command line arguments. If you've renamed the application
  19. bundle from ``Godot`` to another name, make sure to edit this command line
  20. accordingly.
  21. Command line reference
  22. ----------------------
  23. **General options**
  24. +----------------------------+----------------------------------------------------------------------+
  25. | Command | Description |
  26. +----------------------------+----------------------------------------------------------------------+
  27. | ``-h``, ``--help`` | Display the list of command line options. |
  28. +----------------------------+----------------------------------------------------------------------+
  29. | ``--version`` | Display the version string. |
  30. +----------------------------+----------------------------------------------------------------------+
  31. | ``-v``, ``--verbose`` | Use verbose stdout mode. |
  32. +----------------------------+----------------------------------------------------------------------+
  33. | ``-q, --quiet`` | Quiet mode, silences stdout messages. Errors are still displayed. |
  34. +----------------------------+----------------------------------------------------------------------+
  35. **Run options**
  36. +------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
  37. | Command | Description |
  38. +------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
  39. | ``--`` | Separator for user-provided arguments. Following arguments are not used by the engine, but can be read from ``OS.get_cmdline_user_args()``. |
  40. +------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
  41. | ``-e``, ``--editor`` | Start the editor instead of running the scene (:ref:`target=editor <doc_introduction_to_the_buildsystem_target>` must be used). |
  42. +------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
  43. | ``-p``, ``--project-manager`` | Start the Project Manager, even if a project is auto-detected (:ref:`target=editor <doc_introduction_to_the_buildsystem_target>` must be used). |
  44. +------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
  45. | ``--debug-server <uri>`` | Start the editor debug server (``<protocol>://<host/IP>[:<port>]``, e.g. ``tcp://127.0.0.1:6007``) |
  46. +------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
  47. | ``--quit`` | Quit after the first iteration. |
  48. +------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
  49. | ``-l``, ``--language <locale>`` | Use a specific locale. ``<locale>`` follows the format ``language_Script_COUNTRY_VARIANT`` where language is a 2 or 3-letter language code in lower case |
  50. | | and the rest is optional. See :ref:`doc_locales` for more details. |
  51. +------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
  52. | ``--path <directory>`` | Path to a project (``<directory>`` must contain a 'project.godot' file). |
  53. +------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
  54. | ``-u``, ``--upwards`` | Scan folders upwards for 'project.godot' file. |
  55. +------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
  56. | ``--main-pack <file>`` | Path to a pack (.pck) file to load. |
  57. +------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
  58. | ``--render-thread <mode>`` | Render thread mode ('unsafe', 'safe', 'separate'). See :ref:`Thread Model <class_ProjectSettings_property_rendering/driver/threads/thread_model>` |
  59. | | for more details. |
  60. +------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
  61. | ``--remote-fs <address>`` | Remote filesystem (``<host/IP>[:<port>]`` address). |
  62. +------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
  63. | ``--remote-fs-password <password>`` | Password for remote filesystem. |
  64. +------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
  65. | ``--audio-driver <driver>`` | Audio driver. Use ``--help`` first to display the list of available drivers. |
  66. +------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
  67. | ``--display-driver <driver>`` | Display driver (and rendering driver). Use ``--help`` first to display the list of available drivers. |
  68. +------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
  69. | ``--rendering-method <renderer>`` | Renderer name. Requires driver support. |
  70. +------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
  71. | ``--rendering-driver <driver>`` | Rendering driver (depends on display driver). Use ``--help`` first to display the list of available drivers. |
  72. +------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
  73. | ``--gpu-index <device_index>`` | Use a specific GPU (run with ``--verbose`` to get available device list). |
  74. +------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
  75. | ``--text-driver <driver>`` | Text driver ('Fonts', 'BiDi', 'shaping') |
  76. +------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
  77. | ``--tablet-driver <driver>`` | Pen tablet input driver. |
  78. +------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
  79. | ``--headless`` | Enable headless mode (``--display-driver headless --audio-driver Dummy``). Useful for servers and with ``--script``. |
  80. +------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
  81. | ``--write-movie <file>`` | Run the engine in a way that a movie is written (by default .avi MJPEG). Fixed FPS is forced when enabled, but can be used to change movie FPS. |
  82. | | Disabling vsync can speed up movie writing but makes interaction more difficult. |
  83. +------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
  84. | ``--disable-vsync`` | Force disabling of vsync. Run the engine in a way that a movie is written (by default .avi MJPEG). |
  85. | | Fixed FPS is forced when enabled, but can be used to change movie FPS. |
  86. +------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
  87. **Display options**
  88. +------------------------------------+----------------------------------------------------------------------------+
  89. | Command | Description |
  90. +------------------------------------+----------------------------------------------------------------------------+
  91. | ``-f``, ``--fullscreen`` | Request fullscreen mode. |
  92. +------------------------------------+----------------------------------------------------------------------------+
  93. | ``-m``, ``--maximized`` | Request a maximized window. |
  94. +------------------------------------+----------------------------------------------------------------------------+
  95. | ``-w``, ``--windowed`` | Request windowed mode. |
  96. +------------------------------------+----------------------------------------------------------------------------+
  97. | ``-t``, ``--always-on-top`` | Request an always-on-top window. |
  98. +------------------------------------+----------------------------------------------------------------------------+
  99. | ``--resolution <W>x<H>`` | Request window resolution. |
  100. +------------------------------------+----------------------------------------------------------------------------+
  101. | ``--position <X>,<Y>`` | Request window position. |
  102. +------------------------------------+----------------------------------------------------------------------------+
  103. | ``--single-window`` | Use a single window (no separate subwindows). |
  104. +------------------------------------+----------------------------------------------------------------------------+
  105. | ``--xr-mode <mode>`` | Select XR mode (default/off/on). |
  106. +------------------------------------+----------------------------------------------------------------------------+
  107. **Debug options**
  108. .. note::
  109. Debug options are only available in the editor and debug export templates
  110. (they require ``debug`` or ``release_debug`` build targets, see
  111. :ref:`doc_introduction_to_the_buildsystem_target` for more details).
  112. +------------------------------+---------------------------------------------------------------------------------------------------------+
  113. | Command | Description |
  114. +------------------------------+---------------------------------------------------------------------------------------------------------+
  115. | ``-d``, ``--debug`` | Debug (local stdout debugger). |
  116. +------------------------------+---------------------------------------------------------------------------------------------------------+
  117. | ``-b``, ``--breakpoints`` | Breakpoint list as source::line comma-separated pairs, no spaces (use %20 instead). |
  118. +------------------------------+---------------------------------------------------------------------------------------------------------+
  119. | ``--profiling`` | Enable profiling in the script debugger. |
  120. +------------------------------+---------------------------------------------------------------------------------------------------------+
  121. | ``--gpu-profile`` | Show a GPU profile of the tasks that took the most time during frame rendering. |
  122. +------------------------------+---------------------------------------------------------------------------------------------------------+
  123. | ``--gpu-validation`` | Enable graphics API :ref:`validation layers <doc_vulkan_validation_layers>` for debugging. |
  124. +------------------------------+---------------------------------------------------------------------------------------------------------+
  125. | ``--gpu-abort`` | Abort on GPU errors (usually validation layer errors), may help see the problem if your system freezes. |
  126. +------------------------------+---------------------------------------------------------------------------------------------------------+
  127. | ``--remote-debug <uri>`` | Remote debug (``<protocol>://<host/IP>[:<port>]``, e.g. ``tcp://127.0.0.1:6007``). |
  128. +------------------------------+---------------------------------------------------------------------------------------------------------+
  129. | ``--debug-collisions`` | Show collision shapes when running the scene. |
  130. +------------------------------+---------------------------------------------------------------------------------------------------------+
  131. | ``--debug-paths`` | Show path lines when running the scene. |
  132. +------------------------------+---------------------------------------------------------------------------------------------------------+
  133. | ``--debug-navigation`` | Show navigation polygons when running the scene. |
  134. +------------------------------+---------------------------------------------------------------------------------------------------------+
  135. | ``--debug-stringnames`` | Print all StringName allocations to stdout when the engine quits. |
  136. +------------------------------+---------------------------------------------------------------------------------------------------------+
  137. | ``--frame-delay <ms>`` | Simulate high CPU load (delay each frame by <ms> milliseconds). |
  138. +------------------------------+---------------------------------------------------------------------------------------------------------+
  139. | ``--time-scale <scale>`` | Force time scale (higher values are faster, 1.0 is normal speed). |
  140. +------------------------------+---------------------------------------------------------------------------------------------------------+
  141. | ``--disable-render-loop`` | Disable render loop so rendering only occurs when called explicitly from script. |
  142. +------------------------------+---------------------------------------------------------------------------------------------------------+
  143. | ``--disable-crash-handler`` | Disable crash handler when supported by the platform code. |
  144. +------------------------------+---------------------------------------------------------------------------------------------------------+
  145. | ``--fixed-fps <fps>`` | Force a fixed number of frames per second. This setting disables real-time synchronization. |
  146. +------------------------------+---------------------------------------------------------------------------------------------------------+
  147. | ``--print-fps`` | Print the frames per second to the stdout. |
  148. +------------------------------+---------------------------------------------------------------------------------------------------------+
  149. **Standalone tools**
  150. +------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------+
  151. | Command | Description |
  152. +------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------+
  153. | ``-s``, ``--script <script>`` | Run a script. |
  154. +------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------+
  155. | ``--check-only`` | Only parse for errors and quit (use with ``--script``). |
  156. +------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------+
  157. | ``--export-release <preset> <path>`` | Export the project using the given preset and matching release template (:ref:`target=editor <doc_introduction_to_the_buildsystem_target>` must |
  158. | | be used). The preset name should match one defined in export_presets.cfg. ``<path>`` should be absolute or relative to the project directory, |
  159. | | and include the filename for the binary (e.g. 'builds/game.exe'). The target directory should exist. |
  160. +------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------+
  161. | ``--export-debug <preset> <path>`` | Like ``--export-release``, but use debug template (:ref:`target=editor <doc_introduction_to_the_buildsystem_target>` must be used). |
  162. +------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------+
  163. | ``--export-pack <preset> <path>`` | Like ``--export-release``, but only export the game pack for the given preset. The ``<path>`` extension determines whether it will be in PCK |
  164. | | or ZIP format (:ref:`target=editor <doc_introduction_to_the_buildsystem_target>` must be used). |
  165. +------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------+
  166. | ``--convert-3to4 [<max_file_kb>] [<max_line_size>]`` | Convert project from Godot 3.x to Godot 4.x. |
  167. +------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------+
  168. | ``--validate-conversion-3to4 [<max_file_kb>] [<max_line_size>]`` | Show what elements will be renamed when converting project from Godot 3.x to Godot 4.x. |
  169. +------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------+
  170. | ``--doctool <path>`` | Dump the engine API reference to the given ``<path>`` in XML format, merging if existing files are found |
  171. | | (:ref:`target=editor <doc_introduction_to_the_buildsystem_target>` must be used). |
  172. +------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------+
  173. | ``--no-docbase`` | Disallow dumping the base types (used with ``--doctool``, :ref:`target=editor <doc_introduction_to_the_buildsystem_target>` must be used). |
  174. +------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------+
  175. | ``--build-solutions`` | Build the scripting solutions (e.g. for C# projects, :ref:`target=editor <doc_introduction_to_the_buildsystem_target>` must be used). |
  176. | | Implies ``--editor`` and requires a valid project to edit. |
  177. +------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------+
  178. | ``--dump-gdextension-interface`` | Generate GDExtension header file 'gdnative_interface.h' in the current folder. This file is the base file required to implement a GDExtension. |
  179. +------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------+
  180. | ``--dump-extension-api`` | Generate JSON dump of the Godot API for GDExtension bindings named 'extension_api.json' in the current folder |
  181. | | (:ref:`target=editor <doc_introduction_to_the_buildsystem_target>` must be used). |
  182. +------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------+
  183. | ``--startup-benchmark`` | Benchmark the startup time and print it to console. |
  184. +------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------+
  185. | ``--startup-benchmark-file <path>`` | Benchmark the startup time and save it to a given file in JSON format. |
  186. +------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------+
  187. Path
  188. ----
  189. It is recommended that your Godot editor binary be in your ``PATH`` environment
  190. variable, so it can be executed easily from any place by typing ``godot``.
  191. You can do so on Linux by placing the Godot binary in ``/usr/local/bin`` and
  192. making sure it is called ``godot`` (case-sensitive).
  193. Setting the project path
  194. ------------------------
  195. Depending on where your Godot binary is located and what your current
  196. working directory is, you may need to set the path to your project
  197. for any of the following commands to work correctly.
  198. This can be done by giving the path to the ``project.godot`` file
  199. of your project as either the first argument, like this:
  200. ::
  201. godot path_to_your_project/project.godot [other] [commands] [and] [args]
  202. Or by using the ``--path`` argument:
  203. ::
  204. godot --path path_to_your_project [other] [commands] [and] [args]
  205. For example, the full command for exporting your game (as explained below) might look like this:
  206. ::
  207. godot --headless --path path_to_your_project --export-release my_export_preset_name game.exe
  208. ..
  209. Creating a project
  210. ------------------
  211. Creating a project from the command line can be done by navigating the
  212. shell to the desired place and making a ``project.godot`` file.
  213. ::
  214. mkdir newgame
  215. cd newgame
  216. touch project.godot
  217. The project can now be opened with Godot.
  218. Running the editor
  219. ------------------
  220. Running the editor is done by executing Godot with the ``-e`` flag. This
  221. must be done from within the project directory or a subdirectory,
  222. otherwise the command is ignored and the Project Manager appears.
  223. ::
  224. godot -e
  225. If a scene has been created and saved, it can be edited later by running
  226. the same code with that scene as argument.
  227. ::
  228. godot -e scene.tscn
  229. Erasing a scene
  230. ---------------
  231. Godot is friends with your filesystem and will not create extra metadata files.
  232. Use ``rm`` to erase a scene file. Make sure nothing references that scene.
  233. Otherwise, an error will be thrown upon opening the project.
  234. ::
  235. rm scene.tscn
  236. Running the game
  237. ----------------
  238. To run the game, simply execute Godot within the project directory or
  239. subdirectory.
  240. ::
  241. godot
  242. When a specific scene needs to be tested, pass that scene to the command
  243. line.
  244. ::
  245. godot scene.tscn
  246. Debugging
  247. ---------
  248. Catching errors in the command line can be a difficult task because they
  249. scroll quickly. For this, a command line debugger is provided by adding
  250. ``-d``. It works for running either the game or a single scene.
  251. ::
  252. godot -d
  253. ::
  254. godot -d scene.tscn
  255. .. _doc_command_line_tutorial_exporting:
  256. Exporting
  257. ---------
  258. Exporting the project from the command line is also supported. This is
  259. especially useful for continuous integration setups.
  260. .. note::
  261. Using the ``--headless`` command line argument is **required** on platforms
  262. that do not have GPU access (such as continuous integration). On platforms
  263. with GPU access, ``--headless`` prevents a window from spawning while the
  264. project is exporting.
  265. ::
  266. # `godot` must be a Godot editor binary, not an export template.
  267. # Also, export templates must be installed for the editor
  268. # (or a valid custom export template must be defined in the export preset).
  269. godot --headless --export-release "Linux/X11" /var/builds/project
  270. godot --headless --export-release Android /var/builds/project.apk
  271. The preset name must match the name of an export preset defined in the
  272. project's ``export_presets.cfg`` file. If the preset name contains spaces or
  273. special characters (such as "Windows Desktop"), it must be surrounded with quotes.
  274. To export a debug version of the game, use the ``--export-debug`` switch instead
  275. of ``--export-release``. Their parameters and usage are the same.
  276. To export only a PCK file, use the ``--export-pack`` option followed by the
  277. preset name and output path, with the file extension, instead of
  278. ``--export-release`` or ``--export-debug``. The output path extension determines
  279. the package's format, either PCK or ZIP.
  280. .. warning::
  281. When specifying a relative path as the path for `--export-release`, `--export-debug`
  282. or `--export-pack`, the path will be relative to the directory containing
  283. the ``project.godot`` file, **not** relative to the current working directory.
  284. Running a script
  285. ----------------
  286. It is possible to run a ``.gd`` script from the command line.
  287. This feature is especially useful in large projects, e.g. for batch
  288. conversion of assets or custom import/export.
  289. The script must inherit from ``SceneTree`` or ``MainLoop``.
  290. Here is an example ``sayhello.gd``, showing how it works:
  291. .. code-block:: python
  292. #!/usr/bin/env -S godot -s
  293. extends SceneTree
  294. func _init():
  295. print("Hello!")
  296. quit()
  297. And how to run it:
  298. ::
  299. # Prints "Hello!" to standard output.
  300. godot -s sayhello.gd
  301. If no ``project.godot`` exists at the path, current path is assumed to be the
  302. current working directory (unless ``--path`` is specified).
  303. The first line of ``sayhello.gd`` above is commonly referred to as
  304. a *shebang*. If the Godot binary is in your ``PATH`` as ``godot``,
  305. it allows you to run the script as follows in modern Linux
  306. distributions, as well as macOS:
  307. ::
  308. # Mark script as executable.
  309. chmod +x sayhello.gd
  310. # Prints "Hello!" to standard output.
  311. ./sayhello.gd
  312. If the above doesn't work in your current version of Linux or macOS, you can
  313. always have the shebang run Godot straight from where it is located as follows:
  314. ::
  315. #!/usr/bin/godot -s