2023-01-12 20:49:14 +01:00
2022-03-18 17:46:08 +01:00
Command line tutorial
=====================
2024-03-16 20:56:52 +01:00
Some developers like using the command line extensively. Pandemonium is
2022-03-18 17:46:08 +01:00
designed to be friendly to them, so here are the steps for working
entirely from the command line. Given the engine relies on almost no
external libraries, initialization times are pretty fast, making it
suitable for this workflow.
2023-01-12 20:55:57 +01:00
Note:
2022-03-18 17:46:08 +01:00
2024-03-16 20:56:52 +01:00
On Windows and Linux, you can run a Pandemonium binary in a terminal by specifying
2022-03-18 17:46:08 +01:00
its relative or absolute path.
2024-03-16 20:56:52 +01:00
On macOS, the process is different due to Pandemonium being contained within an
`.app` bundle (which is a *folder* , not a file). To run a Pandemonium binary
from a terminal on macOS, you have to `cd` to the folder where the Pandemonium
application bundle is located, then run `Pandemonium.app/Contents/MacOS/Pandemonium`
2022-03-18 17:46:08 +01:00
followed by any command line arguments. If you've renamed the application
2024-03-16 20:56:52 +01:00
bundle from `Pandemonium` to another name, make sure to edit this command line
2022-03-18 17:46:08 +01:00
accordingly.
Command line reference
----------------------
**General options**
+----------------------------+----------------------------------------------------------------------+
| Command | Description |
+----------------------------+----------------------------------------------------------------------+
2023-01-12 19:43:03 +01:00
| `-h` , `--help` , `/?` | Display the list of command line options. |
2022-03-18 17:46:08 +01:00
+----------------------------+----------------------------------------------------------------------+
2023-01-12 19:43:03 +01:00
| `--version` | Display the version string. |
2022-03-18 17:46:08 +01:00
+----------------------------+----------------------------------------------------------------------+
2023-01-12 19:43:03 +01:00
| `-v` , `--verbose` | Use verbose stdout mode. |
2022-03-18 17:46:08 +01:00
+----------------------------+----------------------------------------------------------------------+
2023-01-12 19:43:03 +01:00
| `--quiet` | Quiet mode, silences stdout messages. Errors are still displayed. |
2022-03-18 17:46:08 +01:00
+----------------------------+----------------------------------------------------------------------+
**Run options**
+------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Command | Description |
+------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
2023-01-12 20:47:54 +01:00
| `-e` , `--editor` | Start the editor instead of running the scene (`tools ( doc_introduction_to_the_buildsystem_tools )` must be enabled). |
2022-03-18 17:46:08 +01:00
+------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
2023-01-12 20:47:54 +01:00
| `-p` , `--project-manager` | Start the project manager, even if a project is auto-detected (`tools ( doc_introduction_to_the_buildsystem_tools )` must be enabled). |
2022-03-18 17:46:08 +01:00
+------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
2023-01-12 19:43:03 +01:00
| `-q` , `--quit` | Quit after the first iteration. |
2022-03-18 17:46:08 +01:00
+------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
2023-01-12 20:39:50 +01:00
| `-l <locale )` , `--language <locale )` | Use a specific locale (< locale > being a two-letter code). See `doc_locales` for more details. |
2022-03-18 17:46:08 +01:00
+------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
2024-03-16 20:56:52 +01:00
| `--path <directory )` | Path to a project (< directory > must contain a 'project.pandemonium' file). |
2022-03-18 17:46:08 +01:00
+------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
2024-03-16 20:56:52 +01:00
| `-u` , `--upwards` | Scan folders upwards for 'project.pandemonium' file. |
2022-03-18 17:46:08 +01:00
+------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
2023-01-12 20:39:50 +01:00
| `--main-pack <file )` | Path to a pack (.pck) file to load. |
2022-03-18 17:46:08 +01:00
+------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
2023-01-12 20:39:50 +01:00
| `--render-thread <mode )` | Render thread mode ('unsafe', 'safe', 'separate'). See `Thread Model` for more details. |
2022-03-18 17:46:08 +01:00
+------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
2023-01-12 20:39:50 +01:00
| `--remote-fs <address )` | Remote filesystem (`< host / IP > [:< port > ]` address). |
2022-03-18 17:46:08 +01:00
+------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
2023-01-12 20:39:50 +01:00
| `--audio-driver <driver )` | Audio driver. Use `--help` first to display the list of available drivers. |
2022-03-18 17:46:08 +01:00
+------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
2023-01-12 20:39:50 +01:00
| `--video-driver <driver )` | Video driver. Use `--help` first to display the list of available drivers. |
2022-03-18 17:46:08 +01:00
+------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
**Display options**
+-----------------------------+----------------------------------------------------------------------------+
| Command | Description |
+-----------------------------+----------------------------------------------------------------------------+
2023-01-12 19:43:03 +01:00
| `-f` , `--fullscreen` | Request fullscreen mode. |
2022-03-18 17:46:08 +01:00
+-----------------------------+----------------------------------------------------------------------------+
2023-01-12 19:43:03 +01:00
| `-m` , `--maximized` | Request a maximized window. |
2022-03-18 17:46:08 +01:00
+-----------------------------+----------------------------------------------------------------------------+
2023-01-12 19:43:03 +01:00
| `-w` , `--windowed` | Request windowed mode. |
2022-03-18 17:46:08 +01:00
+-----------------------------+----------------------------------------------------------------------------+
2023-01-12 19:43:03 +01:00
| `-t` , `--always-on-top` | Request an always-on-top window. |
2022-03-18 17:46:08 +01:00
+-----------------------------+----------------------------------------------------------------------------+
2023-01-12 20:39:50 +01:00
| `--resolution <W>x<H )` | Request window resolution. |
2022-03-18 17:46:08 +01:00
+-----------------------------+----------------------------------------------------------------------------+
2023-01-12 20:39:50 +01:00
| `--position <X>,<Y )` | Request window position. |
2022-03-18 17:46:08 +01:00
+-----------------------------+----------------------------------------------------------------------------+
2023-01-12 19:43:03 +01:00
| `--low-dpi` | Force low-DPI mode (macOS and Windows only). |
2022-03-18 17:46:08 +01:00
+-----------------------------+----------------------------------------------------------------------------+
2023-01-12 19:43:03 +01:00
| `--no-window` | Run with invisible window. Useful together with `--script` . |
2022-03-18 17:46:08 +01:00
+-----------------------------+----------------------------------------------------------------------------+
**Debug options**
2023-01-12 20:55:57 +01:00
Note:
2022-03-18 17:46:08 +01:00
Debug options are only available in the editor and debug export templates
2023-01-12 19:43:03 +01:00
(they require `debug` or `release_debug` build targets, see
2023-01-12 19:29:11 +01:00
`doc_introduction_to_the_buildsystem_target` for more details).
2022-03-18 17:46:08 +01:00
+------------------------------+---------------------------------------------------------------------------------------------+
| Command | Description |
+------------------------------+---------------------------------------------------------------------------------------------+
2023-01-12 19:43:03 +01:00
| `-d` , `--debug` | Debug (local stdout debugger). |
2022-03-18 17:46:08 +01:00
+------------------------------+---------------------------------------------------------------------------------------------+
2023-01-12 19:43:03 +01:00
| `-b` , `--breakpoints` | Breakpoint list as source::line comma-separated pairs, no spaces (use %%20 instead). |
2022-03-18 17:46:08 +01:00
+------------------------------+---------------------------------------------------------------------------------------------+
2023-01-12 19:43:03 +01:00
| `--profiling` | Enable profiling in the script debugger. |
2022-03-18 17:46:08 +01:00
+------------------------------+---------------------------------------------------------------------------------------------+
2023-01-12 20:39:50 +01:00
| `--remote-debug <address )` | Remote debug (`< host / IP > :< port )` address ). |
2022-03-18 17:46:08 +01:00
+------------------------------+---------------------------------------------------------------------------------------------+
2023-01-12 19:43:03 +01:00
| `--debug-collisions` | Show collision shapes when running the scene. |
2022-03-18 17:46:08 +01:00
+------------------------------+---------------------------------------------------------------------------------------------+
2023-01-12 19:43:03 +01:00
| `--debug-navigation` | Show navigation polygons when running the scene. |
2022-03-18 17:46:08 +01:00
+------------------------------+---------------------------------------------------------------------------------------------+
2023-01-12 20:39:50 +01:00
| `--frame-delay <ms )` | Simulate high CPU load (delay each frame by < ms > milliseconds). |
2022-03-18 17:46:08 +01:00
+------------------------------+---------------------------------------------------------------------------------------------+
2023-01-12 20:39:50 +01:00
| `--time-scale <scale )` | Force time scale (higher values are faster, 1.0 is normal speed). |
2022-03-18 17:46:08 +01:00
+------------------------------+---------------------------------------------------------------------------------------------+
2023-01-12 19:43:03 +01:00
| `--disable-render-loop` | Disable render loop so rendering only occurs when called explicitly from script. |
2022-03-18 17:46:08 +01:00
+------------------------------+---------------------------------------------------------------------------------------------+
2023-01-12 19:43:03 +01:00
| `--disable-crash-handler` | Disable crash handler when supported by the platform code. |
2022-03-18 17:46:08 +01:00
+------------------------------+---------------------------------------------------------------------------------------------+
2023-01-12 20:39:50 +01:00
| `--fixed-fps <fps )` | Force a fixed number of frames per second. This setting disables real-time synchronization. |
2022-03-18 17:46:08 +01:00
+------------------------------+---------------------------------------------------------------------------------------------+
2023-01-12 19:43:03 +01:00
| `--print-fps` | Print the frames per second to the stdout. |
2022-03-18 17:46:08 +01:00
+------------------------------+---------------------------------------------------------------------------------------------+
**Standalone tools**
+----------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Command | Description |
+----------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
2023-01-12 20:39:50 +01:00
| `-s <script )` , `--script <script )` | Run a script. |
2022-03-18 17:46:08 +01:00
+----------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
2023-01-12 19:43:03 +01:00
| `--check-only` | Only parse for errors and quit (use with `--script` ). |
2022-03-18 17:46:08 +01:00
+----------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
2023-01-12 20:47:54 +01:00
| `--export <target )` | Export the project using the given export target. Export only main pack if path ends with .pck or .zip (`tools ( doc_introduction_to_the_buildsystem_tools )` must be enabled). |
2022-03-18 17:46:08 +01:00
+----------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
2023-01-12 20:47:54 +01:00
| `--export-debug <target )` | Like `--export` , but use debug template (`tools ( doc_introduction_to_the_buildsystem_tools )` must be enabled). |
2022-03-18 17:46:08 +01:00
+----------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
2023-01-12 20:47:54 +01:00
| `--doctool <path )` | Dump the engine API reference to the given < path > in XML format, merging if existing files are found (`tools ( doc_introduction_to_the_buildsystem_tools )` must be enabled). |
2022-03-18 17:46:08 +01:00
+----------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
2023-01-12 20:47:54 +01:00
| `--no-docbase` | Disallow dumping the base types (used with `--doctool` , `tools ( doc_introduction_to_the_buildsystem_tools )` must be enabled). |
2022-03-18 17:46:08 +01:00
+----------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
2023-01-12 20:47:54 +01:00
| `--build-solutions` | Build the scripting solutions (e.g. for C# projects, `tools ( doc_introduction_to_the_buildsystem_tools )` must be enabled). |
2022-03-18 17:46:08 +01:00
+----------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
2024-03-16 20:56:52 +01:00
| `--gdnative-generate-json-api` | Generate JSON dump of the Pandemonium API for GDNative bindings (`tools ( doc_introduction_to_the_buildsystem_tools )` must be enabled). |
2022-03-18 17:46:08 +01:00
+----------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
2023-01-12 20:47:54 +01:00
| `--test <test )` | Run a unit test. Use `--help` first to display the list of tests. (`tools ( doc_introduction_to_the_buildsystem_tools )` must be enabled). |
2022-03-18 17:46:08 +01:00
+----------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
2023-01-12 20:39:50 +01:00
| `--export-pack <preset> <path )` | Like `--export` , but only export the game pack for the given preset. The < path > extension determines whether it will be in PCK or ZIP format. |
2023-01-12 20:47:54 +01:00
| | (`tools ( doc_introduction_to_the_buildsystem_tools )` must be enabled). |
2022-03-18 17:46:08 +01:00
+----------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
Path
----
2024-03-16 20:56:52 +01:00
It is recommended that your Pandemonium binary be in your PATH environment
2022-03-18 17:46:08 +01:00
variable, so it can be executed easily from any place by typing
2024-03-16 20:56:52 +01:00
`pandemonium` . You can do so on Linux by placing the Pandemonium binary in
`/usr/local/bin` and making sure it is called `pandemonium` .
2022-03-18 17:46:08 +01:00
Setting the project path
------------------------
2024-03-16 20:56:52 +01:00
Depending on where your Pandemonium binary is located and what your current
2022-03-18 17:46:08 +01:00
working directory is, you may need to set the path to your project
for any of the following commands to work correctly.
2024-03-16 20:56:52 +01:00
This can be done by giving the path to the `project.pandemonium` file
2022-03-18 17:46:08 +01:00
of your project as either the first argument, like this:
2023-01-12 22:00:14 +01:00
```
2024-03-16 20:56:52 +01:00
pandemonium path_to_your_project/project.pandemonium [other] [commands] [and] [args]
2023-01-12 22:00:14 +01:00
```
2022-03-18 17:46:08 +01:00
2023-01-12 19:43:03 +01:00
Or by using the `--path` argument:
2022-03-18 17:46:08 +01:00
2023-01-12 22:00:14 +01:00
```
2024-03-16 20:56:52 +01:00
pandemonium --path path_to_your_project [other] [commands] [and] [args]
2023-01-12 22:00:14 +01:00
```
2022-03-18 17:46:08 +01:00
For example, the full command for exporting your game (as explained below) might look like this:
2023-01-12 22:00:14 +01:00
```
2024-03-16 20:56:52 +01:00
pandemonium --path path_to_your_project --export my_export_preset_name game.exe
2023-01-12 22:00:14 +01:00
```
2022-03-18 17:46:08 +01:00
Creating a project
------------------
Creating a project from the command line can be done by navigating the
2024-03-16 20:56:52 +01:00
shell to the desired place and making a project.pandemonium file.
2022-03-18 17:46:08 +01:00
2023-01-12 22:00:14 +01:00
```
2022-03-18 17:46:08 +01:00
mkdir newgame
cd newgame
2024-03-16 20:56:52 +01:00
touch project.pandemonium
2023-01-12 22:00:14 +01:00
```
2022-03-18 17:46:08 +01:00
2024-03-16 20:56:52 +01:00
The project can now be opened with Pandemonium.
2022-03-18 17:46:08 +01:00
Running the editor
------------------
2024-03-16 20:56:52 +01:00
Running the editor is done by executing Pandemonium with the `-e` flag. This
2022-03-18 17:46:08 +01:00
must be done from within the project directory or a subdirectory,
otherwise the command is ignored and the project manager appears.
2023-01-12 22:00:14 +01:00
```
2024-03-16 20:56:52 +01:00
pandemonium -e
2023-01-12 22:00:14 +01:00
```
2022-03-18 17:46:08 +01:00
If a scene has been created and saved, it can be edited later by running
the same code with that scene as argument.
2023-01-12 22:00:14 +01:00
```
2024-03-16 20:56:52 +01:00
pandemonium -e scene.tscn
2023-01-12 22:00:14 +01:00
```
2022-03-18 17:46:08 +01:00
Erasing a scene
---------------
2024-03-16 20:56:52 +01:00
Pandemonium is friends with your filesystem and will not create extra
2023-01-12 19:43:03 +01:00
metadata files. Use `rm` to erase a scene file. Make sure nothing
2022-03-18 17:46:08 +01:00
references that scene or else an error will be thrown upon opening.
2023-01-12 22:00:14 +01:00
```
2022-03-18 17:46:08 +01:00
rm scene.tscn
2023-01-12 22:00:14 +01:00
```
2022-03-18 17:46:08 +01:00
Running the game
----------------
2024-03-16 20:56:52 +01:00
To run the game, simply execute Pandemonium within the project directory or
2022-03-18 17:46:08 +01:00
subdirectory.
2023-01-12 22:00:14 +01:00
```
2024-03-16 20:56:52 +01:00
pandemonium
2023-01-12 22:00:14 +01:00
```
2022-03-18 17:46:08 +01:00
When a specific scene needs to be tested, pass that scene to the command
line.
2023-01-12 22:00:14 +01:00
```
2024-03-16 20:56:52 +01:00
pandemonium scene.tscn
2023-01-12 22:00:14 +01:00
```
2022-03-18 17:46:08 +01:00
Debugging
---------
Catching errors in the command line can be a difficult task because they
just fly by. For this, a command line debugger is provided by adding
2023-01-12 19:43:03 +01:00
`-d` . It works for running either the game or a simple scene.
2022-03-18 17:46:08 +01:00
2023-01-12 22:00:14 +01:00
```
2024-03-16 20:56:52 +01:00
pandemonium -d
2023-01-12 22:00:14 +01:00
```
2022-03-18 17:46:08 +01:00
2023-01-12 22:00:14 +01:00
```
2024-03-16 20:56:52 +01:00
pandemonium -d scene.tscn
2023-01-12 22:00:14 +01:00
```
2023-01-12 20:49:14 +01:00
2022-03-18 17:46:08 +01:00
Exporting
---------
Exporting the project from the command line is also supported. This is
2024-03-16 20:56:52 +01:00
especially useful for continuous integration setups. The version of Pandemonium
2022-03-18 17:46:08 +01:00
that is headless (server build, no video) is ideal for this.
2023-01-12 22:00:14 +01:00
```
2024-03-16 20:56:52 +01:00
pandemonium --export "Linux/X11" /var/builds/project
pandemonium --export Android /var/builds/project.apk
2023-01-12 22:00:14 +01:00
```
2022-03-18 17:46:08 +01:00
The preset name must match the name of an export preset defined in the
2023-01-12 19:43:03 +01:00
project's `export_presets.cfg` file. If the preset name contains spaces or
2022-03-18 17:46:08 +01:00
special characters (such as "Windows Desktop"), it must be surrounded with quotes.
2023-01-12 19:43:03 +01:00
To export a debug version of the game, use the `--export-debug` switch
instead of `--export` . Their parameters and usage are the same.
2022-03-18 17:46:08 +01:00
2023-01-12 19:43:03 +01:00
To export only a PCK file, use the `--export-pack` option followed by the
preset name and output path, with the file extension, instead of `--export` .
2022-03-18 17:46:08 +01:00
The output path extension determines the package's format, either PCK or ZIP.
2023-01-12 20:55:57 +01:00
Warning:
2022-03-18 17:46:08 +01:00
When specifying a relative path as the path for `--export` , `--export-debug`
or `--export-pack` , the path will be relative to the directory containing
2024-03-16 20:56:52 +01:00
the `project.pandemonium` file, **not** relative to the current working directory.
2022-03-18 17:46:08 +01:00
Running a script
----------------
2023-01-12 19:43:03 +01:00
It is possible to run a simple `.gd` script from the command line.
2022-03-18 17:46:08 +01:00
This feature is especially useful in large projects, e.g. for batch
conversion of assets or custom import/export.
2023-01-12 19:43:03 +01:00
The script must inherit from `SceneTree` or `MainLoop` .
2022-03-18 17:46:08 +01:00
2023-01-12 19:43:03 +01:00
Here is a simple `sayhello.gd` example of how it works:
2022-03-18 17:46:08 +01:00
2023-01-12 22:00:14 +01:00
```
2024-03-16 20:56:52 +01:00
#!/usr/bin/env -S pandemonium -s
2022-03-18 17:46:08 +01:00
extends SceneTree
func _init():
print("Hello!")
quit()
2023-01-12 22:00:14 +01:00
```
2022-03-18 17:46:08 +01:00
And how to run it:
2023-01-12 22:00:14 +01:00
```
2022-03-18 17:46:08 +01:00
# Prints "Hello!" to standard output.
2024-03-16 20:56:52 +01:00
pandemonium -s sayhello.gd
2023-01-12 22:00:14 +01:00
```
2022-03-18 17:46:08 +01:00
2024-03-16 20:56:52 +01:00
If no `project.pandemonium` exists at the path, current path is assumed to be the
2023-01-12 19:43:03 +01:00
current working directory (unless `--path` is specified).
2022-03-18 17:46:08 +01:00
2023-01-12 19:43:03 +01:00
The first line of `sayhello.gd` above is commonly referred to as
2024-03-16 20:56:52 +01:00
a *shebang* . If the Pandemonium binary is in your `PATH` as `pandemonium` ,
2022-03-18 17:46:08 +01:00
it allows you to run the script as follows in modern Linux
distributions, as well as macOS:
2023-01-12 22:00:14 +01:00
```
2022-03-18 17:46:08 +01:00
# Mark script as executable.
chmod +x sayhello.gd
# Prints "Hello!" to standard output.
./sayhello.gd
2023-01-12 22:00:14 +01:00
```
2022-03-18 17:46:08 +01:00
If the above doesn't work in your current version of Linux or macOS, you can
2024-03-16 20:56:52 +01:00
always have the shebang run Pandemonium straight from where it is located as follows:
2022-03-18 17:46:08 +01:00
2023-01-12 22:00:14 +01:00
```
2024-03-16 20:56:52 +01:00
#!/usr/bin/pandemonium -s
2023-01-12 22:00:14 +01:00
```