├── .github └── workflows │ └── test.yml ├── .gitignore ├── .readthedocs.yaml ├── CONTRIBUTE.md ├── LICENSE ├── MANIFEST.in ├── apps ├── benchmark.py ├── data │ ├── 16x16-overworld.png │ ├── 16x16-overworld.tsx │ ├── 256_base.png │ ├── 256_decor.png │ ├── 3e24cc5c-7afa-11e4-804a-9b8136693e3a.png │ ├── Grass1.jpg │ ├── Tiled Images │ │ ├── background.png │ │ ├── bush.png │ │ ├── figur.png │ │ ├── figur2.png │ │ └── midTile.png │ ├── acid-render.png │ ├── acid.tsx │ ├── acid │ │ └── acid7.png │ ├── acid0.png │ ├── acid0.tmx │ ├── acid1.png │ ├── acid2.png │ ├── acid3.png │ ├── acid4.png │ ├── acid6.png │ ├── acid8.png │ ├── anchors.tmx │ ├── control.png │ ├── control.tsx │ ├── credits.md │ ├── desert.tmx │ ├── embed_tile_image.tmx │ ├── formosa-base64.tmx │ ├── formosa.json │ ├── frnknstn.tmx │ ├── iso.tmx │ ├── mapbig.tmx │ ├── mapbig1.tmx │ ├── merrio.tmx │ ├── moon_overlay.png │ ├── pod.png │ ├── rock.jpg │ ├── sewer_tileset.png │ ├── sewers.tmx │ ├── test-house-01.png │ ├── testtrack1.tmx │ ├── tiles.png │ ├── tiles_spritesheet.png │ ├── tiles_spritesheet.tsx │ ├── tmw_desert_spacing.png │ ├── tree.png │ ├── tree1.png │ ├── wall.jpg │ └── wall.png ├── pygame_demo.py ├── pygame_sdl2_demo.py ├── pyglet_demo.py └── pysdl2_demo.py ├── docs ├── Makefile ├── conf.py ├── contents.rst ├── index.rst ├── make.bat ├── modules.rst └── requirements.txt ├── pyproject.toml ├── pytmx ├── __init__.py ├── pytmx.py ├── util_pygame.py ├── util_pygame_sdl2.py ├── util_pyglet.py └── util_pysdl2.py ├── readme.md ├── setup.py └── tests ├── __init__.py ├── pytmx ├── __init__.py └── test_pytmx.py └── resources ├── test01.tmx └── tileset.png /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CONTRIBUTE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/CONTRIBUTE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /apps/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/benchmark.py -------------------------------------------------------------------------------- /apps/data/16x16-overworld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/data/16x16-overworld.png -------------------------------------------------------------------------------- /apps/data/16x16-overworld.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/data/16x16-overworld.tsx -------------------------------------------------------------------------------- /apps/data/256_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/data/256_base.png -------------------------------------------------------------------------------- /apps/data/256_decor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/data/256_decor.png -------------------------------------------------------------------------------- /apps/data/3e24cc5c-7afa-11e4-804a-9b8136693e3a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/data/3e24cc5c-7afa-11e4-804a-9b8136693e3a.png -------------------------------------------------------------------------------- /apps/data/Grass1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/data/Grass1.jpg -------------------------------------------------------------------------------- /apps/data/Tiled Images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/data/Tiled Images/background.png -------------------------------------------------------------------------------- /apps/data/Tiled Images/bush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/data/Tiled Images/bush.png -------------------------------------------------------------------------------- /apps/data/Tiled Images/figur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/data/Tiled Images/figur.png -------------------------------------------------------------------------------- /apps/data/Tiled Images/figur2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/data/Tiled Images/figur2.png -------------------------------------------------------------------------------- /apps/data/Tiled Images/midTile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/data/Tiled Images/midTile.png -------------------------------------------------------------------------------- /apps/data/acid-render.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/data/acid-render.png -------------------------------------------------------------------------------- /apps/data/acid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/data/acid.tsx -------------------------------------------------------------------------------- /apps/data/acid/acid7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/data/acid/acid7.png -------------------------------------------------------------------------------- /apps/data/acid0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/data/acid0.png -------------------------------------------------------------------------------- /apps/data/acid0.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/data/acid0.tmx -------------------------------------------------------------------------------- /apps/data/acid1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/data/acid1.png -------------------------------------------------------------------------------- /apps/data/acid2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/data/acid2.png -------------------------------------------------------------------------------- /apps/data/acid3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/data/acid3.png -------------------------------------------------------------------------------- /apps/data/acid4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/data/acid4.png -------------------------------------------------------------------------------- /apps/data/acid6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/data/acid6.png -------------------------------------------------------------------------------- /apps/data/acid8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/data/acid8.png -------------------------------------------------------------------------------- /apps/data/anchors.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/data/anchors.tmx -------------------------------------------------------------------------------- /apps/data/control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/data/control.png -------------------------------------------------------------------------------- /apps/data/control.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/data/control.tsx -------------------------------------------------------------------------------- /apps/data/credits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/data/credits.md -------------------------------------------------------------------------------- /apps/data/desert.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/data/desert.tmx -------------------------------------------------------------------------------- /apps/data/embed_tile_image.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/data/embed_tile_image.tmx -------------------------------------------------------------------------------- /apps/data/formosa-base64.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/data/formosa-base64.tmx -------------------------------------------------------------------------------- /apps/data/formosa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/data/formosa.json -------------------------------------------------------------------------------- /apps/data/frnknstn.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/data/frnknstn.tmx -------------------------------------------------------------------------------- /apps/data/iso.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/data/iso.tmx -------------------------------------------------------------------------------- /apps/data/mapbig.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/data/mapbig.tmx -------------------------------------------------------------------------------- /apps/data/mapbig1.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/data/mapbig1.tmx -------------------------------------------------------------------------------- /apps/data/merrio.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/data/merrio.tmx -------------------------------------------------------------------------------- /apps/data/moon_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/data/moon_overlay.png -------------------------------------------------------------------------------- /apps/data/pod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/data/pod.png -------------------------------------------------------------------------------- /apps/data/rock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/data/rock.jpg -------------------------------------------------------------------------------- /apps/data/sewer_tileset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/data/sewer_tileset.png -------------------------------------------------------------------------------- /apps/data/sewers.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/data/sewers.tmx -------------------------------------------------------------------------------- /apps/data/test-house-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/data/test-house-01.png -------------------------------------------------------------------------------- /apps/data/testtrack1.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/data/testtrack1.tmx -------------------------------------------------------------------------------- /apps/data/tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/data/tiles.png -------------------------------------------------------------------------------- /apps/data/tiles_spritesheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/data/tiles_spritesheet.png -------------------------------------------------------------------------------- /apps/data/tiles_spritesheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/data/tiles_spritesheet.tsx -------------------------------------------------------------------------------- /apps/data/tmw_desert_spacing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/data/tmw_desert_spacing.png -------------------------------------------------------------------------------- /apps/data/tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/data/tree.png -------------------------------------------------------------------------------- /apps/data/tree1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/data/tree1.png -------------------------------------------------------------------------------- /apps/data/wall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/data/wall.jpg -------------------------------------------------------------------------------- /apps/data/wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/data/wall.png -------------------------------------------------------------------------------- /apps/pygame_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/pygame_demo.py -------------------------------------------------------------------------------- /apps/pygame_sdl2_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/pygame_sdl2_demo.py -------------------------------------------------------------------------------- /apps/pyglet_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/pyglet_demo.py -------------------------------------------------------------------------------- /apps/pysdl2_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/apps/pysdl2_demo.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contents.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/docs/contents.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/docs/modules.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | pygame 2 | pyglet 3 | docutils<0.18 4 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytmx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/pytmx/__init__.py -------------------------------------------------------------------------------- /pytmx/pytmx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/pytmx/pytmx.py -------------------------------------------------------------------------------- /pytmx/util_pygame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/pytmx/util_pygame.py -------------------------------------------------------------------------------- /pytmx/util_pygame_sdl2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/pytmx/util_pygame_sdl2.py -------------------------------------------------------------------------------- /pytmx/util_pyglet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/pytmx/util_pyglet.py -------------------------------------------------------------------------------- /pytmx/util_pysdl2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/pytmx/util_pysdl2.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/readme.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/pytmx/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/pytmx/test_pytmx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/tests/pytmx/test_pytmx.py -------------------------------------------------------------------------------- /tests/resources/test01.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/tests/resources/test01.tmx -------------------------------------------------------------------------------- /tests/resources/tileset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pytmx/HEAD/tests/resources/tileset.png --------------------------------------------------------------------------------