Skip to content

Crapoto/tmx

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TMX C Loader


About

Loads .tmx tiled maps in you games.

Dependencies

This project depends on Zlib, Jansson and LibXml2. Binaries for windows are available :

Compiling

This project uses cmake as a build system builder. You can either use cmake or cmake-gui.

You can disable XML support by setting WANT_XML to off, the same way with WANT_JSON you can disable JSON support.

Exemple for make on linux :

mkdir build
cd build
cmake ..
make && make install

Usage

#include <tmx/tmx.h>

int main(void) {
  tmx_map map = tmx_load("path/map.tmx");
  if (!map) {
    tmx_perror("tmx_load");
    return 1;
  }
  /* ... */
  tmx_free(map);
  return 0;
}

Help

See the Wiki.