cpct_tmx2csv

Script for generating csv files with maps defined in tmx files (from tiled map editor).

Usage

cpct_tmx2csv [file] [options]

Known limitations

  • This script will only work with tmx files saved as CSV format.  Output format must be selected as CSV in tilemap properties.

Description

This script converts tmx files saved in CSV format to csv files ready to be included in C source files using #include directive.  It also reindexes tile ids starting from 0 (as in tmx files tile ids start from 1).

Conversion is output to the screen.

Command line options

-h | --helpShows help information on the terminal.
-gc | --generate-cGenerates a C file with an array containing converted values
-gh | --generate-hGenerates a H file with the declaration of the array for C file (implies -gc)
-of | --output-folder <folder>Changes the output folder for generated C/H files (Default: .)
-ci | --c-identifier <id>Sets the C-identifier that will be used for the generated array (Default: filename)
-ba | --bitarray <bits>Generates output as an array of bits, being <bits> the amount of bits for every element (1, 2, 4 or 6)
Script for generating csv files with maps defined in tmx files (from tiled map editor).
Close