Post subject: Please help me solve this ice sokoban puzzle!
Active player (325)
Joined: 2/23/2005
Posts: 786
Well, this is embarrassing. In my spare time I was creating a silly puzzle game based on Sokoban. When I created this level, I kicked the ice cubes around in various places and recorded where they landed. That was a year ago. Having forgotten the solution, I am trying to solve this puzzle again. After sinking over 8 hours into trying to figure it out, I am about ready to give up. Please help me if you can! http://www.rphaven.org/cad/puzzleadv/ice.png Puzzle rules: - You control the character. - If the character pushes an ice cube, it will slide until it hits a solid object. - The space between the arrow blocks constitutes a conveyer belt; ice cubes can be freely moved between these spaces. - Once an ice cube has been pushed off the conveyer belt, it can be pushed back onto the conveyer belt only if there is another ice cube blocking it from sliding over the conveyer belt. - The arrow blocks are solid. - To win, cover up all of the blue floor tiles with ice cubes. I am going crazy with this, because I swear this puzzle was created directly from a test run, and therefore is possible to solve. However, I just can't seem to figure it out to save my life. If anyone could offer any tips, strategies, algorithms, or anything, I would be much obliged. Also, if anyone wants, I can make a small EXE file so the puzzle can be tested in real time.
Joined: 3/4/2012
Posts: 74
When you say the blocks can move freely on the conveyor belt, can you just move them to any point on the belt or do you actually have to be able to push them there with the guy? For instance, if you push the 5th block (from the left) down, can you move the 4th block over one to the right, or would the character actually have to be to the left of that block to push it right?
Skilled player (1886)
Joined: 4/20/2005
Posts: 2160
Location: Norrköping, Sweden
This reminds me a lot of the block puzzles in Goof Troop. I think I can give this a try (of course I can't promise any results, though), so you can go ahead and upload the exe file somewhere.
Active player (325)
Joined: 2/23/2005
Posts: 786
John11 wrote:
When you say the blocks can move freely on the conveyor belt, can you just move them to any point on the belt or do you actually have to be able to push them there with the guy? For instance, if you push the 5th block (from the left) down, can you move the 4th block over one to the right, or would the character actually have to be to the left of that block to push it right?
In the game, you can push the arrow blocks to cause all tiles between the arrow blocks to cycle. This means, you can freely move any ice cube on the conveyor belt to any other point on the conveyor belt. I'll hack together that demo program and upload it tomorrow.
Joined: 3/4/2012
Posts: 74
CtrlAltDestroy wrote:
John11 wrote:
When you say the blocks can move freely on the conveyor belt, can you just move them to any point on the belt or do you actually have to be able to push them there with the guy? For instance, if you push the 5th block (from the left) down, can you move the 4th block over one to the right, or would the character actually have to be to the left of that block to push it right?
In the game, you can push the arrow blocks to cause all tiles between the arrow blocks to cycle. This means, you can freely move any ice cube on the conveyor belt to any other point on the conveyor belt. I'll hack together that demo program and upload it tomorrow.
I think I've figured it out then. I'll try to make a vid using your demo program if I get around to it tomorrow.
Active player (325)
Joined: 2/23/2005
Posts: 786
As promised, here is the test program: http://www.rphaven.org/cad/puzzleadv/IceTest.zip It allows rewinding and outputting the move sequence to a text file.
Joined: 3/4/2012
Posts: 74
CtrlAltDestroy wrote:
As promised, here is the test program: http://www.rphaven.org/cad/puzzleadv/IceTest.zip It allows rewinding and outputting the move sequence to a text file.
Cool. My solution doesn't work though =( I'll keep messing with it.
Former player
Joined: 1/17/2006
Posts: 775
Location: Deign
Tried it for 3 hours or something. I'm stumped.
Deign Deign Deign Deign Deign Deign Deign Deign Deign Deign Deign Deign Deign Deign Deign Deign Deign Deign Deign Deign Deign Deign Deign Deign Deign Deign aqfaq Deign Deign Deign Deign Deign Deign Deign Deign Deign Deign Deign Deign Deign Deign Deign
Active player (325)
Joined: 2/23/2005
Posts: 786
I think I have narrowed down the problem I am having solving this. The fact that there is a white tile in each corner suggests that there should be only a maximum of four ice cubes touching the walls at once. But getting the white tile in the very center of the room covered up seems to require pushing a fifth cube away which hits a wall. If I could find a way to somehow block that fifth cube from hitting a wall, I think I would have the puzzle solved.
Editor, Reviewer, Experienced player (969)
Joined: 4/17/2004
Posts: 3107
Location: Sweden
I can get 9 out of 10 in place, different ones if needed, but not all 10. Need some way to get blocks back on the conveyor after they have been used to place the other blocks...
Post subject: Solved! Well...
Former player
Joined: 1/17/2006
Posts: 775
Location: Deign
I was only able to achieve victory by exploiting the demo nature of the program provided by CtrlAltDestroy, but I still think the solution is interesting. The move counter caps at 3001 moves. I've not quite nailed down the mechanics of how it keeps track of which moves to undo after you have exceeded 3001, but I do know that it does not keep track properly. I think it keeps track of the first 3000 moves, then overwrites 3001 with the most recent move. So if you make move 2999, 3000, 3001, 3002, 3003, 3004 and then press backspace it will undo move 3004 and then move 3000. Sometimes this will allow impossible results, such as Ice Skating, or pushing blocks away from walls, or exiting the map and incurring error 6. Most notable, it can be used to move the 10th block into position. I don't have a screenshot, but I did use this bug/feature to get a block back onto the conveyer belt as part of my solution.
Deign Deign Deign Deign Deign Deign Deign Deign Deign Deign Deign Deign Deign Deign Deign Deign Deign Deign Deign Deign Deign Deign Deign Deign Deign Deign aqfaq Deign Deign Deign Deign Deign Deign Deign Deign Deign Deign Deign Deign Deign Deign Deign
skychase
He/Him
Joined: 3/25/2007
Posts: 212
Location: Quebec, Canada
Kinda reminds me of Alundra's Ice Manor... It's gonna be fun ^^
Post subject: Re: Solved! Well...
Banned User, Former player
Joined: 3/10/2004
Posts: 7698
Location: Finland
jimsfriend wrote:
The move counter caps at 3001 moves.
Using static arrays of completely arbitrary sizes rulez... ;)
Former player
Joined: 3/31/2005
Posts: 192
Location: Argentina
Heheee... Gave it a shot and failed. Sorry :P
arflech
He/Him
Joined: 5/3/2008
Posts: 1120
I only got 8/10:(
i imgur com/QiCaaH8 png
ALAKTORN
He/Him
Player (99)
Joined: 10/19/2009
Posts: 2527
Location: Italy
Truncated wrote:
I can get 9 out of 10 in place, different ones if needed, but not all 10.
same here… my strategy goes for the 2 central ones first, but maybe it’s wrong edit: are we sure this is really possible? :/ I don’t see how you can get the center one while still only have 4 ice cubes at the borders… and it seems like you need 3 of them next to the 1-square-away-from-border places, and the 4th one at the bottom to set the others up… so with this, I don’t see how you can get the center :/
Lex
Joined: 6/25/2007
Posts: 732
Location: Vancouver, British Columbia, Canada
As expected of a TAS community; using glitches to obtain victory!
Editor, Active player (296)
Joined: 3/8/2004
Posts: 7469
Location: Arzareth
I tried hacking my Peterbox solver to solve this puzzle, but got only error. :-/
Editor, Player (53)
Joined: 12/25/2004
Posts: 634
Location: Aguascalientes, Mexico
Truncated wrote:
I can get 9 out of 10 in place, different ones if needed, but not all 10. Need some way to get blocks back on the conveyor after they have been used to place the other blocks...
I'm on the same boat: [URL=http://smg.photobucket.com/albums/v205/SamuraiGoroh/Others/Ice_Sokoban/?action=view&current=01.png][/URL] [URL=http://smg.photobucket.com/albums/v205/SamuraiGoroh/Others/Ice_Sokoban/?action=view&current=02.png][/URL] [URL=http://smg.photobucket.com/albums/v205/SamuraiGoroh/Others/Ice_Sokoban/?action=view&current=03.png][/URL] [URL=http://smg.photobucket.com/albums/v205/SamuraiGoroh/Others/Ice_Sokoban/?action=view&current=04.png][/URL]
I'm the best in the Universe! Remember that!
ALAKTORN
He/Him
Player (99)
Joined: 10/19/2009
Posts: 2527
Location: Italy
^the same is happening to me, I honestly don’t think it’s solvable throwing in the last 9-spots solution :P random: just got solution #4 done in 260 moves (not optimized, would probably go around 230 if so)