- Edited
Hello all,
I am looking for a suitable engine for a 2D game with massive tilemap (up to 20,000x20,000 tiles, each 4x4 pixels) that needs constant updates through a cellular-automata-like system. This might get compute-intensive, so it's good to distribute the load, but I can spread it over time to the certain degree only. (While I could make chunks of the map and update next chunk each frame in a alternating manner, it must be ready for immediate rendering and interaction as a whole.)
I’ve been testing Godot 4 but encountered some limitations:
- Modifying the TileMapLayer from a thread seems impossible or challenging.
- The autotile feature requires the entire map to be present, making chunking and loading from the hard drive unfeasible. (If we slice the map, the edges obviously aren't autotiled.)
I imagine similar challenges arise in multiplayer worlds where the tilemap needs constant background updates based on remote instances.
What are my options for achieving this in Godot?
Are there any recommended solutions or design patterns for updating large tilemaps constantly?
(Any examples, documentation, or articles would be very appreciated.)
Thank you for your help in advance!