Show HN: Hyve Tile, a puzzle game but I can't solve it
11–20 of 20 posts
Re: Show HN: Hyve Tile, a puzzle game but I can't solve it
#12Re: Show HN: Hyve Tile, a puzzle game but I can't solve it
#13* Every tile has two orientations 0 and 180 degrees which allows to cut a lot of possibilities for small fields. * Three tiles can be flipped together, meaning if you have one or two tiles unsolved, your idea won't work out. * Large fields have more solutions.
Sadly I found some bugs:
* World generation does not work correctly: there is an unmovable field (nice idea!) but during generation it gets moved. This makes some puzzles unsolvable. The randomizer should ignore this field. * The undo function has some issues undoing the wrong move or skipping a move. Fully undoing a puzzle does not always result in a solution. If this happens while you're playing you get locked.
Re: Show HN: Hyve Tile, a puzzle game but I can't solve it
#14It is a neat game. With a bit of trying you can find some patterns: * Every tile has two orientations 0 and 180 degrees which allows to cut a lot of possibilities for small fields. * Three tiles can be flipped together, meaning if you have one or two tiles unsolved, your idea won't work out. * Large fields have more solutions. Sadly I found some bugs: * World generation does not work correctly: there is an unmovable…
How do you make that happen? I haven't stumbled on that yet. I did discover, after playing for some time, that I don't have to swap adjacent tiles.
Re: Show HN: Hyve Tile, a puzzle game but I can't solve it
#15This is pretty easy to solve each level. Here is the strategy I used: in the top right corner there is a button that looks like an "undo" icon and a number. Just keep hitting that until the puzzle is solved. Then you can stop.
Re: Show HN: Hyve Tile, a puzzle game but I can't solve it
#16Does your puzzle start from an (non-visible) completed state, then you apply to it a random number between 50-100 of random moves/swaps, and then it becomes visible for the player? I mean is it (even) solvable? Or each piece of the puzzle is randomly placed AND randomly oriented, which could make potentially unsolvable?
It's start from completed state and then randomized. I think it's solvable if you can retrace the randomized step (by using undo button)
So you might do a check after jumbling to make sure you're not back in the original arrangement. If so, keep jumbling.
Fun puzzle!
Re: Show HN: Hyve Tile, a puzzle game but I can't solve it
#17This is pretty easy to solve each level. Here is the strategy I used: in the top right corner there is a button that looks like an "undo" icon and a number. Just keep hitting that until the puzzle is solved. Then you can stop.
Re: Show HN: Hyve Tile, a puzzle game but I can't solve it
#18There’s a tile that I cannot move. It looks like 2 houses 3 trees and one well.
The house tiles are kind of like wildcards since their orientation doesn't seem to matter. They are useful to help flip the orientation of another piece, also with a straight-through piece who's orientation stays the same each time.
Re: Show HN: Hyve Tile, a puzzle game but I can't solve it
#19It looks a lot like mind-bending 'Knots' game: https://brainteaser.top/knot/
Re: Show HN: Hyve Tile, a puzzle game but I can't solve it
#20It is a neat game. With a bit of trying you can find some patterns: * Every tile has two orientations 0 and 180 degrees which allows to cut a lot of possibilities for small fields. * Three tiles can be flipped together, meaning if you have one or two tiles unsolved, your idea won't work out. * Large fields have more solutions. Sadly I found some bugs: * World generation does not work correctly: there is an unmovable…
> Three tiles can be flipped together How do you make that happen? I haven't stumbled on that yet. I did discover, after playing for some time, that I don't have to swap adjacent tiles.
But if you flip A and B, then B and C, then A and C, you get B and C to swap positions without changing their orientations.