1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
|
.. raw:: html
<div class="new new-prev">Since Tiled 1.3</div>
.. |ro| replace:: *[read‑only]*
Scripting
=========
Introduction
------------
Tiled can be extended with the use of JavaScript. See the `Tiled Scripting
API`_ for a reference of all available functionality.
TypeScript definitions of the API are available as the `@mapeditor/tiled-api`_
NPM package, which can provide auto-completion in your editor. The API
reference is generated based on these definitions.
On startup, Tiled will execute any script files present in :ref:`extension
folders <script-extensions>`. In addition it is possible to run scripts
directly from :ref:`the console <script-console>`, as well as to evaluate a
script file from the :ref:`command-line <script-cli>`. All scripts share a
single JavaScript context.
.. note::
A few example scripts and links to existing Tiled extensions are provided
at the Tiled Extensions repository: https://github.com/mapeditor/tiled-extensions
JavaScript Host Environment
^^^^^^^^^^^^^^^^^^^^^^^^^^^
Tiled uses the JavaScript engine shipping with Qt's `QML module`_. The QML
runtime generally implements the 7th edition of the standard, with some
additions. See the `JavaScript Host Environment`_ documentation for details.
It may also be helpful to check out the `List of JavaScript Objects and
Functions`_ that are available.
.. _script-extensions:
Scripted Extensions
^^^^^^^^^^^^^^^^^^^
Extensions can be placed in a system-specific or :doc:`project-specific
</manual/projects>` location.
The system-specific folder can be opened from the Plugins tab in the
:doc:`Preferences dialog </manual/preferences>`. The usual location on each
supported platform is as follows:
+-------------+-----------------------------------------------------------------+
| **Windows** | | :file:`C:/Users/<USER>/AppData/Local/Tiled/extensions/` |
+-------------+-----------------------------------------------------------------+
| **macOS** | | :file:`~/Library/Preferences/Tiled/extensions/` |
+-------------+-----------------------------------------------------------------+
| **Linux** | | :file:`~/.config/tiled/extensions/` |
+-------------+-----------------------------------------------------------------+
The project-specific folder defaults to "extensions", relative to the
directory of the ``.tiled-project`` file, but this can be changed in the
*Project Properties*.
.. warning::
Since Tiled 1.7, project-specific extensions are only enabled by default
for new projects you save from Tiled. When opening any other project, a
popup will notify you when the project has a scripted extensions directory,
allowing you to enable extensions for that project.
Always be careful when enabling extensions on projects you haven't
created, since extensions have access to your files and can execute
processes.
An extension can be placed either directly in an extensions directory, or in a
sub-directory. All scripts files found in these directories are executed on
startup.
.. raw:: html
<div class="new">Since Tiled 1.8</div>
When using the ``.mjs`` extension, script files are loaded as `JavaScript
modules`_. They will then be able to use the `import`_ and `export`_ statements
to split up their functionality over multiple JavaScript files. Such extensions
also don't pollute the global scope, avoiding potential name collisions between
different extensions.
When any loaded script is changed or when any files are added/removed from the
extensions directory, the script engine is automatically reinstantiated and the
scripts are reloaded. This way there is no need to restart Tiled when
installing extensions. It also makes it quick to iterate on a script until it
works as intended.
Apart from scripts, extensions can include images that can be used as the icon
for scripted actions or tools.
.. _script-console:
Console View
^^^^^^^^^^^^
In the Console view (*View > Views and Toolbars > Console*) you will
find a text entry where you can write or paste scripts to evaluate them.
You can use the Up/Down keys to navigate through previously entered
script expressions.
.. raw:: html
<div class="new">Since Tiled 1.9</div>
.. _script-cli:
Command Line
^^^^^^^^^^^^
To execute a script (``.js``) or to load a module (``.mjs``) from the
command-line, you can pass the ``--evaluate`` option (or ``-e``), followed by
the file name. Tiled will quit after executing the script.
The UI will not be instantiated while evaluating scripts on the command-line.
This means functions that rely on the UI being present will do nothing and some
properties will be ``null``. However, scripts are able to load and save maps
and tilesets through the available formats (see ``tiled.mapFormats`` and
``tiled.tilesetFormats``), as well as to make any modifications to these
assets.
Any additional non-option arguments passed after the script file name are
available to the script as ``tiled.scriptArguments``.
If you want to evaluate several scripts, use ``--evaluate`` for each file. Note
that evaluating the same JavaScript module (``.mjs``) does not work, since
modules are loaded only once.
API Reference
-------------
See the `Tiled Scripting API`_.
The following global variable is currently not documented in the generated
documentation, since it conflicts with nodejs types:
__filename
The file path of the current file being evaluated. Only available during
initial evaluation of the file and not when later functions in that file
get called. If you need it there, copy the value to local scope.
.. _Tiled Scripting API: https://www.mapeditor.org/docs/scripting/
.. _JavaScript Host Environment: https://doc.qt.io/qt-6/qtqml-javascript-hostenvironment.html
.. _List of JavaScript Objects and Functions: https://doc.qt.io/qt-6/qtqml-javascript-functionlist.html
.. _QML module: https://doc.qt.io/qt-6/qtqml-index.html
.. _@mapeditor/tiled-api: https://www.npmjs.com/package/@mapeditor/tiled-api
.. _JavaScript modules: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
.. _import: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import
.. _export: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/export
|