lonelighters / Procmap

Procedural map generation
0 stars 0 forks source link

Dungeon crawler map (2d) #2

Open lonelighters opened 1 year ago

lonelighters commented 1 year ago

This project is trying to provide a procedural map generator for use in the dungeons & dragons role playing game as a resource for the GM. The minimum viable product is a 2D map generator that autoplaces rooms and paths that link the rooms together along with walls surrounding to signify impassable terrain.

lonelighters commented 1 year ago

2D map Walls enclosing path Path must be contiguous (no inaccessible rooms/paths) Rooms must not be contiguous (there must be a path separation of at least 2 blocks between rooms) Must have variable amount of variable size rooms (user input)

Generate button to quickly remake maps

Map is defined by an integer array, 1's signify paths, 0's signify walls Image

Must have an entrance at edge of map and a defined number of exits (0 must be possible)