Temple of The Roguelike Forums

Development => Programming => Topic started by: Etinarg on October 20, 2009, 08:03:33 AM

Title: Puzzles in a randomly generated dungeon
Post by: Etinarg on October 20, 2009, 08:03:33 AM
I'd like to start a brainstorming session about puzzles in randomly generated dungeons. What kinds of puzzles could there be? And how would the engine make sure they can be solved?

A classic seems to the the locked chest/door puzzle, that requires a key. It seems trivial first, the dungeon generator only needs to place the key in a part of the dungeon that is reachable for the player from the location where the door is (e.g. not behind the door). But this already looks very tricky on a second sight ... how to procedurally check "not behind the door", and what if a pack of nasty monsters makes the key inaccessible although the dungeon layout would allow the player to reach it?

What other kinds of puzzles can you imagine for a dungeon based game?
Title: Re: Puzzles in a randomly generated dungeon
Post by: NON on October 20, 2009, 10:30:13 AM
Quote
how to procedurally check "not behind the door"

Why not just this?

Pseudo code:

while (ok==false)
   {
   <place key in random cell>

   <use pathfinder from room entrance to key, with locked door as forbidden cell>

   if (path exists)
      ok = true
   else
      <delete key>
   }

I use this and it works well - if I have counter for how many times it tried to replace the key.
If more than x amount of tries - screw it, no puzzle, unlock the door.

Edit: Or you could do some sort of flood fill from the room entrance, that does not move past the locked door. Then mark those grid cells as true in a Boolean array and make random x & y-coordinates for the key until in an okay grid cell. Probably much faster.

Title: Re: Puzzles in a randomly generated dungeon
Post by: purestrain on October 20, 2009, 10:40:40 AM
Actually it is trivial if you have some sort of hierarchie in your dungeon generation process. My dungeons are usually generated as simple graphs in which i place a key in a branch and search for another branch which does not include rooms of the first one (just example).

Currently i can imagine only variations of the key/door puzzle.

- get a key and unlock door/chest (maybe recursive)

- kill a monster and unlock door/chest (could be fun if the monster tries to avoid you and you have to trap it.... placing a trap and hunting it into it)

- follow a given path (e.g. 2 pillars and move in a eight around them)

- two platforms which must be "pushed" (you either move a rock on one, and step on the other... or move rocks/bodies on both of them; throw a object on a platform far away)

- entering rooms in the right direction (example1: treasure will be unlocked if you move in each door counter clockwise, and each door has a sign Example2: "Follow the moon" and each door has a half moon, new moon, full moon whatever)

- put on some items.. ("only a king may pass", so you have to wear a crown)

- turn off / on all torches in a room to see a hidden entrance ("only the darkness tells the truth")

- give a skelleton king on his throne his equipment back and the throne moves away

- reorder some objects in a room (e.g. you see a pattern and a single piece is missing)

- digging at a certain area marked by a pattern (a shiny light at certain times, a cross....)

