Tiled TMX Loader
Load Tiled's TMX files for use in PyGame.
Leif Theden
(bitcraft)
Map loader for TMX Files Leif Theden (bitcraft), 2011-2014 v3.19.3 - for python 2.7 and 3.3+ If you have any problems or suggestions, please open an issue on the github page. I am also often lurking #pygame on freenode. Feel free to contact me. released under the LGPL v3 =============================================================================== PyTMX is a map loader for python/pygame designed for games. It provides smart tile loading with a fast and efficient storage base. Not only will does it correctly handle most Tiled object types, it also will load metadata for them, so you can modify your maps and objects in Tiled, instead of modifying your source code. Features: API with many handy functions Properties metadata for all native Tiled object types Point data for polygon and polyline objects Automatic flipping and rotation of tiles Supports base64, csv, gzip, zlib and uncompressed XML Image loading with pygame (works ok without pygame) =============================================================================== Just data --------- >>> import pytmx >>> tmxdata = pytmx.TiledMap("map.tmx") Load with Pygame Surfaces ------------------------- >>> from pytmx import load_pygame >>> tmxdata = load_pygame("map.tmx") The loader will correctly convert() or convert_alpha() each tile image, so you don't have to worry about that after you load the map. Getting the Tile Surface ------------------------ >>> image = tmx_data.get_tile_image(x, y, layer) >>> screen.blit(image, position) Getting Object Properties ------------------------- >>> tmxdata = TiledMap('level1.tmx') >>> props = txmdata.get_tile_properties(x, y, layer) >>> props = tmxdata.get_layer_by_name("dirt").properties Using Raw XML ------------- It is possible to load TiledMap object from XML strings. >>> tmxdata = TiledMap.from_string(xml_string) =============================================================================== I have another repo with a working demo of a proper scrolling map using Tiled maps. Please feel free to test drive it. It isn't limited to Tiled maps, you can use any data structure you want, as long as PyGame is used. https://github.com/bitcraft/pyscroll =============================================================================== The 16x16 overworld tiles were created by MrBeast at opengameart.org. CC-BY 3.0
Changes
Links
- Home Page
- https://github.com/bitcraft/PyTMX
Releases
Tiled TMX Loader v.13 — 20 Mar, 2012
Tiled TMX Loader v.11 — 20 Feb, 2012
Tiled TMX Loader v.14 — 10 May, 2012
Tiled TMX Loader v.15 — 31 May, 2012
Tiled TMX Loader 3.19.3 — 17 Sep, 2014
Pygame.org account Comments
-
Stephen 2012-03-27 14:00
Just what I need... thanks for your work !
-
poz 2012-05-11 09:39
I noticed a few error:
It didnt handle tilesets with margin correctly. Yon can try to load the sample map "desert.tmx" that come with the Tiled
Also couldnt handle transparent pixel. This also can be tested with "sewers.tmx" from the sample map in Tiled -
anon 2014-12-16 19:16
So, if I wanted to display a .tmx map file in pygame, complete with properties such as objects and collision that I made in Tiled, which example would I use above? I feel stupid for asking but I've been trying for a full two days now to get this to work and I'm just getting nowhere. I usually don't ask these kinds of things, I just can't seem to get anywhere and I've seen plenty of people say how easy to use this is, so I must be missing something obvious/small.
Leif Theden 2015-04-06 08:40
pytmx is a map loader, and doesn't force you to render your map in a special way. the downside is, there is no built in renderer. if you want to render your map, you can follow the example in the apps folder (https://github.com/bitcraft/Py..., or use my ready made project pyscroll. To get tile info, you need to get the tile properties dict http://pytmx.readthedocs.org/e.... for objects, just query the object, then access them through object.properties. See the apps folder for API to get the objects, or the API docs at http://pytmx.readthedocs.org.
-
prometeh 2014-12-28 12:35
hey bitcraft, how you doing? :)
dude thanks for the great work, but to be honest there's only one thing that i think is missing here and that's "the documentation"...
A nice code like these deserves to have a better document and a good tutorial, a few examples outside of the .py file, on a web page and a text about the concept of tiles in tiled and it's relations to your library, specially about implementing objects from tiled like sprites...
it's been about a month that i'm working with your library and i just look at pytmx.py and try to figure it out, so hard man so hard, that makes me cry dude, a lil bit more comments in your code would highly appreciated also... beyond that buddy, thanks for your awesome code, all i'm saying is that the beginners like me need a bit more info, just my two cents.cheers.
Leif Theden 2015-04-06 08:35
Thanks for your interest and your comments. IMO, there are plenty of generic tutorials about making maps with Tiled and what tiles are, objects, etc. I have a few examples of how to use the library in the source...check out the apps folder. It demonstrates all the basic tasks that you can do with pytmx. Beyond that, I don't really have the time to make a step-step tutorial. The API is really quite simple and is all documented. pytmx.readthedocs.org has the API documentation. I guess you would say the audience of pytmx isn't new developers, it's more for people who already know what they need to do, and pytmx takes the pain out of parsing XML, variable type conversion, shape loading, properties, and of course image loading. When looking through the source, the important bits are in the docstrings. Hope that helps.
If you need a more friendly way to use Tiled maps, please check out my other project pyscroll https://github.com/bitcraft/py... It has a friendlier way to load maps and use with pygame with the ScrollGroup class.
-
Dan 2016-07-03 11:29
can someone make a video tutorial i spent 3 days trying to get it to work