-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e957ec7
commit 524d5a9
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
|
||
|
||
|
||
# Minesweeper Implementation for the Flipper Zero. | ||
Hello! | ||
|
||
![Mine Sweeper Example Gameplay Gif](https://github.com/squee72564/F0_Minesweeper_Fap/blob/main/img/github_images/MineSweeperGameplay.gif) | ||
## Added features unique to this implementation: | ||
- Enable board verifier for board generation to ensure unambiguous boards! | ||
- Set board width and height | ||
- Set difficulty | ||
- A number of different button presses as shortcuts for game actions (see How To Play) | ||
|
||
|
||
## How To Play | ||
- Up/Down/Left/Right Buttons to move around | ||
- These buttons can be held down to keep moving in a direction | ||
- Center OK Button to attempt opening up a tile | ||
- Press OK on a tile to open it up | ||
- Hold OK on a cleared space with a number to clear all surrounding tiles (correct number of flags must be set around it) | ||
- Hold Back Button on a tile to toggle marking it with a flag | ||
- Hold Back Button on a cleared space to jump to one of the closest tiles (this can help find last tiles on a larger board) | ||
- Press Back Button to access the settings menu where you can do the following: | ||
- Change board width | ||
- Change board height | ||
- Change difficulty | ||
- Ensure Solvable (**Important!**)- This option will enable the board verifier for board generation and can significantly increase wait times for generating a board. Currently this may lock up the view port on the loading animation, but it should eventually resolve and return to the game. | ||
|
||
## IMPORTANT NOTICE: | ||
The way I set the board up leaves the corners as safe starting positions! | ||
|
||
In addition to this, with the "Ensure Solvable" option set to true, the board will always be solvable from 0,0! Without Ensure Solvable enabled in the settings the mine placement for the board generation is randomized and there is no guarantee that the game with be solvable without any guesses. |