Skip to content
/ tmz Public

A library for parsing Tiled maps

License

Notifications You must be signed in to change notification settings

coat/tmz

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

tmz

A library for parsing Tiled maps.

Zig C
const std = @import("std");
const tmz = @import("tmz");

pub fn main() !void {
    var gpa = std.heap.GeneralPurposeAllocator(.{}){};
    const allocator = gpa.allocator();

    const map = try tmz.loadMapFromFile(allocator, "map.tmj");
    defer map.deinit();

    std.debug.info("Map size: {} × {}", .{ map.width, map.height });
}
#include <stdio.h>
#include <tmz.h>

int main(void) {
    tmz_map map;
    tmz_load_map_from_file(&map, "map.tmj")

    printf("Map size: %i x %i\n", map->width, map->height);

    tmz_map_deinit(&map);
    return 0;
}

Features

Parses Maps and Tilesets in JSON Format - .tmj, .tsj).

Installation

Zig

  1. Add tmz as a dependency in your build.zig.zon:
zig fetch --save git+https://github.com/coat/tmz.zig#main
  1. Then add module to build.zig:
const tmz = b.dependency("tmz", .{ .target = target, .optimize = optimize });

exe.root_module.addImport("tmz", tmz.module("tmz"));

C (TODO)

If you are using the C API to tmz, see the Build section below.

Usage

Maps (TODO)

const map = try tmz.loadMap(allocator, @embedFile("map.tmj"));
defer map.deinit(allocator);

std.debug.info("Map size: {} x {}", .{ map.width, map.height });

while (layers.next()) |layer| {
    lay
}

loadMap and loadMapFromFile expect a JSON Map Format (.tmj).

Tilesets

const tileset = try tmz.loadTilesetFromFile(allocator, "tileset.tsj");
defer tileset.deinit(allocator);

if (tileset.name) |name| {
    std.debug.info("Tileset name: {s}", .{ name });
}

loadTileset and loadTilesetFromFile expect a JSON Map Format Tileset (.tsj).

Building

Building the library requires Zig 0.13.0. To build and run the examples (TODO), SDL 3.2 is also required.

zig build install will build the full library and output a FHS-compatible directory in zig-out. You can customize the output directory with the --prefix flag.

Development Environment

Nix

If you have Nix installed, simply use the included flake to get an environment with Zig installed:

nix develop

If you have direnv installed, run direnv allow to automatically load the dev shell when changing into the project directory.

About

A library for parsing Tiled maps

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published