Skip to content

Cross-platform Tiled map parsing utilities.

License

Notifications You must be signed in to change notification settings

erictuvesson/TiledLib.Net

 
 

Repository files navigation

TiledLib.Net

Build Status
Cross-platform Tiled map parsing utilities.

Nugets

TiledLib - Core library, everything you need to read Tiled maps/tilesets.
TiledLib.Pipeline - MonoGame content pipeline extension, provides a ContentImporter for Tiled maps.

Basic usecase

using (var stream = File.OpenRead(filename))
{
  var map = Map.FromStream(stream, ts => File.OpenRead(Path.Combine(Path.GetDirectoryName(filename), ts.source)));

  foreach (var layer in map.Layers.OfType<TileLayer>())
  {
    for (int y = 0, i = 0; y < layer.Height; y++)
      for (int x = 0; x < layer.Width; x++, i++)
      {
        var gid = layer.data[i];
        if (gid == 0)
            continue;

        var tileset = map.Tilesets.Single(ts => gid >= ts.firstgid && ts.firstgid + ts.TileCount > gid);
        var tile = tileset[gid];

        // Do stuff with the tile.
      }
  }
}

About

Cross-platform Tiled map parsing utilities.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 99.9%
  • Smalltalk 0.1%