How to build a solvable level of Same Game (aka. Chain-Shot, aka. Clickomania) - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T12:39:08Zhttp://stackoverflow.com/feeds/question/976084http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/976084/how-to-build-a-solvable-level-of-same-game-aka-chain-shot-aka-clickomania4How to build a solvable level of Same Game (aka. Chain-Shot, aka. Clickomania)lk2009-06-10T14:52:04Z2009-06-10T16:10:54Z
<p>I'm building a game such as <a href="http://en.wikipedia.org/wiki/SameGame" rel="nofollow">Same Game</a>, when I have to create a new level I've just run an algorithm to fill the board with N colors, this algorithm fills the board at random, but obviously the levels generated this way are not all has a solution.</p>
<p>I have to make a function to resolve this problem, so the game can be played by a perfect player for ever.</p>
<p>I have a maximum of 6 color and a minimum of 2 and the board has a reasonable size (14x12) but can be modified.</p>
<p>The language is irrelevant. </p>
<p>EDIT: I don't need to solve the puzzle, I need to create levels that has at least one solution.</p>
http://stackoverflow.com/questions/976084/how-to-build-a-solvable-level-of-same-game-aka-chain-shot-aka-clickomania/976165#9761653Answer by Oli for How to build a solvable level of Same Game (aka. Chain-Shot, aka. Clickomania)Oli2009-06-10T15:02:50Z2009-06-10T15:02:50Z<p>One method, which, I'll add, is rarely the most efficient, is to build the level in reverse. </p>
<p>It's fairly simple to do in this case though. You just start with nothing and add clickable groups with <em>some</em> randomness... I say some randomness, as you may need to add extra blocks to make sure all columns are filled.</p>
<p>But thinking about it, even then there's a possibility two clickable groups you add will touch each other and cause an unforeseen collapse, resulting in an unfinishable game. So this method wouldn't guarantee a solvable game.</p>
<p>You could have a look at the source for an open source version like <a href="http://live.gnome.org/Same%20Gnome" rel="nofollow">Same GNOME</a> and see how they do it (if they do it at all!)</p>
http://stackoverflow.com/questions/976084/how-to-build-a-solvable-level-of-same-game-aka-chain-shot-aka-clickomania/976167#9761671Answer by KM for How to build a solvable level of Same Game (aka. Chain-Shot, aka. Clickomania)KM2009-06-10T15:03:02Z2009-06-10T15:03:02Z<p>create a "solved" board, and then change it using N valid but random backwards moves. After adding each backward move, you could run the moves forward (on a temp board) to verify a solvable puzzle.</p>
http://stackoverflow.com/questions/976084/how-to-build-a-solvable-level-of-same-game-aka-chain-shot-aka-clickomania/976363#9763631Answer by Jay S for How to build a solvable level of Same Game (aka. Chain-Shot, aka. Clickomania)Jay S2009-06-10T15:29:08Z2009-06-10T15:29:08Z<p>If you can't run a verification algorithm, because of time constraints, perhaps what you need to work with is a library of puzzles. You can have a background thread generating new random puzzles all the time, and running a verification algorithm on them to check if they are valid. When a valid puzzle is found, it is added to your library of puzzles (assuming the same puzzle doesn't already exist).</p>
<p>Then your game just loads randomly from the library. This allows you to ensure you always have valid puzzles, but still allows you to randomly generate them and verify them without slowing down the puzzle-loading.</p>
http://stackoverflow.com/questions/976084/how-to-build-a-solvable-level-of-same-game-aka-chain-shot-aka-clickomania/976620#9766202Answer by Oli for How to build a solvable level of Same Game (aka. Chain-Shot, aka. Clickomania)Oli2009-06-10T16:10:54Z2009-06-10T16:10:54Z<p>I've just check out about five different versions of the game on Ubuntu and I've found an answer you can pillage from!</p>
<p><a href="http://www.chiark.greenend.org.uk/~sgtatham/puzzles/" rel="nofollow">Simon Tatham's Portable Puzzle Collection</a></p>
<p>I play about five of his games incessantly but preferred Same GNOME. I just loaded up his Same Game and it has the option to ensure solubility when creating custom games. Even has a customisable scoring system. It's all awfully advanced.</p>
<p>An exe and source code is available from the above link.</p>
<p>And the license is MIT (meaning you can use it freely in commercial games - but please donate something to him if you can afford it)</p>