vote up 6 vote down star

Regardless of the layout being used for the tiles, is there any good way to divvy out the tiles so that you can guarantee the user that, at the beginning of the game, there exists at least one path to completing the puzzle and winning the game?

Obviously, depending on the user's moves, they can cut themselves off from winning. I just want to be able to always tell the user that the puzzle is winnable if they play well.

If you randomly place tiles at the beginning of the game, it's possible that the user could make a few moves and not be able to do any more. The knowledge that a puzzle is at least solvable should make it more fun to play.

flag

6 Answers

vote up 13 vote down check

Place all the tiles in reverse (ie layout out the board starting in the middle, working out)

To tease the player further, you could do it visibly but at very high speed.

link|flag
That doesn't guarantee victory, you can still end up with a situation where some tiles are impossible to get e.g., ABAB - there is no way to get the A's until you have gotten the B's and vice versa – 1800 INFORMATION Oct 1 '08 at 20:33
If you "play" the game in reverse, that formation would be impossible to create, unless the two A's are actually parts of two pairs, where the player removed the "wrong" one earlier. – Lasse V. Karlsen Oct 1 '08 at 20:34
Agreed, lassevk. – cagcowboy Oct 1 '08 at 20:44
vote up 8 vote down

Play the game in reverse.

Randomly lay out pieces pair by pair, in places where you could slide them into the heap. You'll need a way to know where you're allowed to place pieces in order to end up with a heap that matches some preset pattern, but you'd need that anyway.

link|flag
vote up 6 vote down

The only thing I've been able to come up with is to place the tiles down in matching pairs as kind of a reverse Mahjong Solitaire game. So, at any point during the tile placement, the board should look like it's in the middle of a real game (ie no tiles floating 3 layers up above other tiles).

If the tiles are place in matching pairs in a reverse game, it should always result in at least one forward path to solve the game.

I'd love to hear other ideas.

link|flag
Holy crap... how freaking fast are these people?! This is awesome. I immediately started posting this answer after I posted the question and by the time I submitted it, there were already TWO answers. – I Never Finish Anythi Oct 1 '08 at 20:33
That, my friend, is the power of <booming_voice>STACKOVERFLOW</booming_voice> – Wes P Oct 1 '08 at 20:58
vote up 0 vote down

I believe the best answer has already been pushed up: creating a set by solving it "in reverse" - i.e. starting with a blank board, then adding a pair somewhere, add another pair in a solvable position, and so on...

If you a prefer "Big Bang" approach (generating the whole set randomly at the beginning), are a very macho developer or just feel masochistic today, you could represent all the pairs you can take out from the given set and how they depend on each other via a directed graph.

From there, you'd only have to get the transitive closure of that set and determine if there's at least one path from at least one of the initial legal pairs that leads to the desired end (no tile pairs left).

Implementing this solution is left as an exercise to the reader :D

link|flag
vote up 0 vote down

Here are rules i used in my implementation.

When buildingheap, for each fret in a pair separately, find a cells (places), which are:

  • has all cells at lower levels already filled
  • place for second fret does not block first, considering if first fret already put onboard
  • both places are "at edges" of already built heap:
    • EITHER has at least one neighbour at left or right side
    • OR it is first fret in a row (all cells at right and left are recursively free)

These rules does not guarantee a build will always successful - it sometimes leave last 2 free cells self-blocking, and build should be retried (or at least last few frets) In practice, "turtle" built in no more then 6 retries.

Most of existed games seems to restrict putting first ("first on row") frets somewhere in a middle. This come up with more convenient configurations, when there are no frets at edges of very long rows, staying up until last player moves. However, "middle" is different for different configurations.

Good luck :)

P.S. If you've found algo that build solvable heap in one turn - please let me know.

link|flag
vote up -1 vote down

Solitaire? Just a guess, but I would assume that your computer would need to beat the game(or close to it) to determine this.

Another option might be to have several preset layouts(that allow winning, mixed in with your current level.

To some degree you could try making sure that one of the 4 tiles is no more than X layers below another X.

Most games I see have the shuffle command for when someone gets stuck.

I would try a mix of things and see what works best.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.