- you could only pass a bridge with a certain maximum weight (after the first bridgecell the games says: "you feel like any further movement will break the bridge"

- making no noise... would require that your armour/equipment makes noise and the player knows it

..... well, roguelikes are fairly limited; you can't use mirrors to "guide" the light and so on.

Edit:
am i the only one who really hates "try randomly and discard after x tries" - approaches?

Edit2:
minor enhancements and explanations
Title: Re: Puzzles in a randomly generated dungeon
Post by: NON on October 20, 2009, 10:52:32 AM

Quote
am i the only one who really hates "try randomly and discard after x tries" - approaches?

Well it's a bit dumb, but it works...  :(
Especially if a couple of thousand tries takes 0.1 seconds.
Title: Re: Puzzles in a randomly generated dungeon
Post by: Rya.Reisender on October 20, 2009, 11:59:54 AM
Can random generated puzzles really be interesting and challenging?

I'd rather have a list of 100+ possible puzzle rooms that are randomly placed.
Title: Re: Puzzles in a randomly generated dungeon
Post by: Etinarg on October 20, 2009, 12:05:27 PM
Can random generated puzzles really be interesting and challenging?

I'd rather have a list of 100+ possible puzzle rooms that are randomly placed.

That's sure an options and included in the idea of puzzles in a randomly generated dungeon. At least I used this approach in two of my projects - but the player learns the rooms quickly and from that point it's boring again. I must admit though, I didn't make 100 rooms, but rather like 20.

To answer the question: I think they can. Roguelikes randomize a lot of things already, like scroll texts or potion colors for each new game. Some have random artifacts in each new game. I'd say randomly generated puzzles work about as well.

What kind of puzzles would you put in those 100 rooms?

@NON: The floodfill idea works. It's just tricky sometimes to decide weather a door should block the fill ... but if one plays safe, it will always work, just place the key sometimes too close to the origin of the fill. It's not a problem, though.

@Purestrain: Thats a nice list of puzzles already :) maybe we can find a few non trivial puzzles that are actually fun when randomized.
Title: Re: Puzzles in a randomly generated dungeon
Post by: Fenrir on October 20, 2009, 12:43:47 PM
..... well, roguelikes are fairly limited; you can't use mirrors to "guide" the light and so on.
Why not? Use ray-casting.
Title: Re: Puzzles in a randomly generated dungeon
Post by: Rabiat on October 20, 2009, 02:16:33 PM
I'm no NetHack fan, but I played it a few times long ago, and came across a puzzle which I liked a lot.

In a branch off the main dungeon, there are some small levels that consist of floor tiles, pits, and boulders. Effectively it's an ASCII version of Sokoban. The only way to reach the down stairs is to push every boulder into a pit. If you solve four levels, there's some reward.

I believe these levels were hardcoded, and one out of several variations would be randomly picked for each level. Generating random solvable Sokoban levels with controlled difficulty could be interesting, in a 'head explodes' kind of way.


Edit: another one is ChessRogue. I've never played it, but restricting (N)PC movement (like chess pieces) looks like a brilliant idea for emergent difficulty. And as far as I can imagine it can be done on freely generated levels, without a need for pathfinding or your memory regurgitating all kinds of NP-completeness.
Title: Re: Puzzles in a randomly generated dungeon
Post by: Etinarg on October 20, 2009, 02:23:28 PM
It's a challenge for sure. A nice idea also. Now I must search the web for algorithms of procedurally generation solvable sokoban puzzles :P

