Preserve Tile Global ID in Custom Exporter

Hi there! I’m working on a basic custom JSON tilemap exporter just to export the specific properties of the maps that I’m interested in. However, the exported tile ID is always the local tile ID instead of the global tile ID that takes into account the tileset GID offset.

Now, that would be fine and I understand that the various flipped flags and tileset GID can simply be added to the tile ID to produce the correct global tile ID. However, when I attempted to re-configure the solution provided here for my own purposes, it seems the tilemap being passed to the exporter’s write function does not have any tilesets assigned to the tiles I get from the tilelayer.

Indeed, if I run this code to check:

for (let i = 0; i < map.layerCount; i++)
{
    let layer = map.layerAt(i);

    if (layer.isTileLayer)
    {
        for (let x = 0; x < layer.width; x++)  {
            for (let y = 0; y < layer.height; y++) {
              let tile = layer.tileAt(x, y);
              if (tile != null)
                  tiled.log("TileSet: " + (tile.tileset != null));
            }
        }
    }
}

It tells me that every single tile on every layer has no tileset assigned:

I guess my question is is this a bug or am I perhaps misunderstanding the API or the data being passed during export? (Very possible). Any help is appreciated! :slightly_smiling_face:

I don’t think you misunderstand anything, you should be getting a bunch of TileSet: true (and no output for empty cells).

It might be a bug. What version of Tiled are you using? Some older versions had bugs with things being null when they shouldn’t be, perhaps you’re experiencing a version of that.
(By the way, I recommend just outputting tile.tileset instead of comparing it to null, much clearer xP It’ll output null or something like Tiled::EditableTileset(0x2893ae2b910), much easier to follow than negative comparisons.)

1 Like

Thanks for the pointers! I’m new to javascript for sure haha. I did a simple null comparison because it was telling me trying to access anything on the .tileset property was accessing an undefined property.

I’m running version 1.11.2, and running on Linux Mint 22.1 (Ubuntu 24.04 base).

It’s refreshing to hear that it may be a bug and not my own fault! I thought perhaps the map data being received at export time was already condensed or the tileset property was only used in the editor or something.

I can confirm using Tiled 1.10.2 the tileset property is assigned as expected.