does anyone know of any neat articles on procedural dungeon generation?
i have some ideas, but i wanna see what else is out there before diving into it!
@ulvra oh yeah! i would definitely go recursive in clojure, though cl's spec doesn't actually specify tail call optimization
the implementation i'm using has it, but i'm not sure i wanna use things that aren't in the actual language
for general dungeon generation, drunken walk seems like a decent starting point–iirc, the original rogue always had set rooms, but with random paths connecting them. i also think mystery dungeon used random shapes, and connected those
there's lots of approaches..!
@thingywott
Aye definitely. I wouldn't mind playing around with it myself one day, but a bit too rusty at the moment. Maybe someday.
Regardless, good luck getting it working. :)
@thingywott
Of course. ❤ ^-^
@thingywott
I do not have any articles, but if I had to take on the task, my instinct would be to try for recursive programming to formulate the layout. Might be worth it to look at, I thought I'd at least suggest it.