Standalone parser/loader for tilemap-editor JSON maps, sprite animations, and collision detection runtime.
Project description
tilemap-parser
Standalone parser/loader for tilemap-editor JSON maps, sprite animations, and collision detection runtime.
Features
- Map parsing: Load and query tilemaps, layers, objects, and autotile data from JSON
- Animation: Frame-based sprite animation with
AnimationPlayer - Collision (tile-based): Polygon collision detection for tilemaps with slide, platformer, and RPG movement modes via
CollisionRunner - Collision (object-to-object): Mixed-shape collision detection (rect, circle, capsule, polygon) with layer filtering via
ObjectCollisionManager - Capsule support: Full capsule collision against all shape types
- Hit helpers:
CollisionHit.resolve(),involves(),other()for ergonomic separation
Quick Start
from tilemap_parser import load_map, TileLayerRenderer
game_data = load_map("path/to/map.json")
renderer = TileLayerRenderer(game_data)
from tilemap_parser import (
CollisionRunner, CollisionCache,
ObjectCollisionManager, CircleShape, RectangleShape,
)
# Tile-based collision
cache = CollisionCache()
tileset = cache.get_tileset_collision("data/collision/tileset.collision.json")
runner = CollisionRunner.from_game_type("topdown", tile_size=(32, 32))
# Object-to-object collision
manager = ObjectCollisionManager()
manager.add_object(player)
for hit in manager.check_all_collisions():
hit.resolve() # separate both objects
Links
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
tilemap_parser-3.1.6.tar.gz
(84.8 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file tilemap_parser-3.1.6.tar.gz.
File metadata
- Download URL: tilemap_parser-3.1.6.tar.gz
- Upload date:
- Size: 84.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3791c8f88272638894de136aa50491268580a75f9990c0598adfdd631a4fea42
|
|
| MD5 |
8b227e5ce7c4e4a70e2aad9dfe1d3287
|
|
| BLAKE2b-256 |
39c739d9f45d2b20ce5d2f765b8deb1ace43bfc26d58301659f7ce2382fc10d5
|
File details
Details for the file tilemap_parser-3.1.6-py3-none-any.whl.
File metadata
- Download URL: tilemap_parser-3.1.6-py3-none-any.whl
- Upload date:
- Size: 62.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f2e3df3f8fb473fd0abbb0c9aa8020ce03a8dcdbd3e9b68a2c5a30c72bf1c269
|
|
| MD5 |
b277841e77d63050add454fa5db3fd32
|
|
| BLAKE2b-256 |
8d99b526d0662ec0234f27d036f1eaf90e1b8292d247ab819a8551d110a2c2bc
|