Crates.io | rustymines |
lib.rs | rustymines |
version | 1.1.19 |
source | src |
created_at | 2022-10-31 11:44:04.395837 |
updated_at | 2024-09-29 18:45:08.524937 |
description | A mine sweeping game with optional duds. |
homepage | https://github.com/conqp/rustymines/ |
repository | https://github.com/conqp/rustymines/ |
max_upload_size | |
id | 702162 |
size | 37,029 |
A mine sweeping game for the console with optional dud mines.
You can specify the field size, amount of mines and amount of duds:
--width
The width of the field--height
The height of the field--mines
Amount of mines on the field--duds
Amount of duds among the minesYou play the game by either flagging or visiting fields. The game is over, if you stepped onto a mine, which is not a dud, in which case you lose, or you uncover all fields that do not contain a mine, in which case you win.
You can visit fields, which you deem safe, by specifying the x and y coordinate.
E.g.: 2 3
to visit the field at coordinate x=2 and y=3.
You can flag fields under which you suspect a mine by prepending an exclamation
mark to the coordinate. E.g.: !3 1
to flag the field at coordinate x=3 and y=1.
You can remove a flag from a field by repeating the command, i.e. this command toggles a field's flag.
You can uncover all non-flagged fields by providing two exclamation marks: !!
You can abort and quit the game at any time by typing: exit