Google points to a few documents that but I had no time yet to read through them all. Sokoban seems to be one of the harder problems for automated solving, but still many of the "hard" problems are easy to generate in a way that makes sure that the results are solvable.
Title: Re: Puzzles in a randomly generated dungeon
Post by: Z on October 20, 2009, 05:24:10 PM
See this mini-roguelike: Get Out!! (http://www.roguetemple.com/forums/index.php?topic=295.0)

It is a nice puzzle, and as I mentioned in the thread, there is actually a very easy way to check whether it can be solved (although it has not been implemented, so you can lose because the level was impossible).
Title: Re: Puzzles in a randomly generated dungeon
Post by: purestrain on October 20, 2009, 07:42:58 PM
It's a challenge for sure. A nice idea also. Now I must search the web for algorithms of procedurally generation solvable sokoban puzzles :P

Google points to a few documents that but I had no time yet to read through them all. Sokoban seems to be one of the harder problems for automated solving, but still many of the "hard" problems are easy to generate in a way that makes sure that the results are solvable.

I would just reverse the puzzle; start with the finished situation and pull the blocks; would be enough.
Title: Re: Puzzles in a randomly generated dungeon
Post by: Vanguard on October 20, 2009, 10:39:18 PM
I don't think randomly generated puzzles will ever be on the same level of quality as hand-made ones.

I bet that a lot of them would end up being ridiculously easy, and serve as more of a waste of time than an actual challenge challenge, and that occasionally you'd end up with one that makes no sense to anyone except for the computer.
Title: Re: Puzzles in a randomly generated dungeon
Post by: Fenrir on October 20, 2009, 10:48:41 PM
What about Rube-Goldberg-style puzzles? The components would trigger each other in a certain way. Some components might only trigger specific components. The machine would be made of randomly arranged components, but it would have some missing that the player would find in the dungeons. Putting the right components in the right places would open new areas in the dungeon, possibly revealing yet more components.
Title: Re: Puzzles in a randomly generated dungeon
Post by: Numeron on October 20, 2009, 10:56:47 PM
This might help you out with the colored keys for colored locks thing:

http://www.squidi.net/three/entry.php?id=4

There are a few other gems in there too...
Title: Re: Puzzles in a randomly generated dungeon
Post by: Vanguard on October 21, 2009, 03:56:58 AM
What about Rube-Goldberg-style puzzles? The components would trigger each other in a certain way. Some components might only trigger specific components. The machine would be made of randomly arranged components, but it would have some missing that the player would find in the dungeons. Putting the right components in the right places would open new areas in the dungeon, possibly revealing yet more components.

It would either end up being too static to be interesting for replaying it multiple times, or it would end up being so random as to be more or less a guessing game.
Title: Re: Puzzles in a randomly generated dungeon
Post by: purestrain on October 21, 2009, 06:47:51 AM
All of the puzzles have to be hand-made, they only feature random variations.

I prefer a puzzle (abstract: move a object into a existing pattern) where the missing piece is different each time. Either there are 4 marked stones in hall with 10 other and one is out of pattern, or the puzzle transforms to colored platforms which change when the player moves above them. Its essential the same.

Retrieve key puzzle: Either its a key in a chest which must be brought  to the door or its a chapter which has to be placed side by side to the throne of the skelleton king. Almost the same.

These were exactly two puzzles (pattern matching and object retrieval) with random variations. Could be even merged; retrieve a object and place it in the missing pattern.
Title: Re: Puzzles in a randomly generated dungeon
Post by: Etinarg on October 21, 2009, 08:07:39 AM
I don't think randomly generated puzzles will ever be on the same level of quality as hand-made ones.

That's the same argument as in the discussion of handmade maps, and randomly generated maps. Still roguelikes decided for randomly generated maps and players like it.

The benefit of generated content is, that it can be generated newly for each game, while for hand-crafted content in games, there will be the point when the player has seen it all, and knows it all.

I agree though, that a good designer can make better maps than a good level generator. At least at the time being.

But this is another discussion.
Title: Re: Puzzles in a randomly generated dungeon
Post by: Z on October 21, 2009, 04:34:55 PM
Pick Dungeon Crawl for example. The main gameplay is actually a puzzle itself. You have to survive the attack without dying or using up your one time resources. If you fail to solve the puzzle (either because it was impossible (which Crawl does not guarantee not to happen), or because you are not good enough), you can cheat by using up a potion of heal wounds or a mighty wand. If you are good enough at solving this puzzle, you will gain the one time resources faster than you use them up, and you will win the game. I play Air Elementalists in Crawl, and survival is a puzzle for them: to lead the monsters in such a way that their zap/lightning spell bounces and hits them several times. That's my view of Dungeon Crawl.
Title: Re: Puzzles in a randomly generated dungeon
Post by: Hi on October 23, 2009, 03:18:01 AM
you can use the minimum number of moves to solve a puzzle as an estimate of difficulty.
Title: Re: Puzzles in a randomly generated dungeon
Post by: Anvilfolk on October 26, 2009, 09:43:28 AM
I'd like to see someone make an algorithm to do that on a regular game of Crawl  ;D
Title: Re: Puzzles in a randomly generated dungeon
Post by: Etinarg on October 26, 2009, 10:08:36 AM
For Angband there are two (maybe only one these days) so called "Borgs". AI implementations which play the game. I have forgotten the name of the more successful one, though, yet it was (is?) able to win the game fairly regularly, and with different character classes.

Crawl is more complex than Angband, though ... but some day someone will give it a try, I'm sure, and make an AI which plays Crawl.