Package: mineSweepR
0.1.0
Author: Xiurui Zhu
Modified: 2023-10-06
21:55:11
Compiled: 2023-10-06 21:55:21
Let’s have fun with R! This is the very popular mine sweeper game!
In this game, you are required to find out tiles that contain mines
through clues from unmasking neighboring tiles. Each tile that does not
contain a mine shows the number of mines in its adjacent tiles. If you
unmask all tiles that do not contain mines, you win the game; if you
unmask any tile that contains a mine, you lose the game. While in R, you
may also run library(mineSweepR); help(run_game)
and check details for
game instructions.
You can install the released version of mineSweepR
from
CRAN with:
install.packages("mineSweepR")
Alternatively, you can install the developmental version of mineSweepR
from github with:
remotes::install_github("zhuxr11/mineSweepR")
Below are two screenshots of the mine sweeper game. While game is in progress, there are some tile types and marks:
- Light gray tiles: unmasked tiles.
- Dark gray tiles: masked tiles.
- Count (1/2/3/…) marks: number of mines (blank for no mines) in 8 adjacent tiles, revealed through unmasking.
- “F” marks: flags for possible mines on masked tiles, as found out and marked by player.
There may be some additional tile types and marks after losing a game:
- Red tile: unmasked tile containing a mine (the tile that leads to loss).
- Magenta tiles: wrongly flagged tiles (e.g. flagged tiles that do not contain mines).
- “M” marks: mines in unflagged tiles (automatically unmasked after loss).
The title tells game state, number of unflagged mines and playing time.
- Game state: there are 3 possible game states:
- Alive: game in progress
- Bingo: after winning a game (left)
- Dead: after losing a game (right)
- Number of unflagged mines: computed through literally subtracting the number of flags from the total number of mines, it can be negative and does not tell whether the flags are correct or not.
- Playing time: game timing starts when any tile is unmasked.
- Goal
-
All tiles start masked. If you unmask all tiles without mines, you win the game; if you unmask any tiles containing mines, you lose the game.
- Unmask tiles
-
You may click with left mouse button on any masked tile to unmask. The first tile unmasked cannot contain a mine. Timing starts when any tile is unmasked.
- Find out mines
-
Each unmasked tile tells you the number of mines in adjacent tiles, unless itself contains a mine. You may use these numbers to find out the adjacent tiles with mines.
- Flag mines
-
You may click with right mouse button on an unmasked tile to flag it as a possible mine. Flagged tiles cannot be unmasked, unless you click on them with right mouse button again to remove the flags.
- Unmask adjacent tiles
-
You may click with left mouse button on any unmasked tile to unmask adjacent unflagged tiles, after you have set up the number of flags that equals to the count of adjacent mines shown on this tile. If any unflagged adjacent tiles contain mines, one of them is triggered and you lose the game.
- Game statistics
-
After you win or lose a game, game statistics are recorded.
- Restart game
-
You may restart game with
r
at any time. If you have not won or lost the game, it is not recorded in game statistics. - BOSS KEY!
-
You may press boss key (any key other than
r
) for ≥ 2 times to close game window.
run_game()
offers a handful of options to customize the game,
including:
n_mine, n_row, n_col | Integers as numbers of mines/rows/columns in game panel, |
unmask_button, flag_button | Integers as buttons to unmask/flag tiles. Usually, 0 for left mouse button (to unmask) and 2 for right mouse button (to flag). |
digit_char, mine_char, flag_char | Characters to mark counts/mines/flags. |
unmask_color, mask_color, hit_color, wrong_color | Strings as colors for unmasked tiles / masked tiles / mine-triggering tile / wrongly flagged tiles. |
digit_color, mine_color, flag_color | Strings as colors for |
window_title | String as window title. |
x11_args | Named list of arguments passed on to |
time_prec | Integer as time precision (e.g. 0 for seconds or 3 for miliseconds). |
restart_key | Character as the key to restart game, used when you have won or lost a game. |
exit_key_press | Integer as the times of boss key presses (boss key is any key other than |