Right now, I'm making Dungeon Master like game. The game have to be more sword-and-magic-related than Legends of Grimrock; something like Corridor Wizardry 8. I'm going to make some decent graphic look so I'm thinking about the right cell system algorithm.
First I was thinking about BSP. I get some info from these links
- Simple example of BSP dungeon generation
- http://roguebasin.roguelikedevelopment.org/index.php?title=Basic_BSP_Dungeon_generation
but I don't know. BSP in its basic form is useful only for 2D-rogue-like dungeons.
I'm using C# XNA so I'm thinking about my own system defining cell by cell in xml, first their positions in space (making some tunnel-map system), then all of their details such as textures. But then, I'm afraid of placing "mapfile" generated objects like torches on the walls, treasure boxes, secret buttons, traps another items etc.
I want to know, which way should be the best to fulfill my in-game requirements and I don't want to spend months by exploring BSP and then choose another way.