├── .github └── workflows │ ├── publish-to-pypi.yml │ └── test.yml ├── .gitignore ├── .readthedocs.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── docs ├── Makefile ├── api │ ├── common_types.rst │ ├── index.rst │ ├── layer.rst │ ├── map.rst │ ├── objects.rst │ ├── parser.rst │ ├── properties.rst │ ├── tileset.rst │ ├── wang_set.rst │ └── world.rst ├── conf.py ├── guide │ ├── index.rst │ └── map_loading.rst ├── index.rst └── make.bat ├── pyproject.toml ├── pytiled_parser ├── __init__.py ├── common_types.py ├── exception.py ├── layer.py ├── parser.py ├── parsers │ ├── __init__.py │ ├── json │ │ ├── __init__.py │ │ ├── layer.py │ │ ├── properties.py │ │ ├── tiled_map.py │ │ ├── tiled_object.py │ │ ├── tileset.py │ │ └── wang_set.py │ └── tmx │ │ ├── __init__.py │ │ ├── layer.py │ │ ├── properties.py │ │ ├── tiled_map.py │ │ ├── tiled_object.py │ │ ├── tileset.py │ │ └── wang_set.py ├── properties.py ├── py.typed ├── tiled_map.py ├── tiled_object.py ├── tileset.py ├── util.py ├── wang_set.py └── world.py └── tests ├── test_cross_template ├── map.json ├── map.tmx ├── template-rectangle.json ├── template-rectangle.tx ├── test_cross_template.py ├── tile_set_image_for_template.json ├── tile_set_image_for_template.tsx ├── tileset.json └── tileset.tsx ├── test_data ├── images │ ├── hexmini.png │ ├── tile_01.png │ ├── tile_02.png │ ├── tile_03.png │ ├── tile_04.png │ ├── tile_05.png │ ├── tmw_desert_spacing.png │ └── walkways.png ├── invalid_format.garbage ├── layer_tests │ ├── all_layer_types │ │ ├── expected.py │ │ ├── map.json │ │ ├── map.tmx │ │ ├── tileset.json │ │ └── tileset.tsx │ ├── b64 │ │ ├── expected.py │ │ ├── map.json │ │ ├── map.tmx │ │ ├── tileset.json │ │ └── tileset.tsx │ ├── b64_gzip │ │ ├── expected.py │ │ ├── map.json │ │ ├── map.tmx │ │ ├── tileset.json │ │ └── tileset.tsx │ ├── b64_zlib │ │ ├── expected.py │ │ ├── map.json │ │ ├── map.tmx │ │ ├── tileset.json │ │ └── tileset.tsx │ ├── b64_zstd │ │ ├── expected.py │ │ ├── map.json │ │ ├── map.tmx │ │ └── tileset.json │ ├── group_layer_order │ │ ├── expected.py │ │ ├── map.json │ │ ├── map.tmx │ │ ├── tileset.json │ │ └── tileset.tsx │ ├── infinite_map │ │ ├── expected.py │ │ ├── map.json │ │ └── map.tmx │ ├── infinite_map_b64 │ │ ├── expected.py │ │ ├── map.json │ │ └── map.tmx │ ├── no_layers │ │ ├── expected.py │ │ ├── map.json │ │ ├── map.tmx │ │ ├── tileset.json │ │ └── tileset.tsx │ └── unknown_type │ │ ├── map.json │ │ └── map.tmx ├── map_tests │ ├── cross_format_tileset │ │ ├── expected.py │ │ ├── map.json │ │ ├── map.tmx │ │ ├── tileset.json │ │ └── tileset.tsx │ ├── embedded_tileset │ │ ├── expected.py │ │ ├── map.json │ │ └── map.tmx │ ├── external_tileset_dif_dir │ │ ├── expected.py │ │ ├── map.json │ │ ├── map.tmx │ │ └── tileset │ │ │ ├── tileset.json │ │ │ └── tileset.tsx │ ├── hexagonal │ │ ├── expected.py │ │ ├── map.json │ │ ├── map.tmx │ │ ├── tileset.json │ │ └── tileset.tsx │ ├── json_invalid_tileset │ │ ├── map.json │ │ └── tileset.garbage │ ├── no_background_color │ │ ├── expected.py │ │ ├── map.json │ │ ├── map.tmx │ │ ├── tileset.json │ │ └── tileset.tsx │ ├── no_layers │ │ ├── expected.py │ │ ├── map.json │ │ ├── map.tmx │ │ ├── tileset.json │ │ └── tileset.tsx │ ├── special_do_not_resave_from_tiled │ │ ├── expected.py │ │ ├── map.json │ │ ├── map.tmx │ │ ├── tileset.json │ │ └── tileset.tsx │ └── template │ │ ├── expected.py │ │ ├── map.json │ │ ├── map.tmx │ │ ├── template-rectangle.json │ │ ├── template-rectangle.tx │ │ ├── template-tile-image.json │ │ ├── template-tile-image.tx │ │ ├── template-tile-spritesheet.json │ │ ├── template-tile-spritesheet.tx │ │ ├── tile_set_image_for_template.json │ │ ├── tile_set_image_for_template.tsx │ │ ├── tile_set_single_image.json │ │ ├── tile_set_single_image.tsx │ │ ├── tileset.json │ │ └── tileset.tsx ├── tests.tiled-project ├── tilesets │ ├── image │ │ ├── expected.py │ │ ├── tileset.json │ │ └── tileset.tsx │ ├── image_background_color │ │ ├── expected.py │ │ ├── tileset.json │ │ └── tileset.tsx │ ├── image_grid │ │ ├── expected.py │ │ ├── tileset.json │ │ └── tileset.tsx │ ├── image_properties │ │ ├── expected.py │ │ ├── tileset.json │ │ └── tileset.tsx │ ├── image_tile_offset │ │ ├── expected.py │ │ ├── tileset.json │ │ └── tileset.tsx │ ├── image_transformations │ │ ├── expected.py │ │ ├── tileset.json │ │ └── tileset.tsx │ ├── image_transparent_color │ │ ├── expected.py │ │ ├── tileset.json │ │ └── tileset.tsx │ ├── individual_images │ │ ├── expected.py │ │ ├── tileset.json │ │ └── tileset.tsx │ └── terrain │ │ ├── expected.py │ │ ├── tileset.json │ │ └── tileset.tsx └── world_tests │ ├── both │ ├── expected.py │ ├── map_manual_one.json │ ├── map_p0-n0.json │ ├── map_p0-n1.json │ ├── tileset.json │ └── world.world │ ├── pattern_matched │ ├── expected.py │ ├── map_p0-n0.json │ ├── map_p0-n1.json │ ├── tileset.json │ └── world.world │ └── static_defined │ ├── expected.py │ ├── map_01.json │ ├── map_02.json │ ├── tileset.json │ └── world.world ├── test_invalid_format.py ├── test_layer.py ├── test_map.py ├── test_parse_color.py ├── test_tiled_object_json.py ├── test_tiled_object_tmx.py ├── test_tileset.py └── test_world.py /.github/workflows/publish-to-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/.github/workflows/publish-to-pypi.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/api/common_types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/docs/api/common_types.rst -------------------------------------------------------------------------------- /docs/api/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/docs/api/index.rst -------------------------------------------------------------------------------- /docs/api/layer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/docs/api/layer.rst -------------------------------------------------------------------------------- /docs/api/map.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/docs/api/map.rst -------------------------------------------------------------------------------- /docs/api/objects.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/docs/api/objects.rst -------------------------------------------------------------------------------- /docs/api/parser.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/docs/api/parser.rst -------------------------------------------------------------------------------- /docs/api/properties.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/docs/api/properties.rst -------------------------------------------------------------------------------- /docs/api/tileset.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/docs/api/tileset.rst -------------------------------------------------------------------------------- /docs/api/wang_set.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/docs/api/wang_set.rst -------------------------------------------------------------------------------- /docs/api/world.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/docs/api/world.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/guide/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/docs/guide/index.rst -------------------------------------------------------------------------------- /docs/guide/map_loading.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/docs/guide/map_loading.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/docs/make.bat -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytiled_parser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/pytiled_parser/__init__.py -------------------------------------------------------------------------------- /pytiled_parser/common_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/pytiled_parser/common_types.py -------------------------------------------------------------------------------- /pytiled_parser/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/pytiled_parser/exception.py -------------------------------------------------------------------------------- /pytiled_parser/layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/pytiled_parser/layer.py -------------------------------------------------------------------------------- /pytiled_parser/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/pytiled_parser/parser.py -------------------------------------------------------------------------------- /pytiled_parser/parsers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytiled_parser/parsers/json/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytiled_parser/parsers/json/layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/pytiled_parser/parsers/json/layer.py -------------------------------------------------------------------------------- /pytiled_parser/parsers/json/properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/pytiled_parser/parsers/json/properties.py -------------------------------------------------------------------------------- /pytiled_parser/parsers/json/tiled_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/pytiled_parser/parsers/json/tiled_map.py -------------------------------------------------------------------------------- /pytiled_parser/parsers/json/tiled_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/pytiled_parser/parsers/json/tiled_object.py -------------------------------------------------------------------------------- /pytiled_parser/parsers/json/tileset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/pytiled_parser/parsers/json/tileset.py -------------------------------------------------------------------------------- /pytiled_parser/parsers/json/wang_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/pytiled_parser/parsers/json/wang_set.py -------------------------------------------------------------------------------- /pytiled_parser/parsers/tmx/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytiled_parser/parsers/tmx/layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/pytiled_parser/parsers/tmx/layer.py -------------------------------------------------------------------------------- /pytiled_parser/parsers/tmx/properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/pytiled_parser/parsers/tmx/properties.py -------------------------------------------------------------------------------- /pytiled_parser/parsers/tmx/tiled_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/pytiled_parser/parsers/tmx/tiled_map.py -------------------------------------------------------------------------------- /pytiled_parser/parsers/tmx/tiled_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/pytiled_parser/parsers/tmx/tiled_object.py -------------------------------------------------------------------------------- /pytiled_parser/parsers/tmx/tileset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/pytiled_parser/parsers/tmx/tileset.py -------------------------------------------------------------------------------- /pytiled_parser/parsers/tmx/wang_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/pytiled_parser/parsers/tmx/wang_set.py -------------------------------------------------------------------------------- /pytiled_parser/properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/pytiled_parser/properties.py -------------------------------------------------------------------------------- /pytiled_parser/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytiled_parser/tiled_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/pytiled_parser/tiled_map.py -------------------------------------------------------------------------------- /pytiled_parser/tiled_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/pytiled_parser/tiled_object.py -------------------------------------------------------------------------------- /pytiled_parser/tileset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/pytiled_parser/tileset.py -------------------------------------------------------------------------------- /pytiled_parser/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/pytiled_parser/util.py -------------------------------------------------------------------------------- /pytiled_parser/wang_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/pytiled_parser/wang_set.py -------------------------------------------------------------------------------- /pytiled_parser/world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/pytiled_parser/world.py -------------------------------------------------------------------------------- /tests/test_cross_template/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_cross_template/map.json -------------------------------------------------------------------------------- /tests/test_cross_template/map.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_cross_template/map.tmx -------------------------------------------------------------------------------- /tests/test_cross_template/template-rectangle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_cross_template/template-rectangle.json -------------------------------------------------------------------------------- /tests/test_cross_template/template-rectangle.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_cross_template/template-rectangle.tx -------------------------------------------------------------------------------- /tests/test_cross_template/test_cross_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_cross_template/test_cross_template.py -------------------------------------------------------------------------------- /tests/test_cross_template/tile_set_image_for_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_cross_template/tile_set_image_for_template.json -------------------------------------------------------------------------------- /tests/test_cross_template/tile_set_image_for_template.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_cross_template/tile_set_image_for_template.tsx -------------------------------------------------------------------------------- /tests/test_cross_template/tileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_cross_template/tileset.json -------------------------------------------------------------------------------- /tests/test_cross_template/tileset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_cross_template/tileset.tsx -------------------------------------------------------------------------------- /tests/test_data/images/hexmini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/images/hexmini.png -------------------------------------------------------------------------------- /tests/test_data/images/tile_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/images/tile_01.png -------------------------------------------------------------------------------- /tests/test_data/images/tile_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/images/tile_02.png -------------------------------------------------------------------------------- /tests/test_data/images/tile_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/images/tile_03.png -------------------------------------------------------------------------------- /tests/test_data/images/tile_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/images/tile_04.png -------------------------------------------------------------------------------- /tests/test_data/images/tile_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/images/tile_05.png -------------------------------------------------------------------------------- /tests/test_data/images/tmw_desert_spacing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/images/tmw_desert_spacing.png -------------------------------------------------------------------------------- /tests/test_data/images/walkways.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/images/walkways.png -------------------------------------------------------------------------------- /tests/test_data/invalid_format.garbage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/invalid_format.garbage -------------------------------------------------------------------------------- /tests/test_data/layer_tests/all_layer_types/expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/layer_tests/all_layer_types/expected.py -------------------------------------------------------------------------------- /tests/test_data/layer_tests/all_layer_types/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/layer_tests/all_layer_types/map.json -------------------------------------------------------------------------------- /tests/test_data/layer_tests/all_layer_types/map.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/layer_tests/all_layer_types/map.tmx -------------------------------------------------------------------------------- /tests/test_data/layer_tests/all_layer_types/tileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/layer_tests/all_layer_types/tileset.json -------------------------------------------------------------------------------- /tests/test_data/layer_tests/all_layer_types/tileset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/layer_tests/all_layer_types/tileset.tsx -------------------------------------------------------------------------------- /tests/test_data/layer_tests/b64/expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/layer_tests/b64/expected.py -------------------------------------------------------------------------------- /tests/test_data/layer_tests/b64/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/layer_tests/b64/map.json -------------------------------------------------------------------------------- /tests/test_data/layer_tests/b64/map.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/layer_tests/b64/map.tmx -------------------------------------------------------------------------------- /tests/test_data/layer_tests/b64/tileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/layer_tests/b64/tileset.json -------------------------------------------------------------------------------- /tests/test_data/layer_tests/b64/tileset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/layer_tests/b64/tileset.tsx -------------------------------------------------------------------------------- /tests/test_data/layer_tests/b64_gzip/expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/layer_tests/b64_gzip/expected.py -------------------------------------------------------------------------------- /tests/test_data/layer_tests/b64_gzip/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/layer_tests/b64_gzip/map.json -------------------------------------------------------------------------------- /tests/test_data/layer_tests/b64_gzip/map.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/layer_tests/b64_gzip/map.tmx -------------------------------------------------------------------------------- /tests/test_data/layer_tests/b64_gzip/tileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/layer_tests/b64_gzip/tileset.json -------------------------------------------------------------------------------- /tests/test_data/layer_tests/b64_gzip/tileset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/layer_tests/b64_gzip/tileset.tsx -------------------------------------------------------------------------------- /tests/test_data/layer_tests/b64_zlib/expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/layer_tests/b64_zlib/expected.py -------------------------------------------------------------------------------- /tests/test_data/layer_tests/b64_zlib/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/layer_tests/b64_zlib/map.json -------------------------------------------------------------------------------- /tests/test_data/layer_tests/b64_zlib/map.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/layer_tests/b64_zlib/map.tmx -------------------------------------------------------------------------------- /tests/test_data/layer_tests/b64_zlib/tileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/layer_tests/b64_zlib/tileset.json -------------------------------------------------------------------------------- /tests/test_data/layer_tests/b64_zlib/tileset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/layer_tests/b64_zlib/tileset.tsx -------------------------------------------------------------------------------- /tests/test_data/layer_tests/b64_zstd/expected.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_data/layer_tests/b64_zstd/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/layer_tests/b64_zstd/map.json -------------------------------------------------------------------------------- /tests/test_data/layer_tests/b64_zstd/map.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/layer_tests/b64_zstd/map.tmx -------------------------------------------------------------------------------- /tests/test_data/layer_tests/b64_zstd/tileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/layer_tests/b64_zstd/tileset.json -------------------------------------------------------------------------------- /tests/test_data/layer_tests/group_layer_order/expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/layer_tests/group_layer_order/expected.py -------------------------------------------------------------------------------- /tests/test_data/layer_tests/group_layer_order/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/layer_tests/group_layer_order/map.json -------------------------------------------------------------------------------- /tests/test_data/layer_tests/group_layer_order/map.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/layer_tests/group_layer_order/map.tmx -------------------------------------------------------------------------------- /tests/test_data/layer_tests/group_layer_order/tileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/layer_tests/group_layer_order/tileset.json -------------------------------------------------------------------------------- /tests/test_data/layer_tests/group_layer_order/tileset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/layer_tests/group_layer_order/tileset.tsx -------------------------------------------------------------------------------- /tests/test_data/layer_tests/infinite_map/expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/layer_tests/infinite_map/expected.py -------------------------------------------------------------------------------- /tests/test_data/layer_tests/infinite_map/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/layer_tests/infinite_map/map.json -------------------------------------------------------------------------------- /tests/test_data/layer_tests/infinite_map/map.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/layer_tests/infinite_map/map.tmx -------------------------------------------------------------------------------- /tests/test_data/layer_tests/infinite_map_b64/expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/layer_tests/infinite_map_b64/expected.py -------------------------------------------------------------------------------- /tests/test_data/layer_tests/infinite_map_b64/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/layer_tests/infinite_map_b64/map.json -------------------------------------------------------------------------------- /tests/test_data/layer_tests/infinite_map_b64/map.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/layer_tests/infinite_map_b64/map.tmx -------------------------------------------------------------------------------- /tests/test_data/layer_tests/no_layers/expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/layer_tests/no_layers/expected.py -------------------------------------------------------------------------------- /tests/test_data/layer_tests/no_layers/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/layer_tests/no_layers/map.json -------------------------------------------------------------------------------- /tests/test_data/layer_tests/no_layers/map.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/layer_tests/no_layers/map.tmx -------------------------------------------------------------------------------- /tests/test_data/layer_tests/no_layers/tileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/layer_tests/no_layers/tileset.json -------------------------------------------------------------------------------- /tests/test_data/layer_tests/no_layers/tileset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/layer_tests/no_layers/tileset.tsx -------------------------------------------------------------------------------- /tests/test_data/layer_tests/unknown_type/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/layer_tests/unknown_type/map.json -------------------------------------------------------------------------------- /tests/test_data/layer_tests/unknown_type/map.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/layer_tests/unknown_type/map.tmx -------------------------------------------------------------------------------- /tests/test_data/map_tests/cross_format_tileset/expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/map_tests/cross_format_tileset/expected.py -------------------------------------------------------------------------------- /tests/test_data/map_tests/cross_format_tileset/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/map_tests/cross_format_tileset/map.json -------------------------------------------------------------------------------- /tests/test_data/map_tests/cross_format_tileset/map.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/map_tests/cross_format_tileset/map.tmx -------------------------------------------------------------------------------- /tests/test_data/map_tests/cross_format_tileset/tileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/map_tests/cross_format_tileset/tileset.json -------------------------------------------------------------------------------- /tests/test_data/map_tests/cross_format_tileset/tileset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/map_tests/cross_format_tileset/tileset.tsx -------------------------------------------------------------------------------- /tests/test_data/map_tests/embedded_tileset/expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/map_tests/embedded_tileset/expected.py -------------------------------------------------------------------------------- /tests/test_data/map_tests/embedded_tileset/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/map_tests/embedded_tileset/map.json -------------------------------------------------------------------------------- /tests/test_data/map_tests/embedded_tileset/map.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/map_tests/embedded_tileset/map.tmx -------------------------------------------------------------------------------- /tests/test_data/map_tests/external_tileset_dif_dir/expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/map_tests/external_tileset_dif_dir/expected.py -------------------------------------------------------------------------------- /tests/test_data/map_tests/external_tileset_dif_dir/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/map_tests/external_tileset_dif_dir/map.json -------------------------------------------------------------------------------- /tests/test_data/map_tests/external_tileset_dif_dir/map.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/map_tests/external_tileset_dif_dir/map.tmx -------------------------------------------------------------------------------- /tests/test_data/map_tests/external_tileset_dif_dir/tileset/tileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/map_tests/external_tileset_dif_dir/tileset/tileset.json -------------------------------------------------------------------------------- /tests/test_data/map_tests/external_tileset_dif_dir/tileset/tileset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/map_tests/external_tileset_dif_dir/tileset/tileset.tsx -------------------------------------------------------------------------------- /tests/test_data/map_tests/hexagonal/expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/map_tests/hexagonal/expected.py -------------------------------------------------------------------------------- /tests/test_data/map_tests/hexagonal/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/map_tests/hexagonal/map.json -------------------------------------------------------------------------------- /tests/test_data/map_tests/hexagonal/map.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/map_tests/hexagonal/map.tmx -------------------------------------------------------------------------------- /tests/test_data/map_tests/hexagonal/tileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/map_tests/hexagonal/tileset.json -------------------------------------------------------------------------------- /tests/test_data/map_tests/hexagonal/tileset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/map_tests/hexagonal/tileset.tsx -------------------------------------------------------------------------------- /tests/test_data/map_tests/json_invalid_tileset/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/map_tests/json_invalid_tileset/map.json -------------------------------------------------------------------------------- /tests/test_data/map_tests/json_invalid_tileset/tileset.garbage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/map_tests/json_invalid_tileset/tileset.garbage -------------------------------------------------------------------------------- /tests/test_data/map_tests/no_background_color/expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/map_tests/no_background_color/expected.py -------------------------------------------------------------------------------- /tests/test_data/map_tests/no_background_color/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/map_tests/no_background_color/map.json -------------------------------------------------------------------------------- /tests/test_data/map_tests/no_background_color/map.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/map_tests/no_background_color/map.tmx -------------------------------------------------------------------------------- /tests/test_data/map_tests/no_background_color/tileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/map_tests/no_background_color/tileset.json -------------------------------------------------------------------------------- /tests/test_data/map_tests/no_background_color/tileset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/map_tests/no_background_color/tileset.tsx -------------------------------------------------------------------------------- /tests/test_data/map_tests/no_layers/expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/map_tests/no_layers/expected.py -------------------------------------------------------------------------------- /tests/test_data/map_tests/no_layers/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/map_tests/no_layers/map.json -------------------------------------------------------------------------------- /tests/test_data/map_tests/no_layers/map.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/map_tests/no_layers/map.tmx -------------------------------------------------------------------------------- /tests/test_data/map_tests/no_layers/tileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/map_tests/no_layers/tileset.json -------------------------------------------------------------------------------- /tests/test_data/map_tests/no_layers/tileset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/map_tests/no_layers/tileset.tsx -------------------------------------------------------------------------------- /tests/test_data/map_tests/special_do_not_resave_from_tiled/expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/map_tests/special_do_not_resave_from_tiled/expected.py -------------------------------------------------------------------------------- /tests/test_data/map_tests/special_do_not_resave_from_tiled/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/map_tests/special_do_not_resave_from_tiled/map.json -------------------------------------------------------------------------------- /tests/test_data/map_tests/special_do_not_resave_from_tiled/map.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/map_tests/special_do_not_resave_from_tiled/map.tmx -------------------------------------------------------------------------------- /tests/test_data/map_tests/special_do_not_resave_from_tiled/tileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/map_tests/special_do_not_resave_from_tiled/tileset.json -------------------------------------------------------------------------------- /tests/test_data/map_tests/special_do_not_resave_from_tiled/tileset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/map_tests/special_do_not_resave_from_tiled/tileset.tsx -------------------------------------------------------------------------------- /tests/test_data/map_tests/template/expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/map_tests/template/expected.py -------------------------------------------------------------------------------- /tests/test_data/map_tests/template/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/map_tests/template/map.json -------------------------------------------------------------------------------- /tests/test_data/map_tests/template/map.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/map_tests/template/map.tmx -------------------------------------------------------------------------------- /tests/test_data/map_tests/template/template-rectangle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/map_tests/template/template-rectangle.json -------------------------------------------------------------------------------- /tests/test_data/map_tests/template/template-rectangle.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/map_tests/template/template-rectangle.tx -------------------------------------------------------------------------------- /tests/test_data/map_tests/template/template-tile-image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/map_tests/template/template-tile-image.json -------------------------------------------------------------------------------- /tests/test_data/map_tests/template/template-tile-image.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/map_tests/template/template-tile-image.tx -------------------------------------------------------------------------------- /tests/test_data/map_tests/template/template-tile-spritesheet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/map_tests/template/template-tile-spritesheet.json -------------------------------------------------------------------------------- /tests/test_data/map_tests/template/template-tile-spritesheet.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/map_tests/template/template-tile-spritesheet.tx -------------------------------------------------------------------------------- /tests/test_data/map_tests/template/tile_set_image_for_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/map_tests/template/tile_set_image_for_template.json -------------------------------------------------------------------------------- /tests/test_data/map_tests/template/tile_set_image_for_template.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/map_tests/template/tile_set_image_for_template.tsx -------------------------------------------------------------------------------- /tests/test_data/map_tests/template/tile_set_single_image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/map_tests/template/tile_set_single_image.json -------------------------------------------------------------------------------- /tests/test_data/map_tests/template/tile_set_single_image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/map_tests/template/tile_set_single_image.tsx -------------------------------------------------------------------------------- /tests/test_data/map_tests/template/tileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/map_tests/template/tileset.json -------------------------------------------------------------------------------- /tests/test_data/map_tests/template/tileset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/map_tests/template/tileset.tsx -------------------------------------------------------------------------------- /tests/test_data/tests.tiled-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/tests.tiled-project -------------------------------------------------------------------------------- /tests/test_data/tilesets/image/expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/tilesets/image/expected.py -------------------------------------------------------------------------------- /tests/test_data/tilesets/image/tileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/tilesets/image/tileset.json -------------------------------------------------------------------------------- /tests/test_data/tilesets/image/tileset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/tilesets/image/tileset.tsx -------------------------------------------------------------------------------- /tests/test_data/tilesets/image_background_color/expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/tilesets/image_background_color/expected.py -------------------------------------------------------------------------------- /tests/test_data/tilesets/image_background_color/tileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/tilesets/image_background_color/tileset.json -------------------------------------------------------------------------------- /tests/test_data/tilesets/image_background_color/tileset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/tilesets/image_background_color/tileset.tsx -------------------------------------------------------------------------------- /tests/test_data/tilesets/image_grid/expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/tilesets/image_grid/expected.py -------------------------------------------------------------------------------- /tests/test_data/tilesets/image_grid/tileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/tilesets/image_grid/tileset.json -------------------------------------------------------------------------------- /tests/test_data/tilesets/image_grid/tileset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/tilesets/image_grid/tileset.tsx -------------------------------------------------------------------------------- /tests/test_data/tilesets/image_properties/expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/tilesets/image_properties/expected.py -------------------------------------------------------------------------------- /tests/test_data/tilesets/image_properties/tileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/tilesets/image_properties/tileset.json -------------------------------------------------------------------------------- /tests/test_data/tilesets/image_properties/tileset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/tilesets/image_properties/tileset.tsx -------------------------------------------------------------------------------- /tests/test_data/tilesets/image_tile_offset/expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/tilesets/image_tile_offset/expected.py -------------------------------------------------------------------------------- /tests/test_data/tilesets/image_tile_offset/tileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/tilesets/image_tile_offset/tileset.json -------------------------------------------------------------------------------- /tests/test_data/tilesets/image_tile_offset/tileset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/tilesets/image_tile_offset/tileset.tsx -------------------------------------------------------------------------------- /tests/test_data/tilesets/image_transformations/expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/tilesets/image_transformations/expected.py -------------------------------------------------------------------------------- /tests/test_data/tilesets/image_transformations/tileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/tilesets/image_transformations/tileset.json -------------------------------------------------------------------------------- /tests/test_data/tilesets/image_transformations/tileset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/tilesets/image_transformations/tileset.tsx -------------------------------------------------------------------------------- /tests/test_data/tilesets/image_transparent_color/expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/tilesets/image_transparent_color/expected.py -------------------------------------------------------------------------------- /tests/test_data/tilesets/image_transparent_color/tileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/tilesets/image_transparent_color/tileset.json -------------------------------------------------------------------------------- /tests/test_data/tilesets/image_transparent_color/tileset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/tilesets/image_transparent_color/tileset.tsx -------------------------------------------------------------------------------- /tests/test_data/tilesets/individual_images/expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/tilesets/individual_images/expected.py -------------------------------------------------------------------------------- /tests/test_data/tilesets/individual_images/tileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/tilesets/individual_images/tileset.json -------------------------------------------------------------------------------- /tests/test_data/tilesets/individual_images/tileset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/tilesets/individual_images/tileset.tsx -------------------------------------------------------------------------------- /tests/test_data/tilesets/terrain/expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/tilesets/terrain/expected.py -------------------------------------------------------------------------------- /tests/test_data/tilesets/terrain/tileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/tilesets/terrain/tileset.json -------------------------------------------------------------------------------- /tests/test_data/tilesets/terrain/tileset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/tilesets/terrain/tileset.tsx -------------------------------------------------------------------------------- /tests/test_data/world_tests/both/expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/world_tests/both/expected.py -------------------------------------------------------------------------------- /tests/test_data/world_tests/both/map_manual_one.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/world_tests/both/map_manual_one.json -------------------------------------------------------------------------------- /tests/test_data/world_tests/both/map_p0-n0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/world_tests/both/map_p0-n0.json -------------------------------------------------------------------------------- /tests/test_data/world_tests/both/map_p0-n1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/world_tests/both/map_p0-n1.json -------------------------------------------------------------------------------- /tests/test_data/world_tests/both/tileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/world_tests/both/tileset.json -------------------------------------------------------------------------------- /tests/test_data/world_tests/both/world.world: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/world_tests/both/world.world -------------------------------------------------------------------------------- /tests/test_data/world_tests/pattern_matched/expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/world_tests/pattern_matched/expected.py -------------------------------------------------------------------------------- /tests/test_data/world_tests/pattern_matched/map_p0-n0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/world_tests/pattern_matched/map_p0-n0.json -------------------------------------------------------------------------------- /tests/test_data/world_tests/pattern_matched/map_p0-n1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/world_tests/pattern_matched/map_p0-n1.json -------------------------------------------------------------------------------- /tests/test_data/world_tests/pattern_matched/tileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/world_tests/pattern_matched/tileset.json -------------------------------------------------------------------------------- /tests/test_data/world_tests/pattern_matched/world.world: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/world_tests/pattern_matched/world.world -------------------------------------------------------------------------------- /tests/test_data/world_tests/static_defined/expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/world_tests/static_defined/expected.py -------------------------------------------------------------------------------- /tests/test_data/world_tests/static_defined/map_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/world_tests/static_defined/map_01.json -------------------------------------------------------------------------------- /tests/test_data/world_tests/static_defined/map_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/world_tests/static_defined/map_02.json -------------------------------------------------------------------------------- /tests/test_data/world_tests/static_defined/tileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/world_tests/static_defined/tileset.json -------------------------------------------------------------------------------- /tests/test_data/world_tests/static_defined/world.world: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_data/world_tests/static_defined/world.world -------------------------------------------------------------------------------- /tests/test_invalid_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_invalid_format.py -------------------------------------------------------------------------------- /tests/test_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_layer.py -------------------------------------------------------------------------------- /tests/test_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_map.py -------------------------------------------------------------------------------- /tests/test_parse_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_parse_color.py -------------------------------------------------------------------------------- /tests/test_tiled_object_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_tiled_object_json.py -------------------------------------------------------------------------------- /tests/test_tiled_object_tmx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_tiled_object_tmx.py -------------------------------------------------------------------------------- /tests/test_tileset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_tileset.py -------------------------------------------------------------------------------- /tests/test_world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonarcade/pytiled_parser/HEAD/tests/test_world.py --------------------------------------------------------------------------------