Creation of Add-on libraries
An example add-on library for examination and testing is available at https://github.com/cwisniew/test-maptool-add-on-lib
There are two main ways to create an Add-on Library:
- Create the library files and directory structure from scratch; or
- Export a Library Token as an Add-on Library.
Each of these approaches is described below.
1. Create the library files and directory structure from scratch
Firstly you will need a text editor there are many of them mentioned below if in doubt just use VS Code.
after choosing a text editor, create a new directory to hold your Add-on.
Top-level files in the add-on are metadata files, they hold information about your add-on. the only file your add-on needs to be accepted by MapTool is library.json.
You may have other non metadata files in a subdirectory which must be named library.
For macro code you may have a mtscript directory inside library, both of those subdirectories may have a public directory which must be named public.
This structure is described in more detail in: Technical definition of Add-on Libraries.
Creating library.json
the only required fields are*a name string
- a authors array
- a short description string
- a namespace string
the other fields are described in Creation of add-on libraries most of these are self explanatory just remember bad things will happen if you use the same namespace as someone else so try to use at least 3 words or a reversed host name.
an example of a minimal library.json could be
{ "name": "test", "authors": ["you"], "namespace": "test.test.test", "shortDescription":"test" }
and that is it. you made an add-on those 6 lines are enough, just zip this file and then it rename so that it ends with .mtlib and have fun.
2. Export a Library Token as an Add-on Library
The token pop-up menu includes a way to export your existing library tokens to an Add-on Library structure. This is useful for starting the conversion of an existing token library to an add-on.
In all but the simplest Library Tokens you will want edit the extracted data. At a minimum, you will want to examine whether you prefer to rename the macros.
Things you will want to change
You should probably change the namespace in the library.json
file to something that is unlikely to conflict with other users. It's a good practice to use a reversed hostname + add-on name for this. For example, if you created an account at GitHub and are using the GitHub.io page mentioned above, an example namespace would be io.github.addon-name
.
All macros (except event-based ones) are created in mtscript/public
with the pattern macro_number.mts
. This is because macro names have many things that might make them invalid -- or worse, dangerous -- filenames. There is a macro_script_map.txt
file saved in the top level which contains the names of your macros and the filename that they were saved in.
Not all macro buttons on Library Tokens contain MTscript macros. They are used as containers for CSS or other text content. You will probably want to rename and move them to the library/public/
directory.
The onCampaignLoad
macro will be saved as onInit
.
All properties are saved in the library/properties
directory. These are saved with the names prop_number.txt
and a mapping file prop_file_map.txt
is created to map these. (This may change slightly as the data access API evolves.)
These files/structures are described in more detail in: Technical definition of Add-on Libraries.