TMX

Build Status Crates.io Docs License

TMX is a library for loading Tiled maps in Rust.

Usage

bash cargo add tmx

Examples

Loading a Map

```rust use tmx::Map;

fn main() -> Result<(), Box> { let map = r##" 1,2684354561,1,2147483649, 1610612737,3221225473,1073741825,3221225473, 2147483649,3758096385,1073741825,536870913, 536870913,1073741825,3758096385,2147483649 "##;

let map = Map::from_str(map)?;
println!("{:?}", map);

Ok(())

} ```

Loading a Tileset

```rust use tmx::Tileset;

fn main() -> Result<(), Box> { let tileset = r##" "##;

let tileset = Tileset::from_str(tileset)?;
println!("{:?}", tileset);

Ok(())

} ```

See the docs for more information.

TMX Map Format Support

| Element | Support | | ------------------ | ------- | | <map> | Full | | <editorsettings> | None | | - <chunksize> | None | | - <export> | None | | <tileset> | Partial | | - <tileoffset> | None | | - <grid> | None | | - <image> | Full | | - <terraintypes> | None | | - - <terrain> | None | | - <tile> | Partial | | - - <animation> | None | | - <wangsets> | None | | - - <wangset> | None | | <layer> | Full | | - <data> | Full | | - <chunk> | Full | | - <tile> | Full | | <objectgroup> | None | | - <object> | None | | - <ellipse> | None | | - <point> | None | | - <polygon> | None | | - <polyline> | None | | - <text> | None | | <imagelayer> | None | | <group> | None | | <properties> | None | | - <property> | None |

Features

The following features are available and enabled by default.

| Feature | Description | | ------------- | ----------------------------------------------------------------------------------- | | base64-data | Allows loading maps where the Tile Layer Format is Base64 (uncompressed). | | gzip-data | Allows loading maps where the Tile Layer Format is Base64 (gzip compressed). | | zlib-data | Allows loading maps where the Tile Layer Format is Base64 (zlib compressed). | | zstd-data | Allows loading maps where the Tile Layer Format is Base64 (Zstandard compressed). |

License

MIT