Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

For this assignment, you will implement the game minesweeper. This game was made popular by the Windows operating system in the early 1990s, and it

For this assignment, you will implement the game minesweeper. This game was made popular by the Windows operating system in the early 1990s, and it has continued to be a pre-installed game until Windows 8. You can watch a video of how to play minesweeper on YouTube or read about it on Wikipedia:

https://www.youtube.com/watch?v=Z0EAysRluJk

https://en.wikipedia.org/wiki/Microsoft_Minesweeper

The game is very simple. The object of the game is to open/reveal every cell on the board without detonating a mine. Every cell contains a number or a mine. The numbers tell you how many mines surround the cell in the horizontal, vertical, and diagonal directions, e.g. at most, 8 possible mines surrounding a cell. You can flag a cell, which helps you remember where you think there is a mine to not detonate. If you select to open/reveal a cell that has a mine, then you automatically lose the game!

Our game will be a little different, since we do not have a graphical user interface for clicking. You will run the program providing command-line arguments for the number of rows, columns, and mines in any order. Therefore, the number must be preceded by an option designator, -r for rows, -c for columns, and m for mines.

You will then randomly distribute the mines on the board and setup the numbers describing how many adjacent mines to each cell. After that, you will display a blank board, and ask the user to flag or open a cell on the board until the user selects a cell that contains a mine (losing the game) or selects all cells free of mines (winning the game). After the user wins or loses, you will ask the user if he/she wants to play again.

If so, you must get the number of rows, columns, and mines for the new game and create a new board for a new game. BTW, you can display row and column numbers on board to make it easier to read/know which row and column to select!!!

Example run of a game:

a.o ut r 9 c 9 m 10

-------------------

| | | | | | | | | |

-------------------

| | | | | | | | | |

-------------------

| | | | | | | | | |

-------------------

| | | | | | | | | |

-------------------

| | | | | | | | | |

-------------------

| | | | | | | | | |

-------------------

| | | | | | | | | |

-------------------

| | | | | | | | | |

-------------------

| | | | | | | | | |

-------------------

Flag(1) or Open(2): 2 row, col: 0 4

You lose!!!

-------------------

|1|1|0|1|*|1|0|0|0|

-------------------

|*|2|1|2|2|2|0|0|0|

-------------------

|2|*|2|2|*|1|0|0|0|

-------------------

|1|1|3|*|3|1|0|0|0|

-------------------

|1|1|3|*|2|0|0|0|0|

-------------------

|1|*|3|2|2|0|0|0|0|

-------------------

|1|1|2|*|1|0|0|0|0|

-------------------

|1|2|3|2|1|0|0|0|0|

-------------------

|1|*|*|1|0|0|0|0|0|

Do you want to play again (1-yes, 2-no): 1 How many rows, cols? 9 9

How many mines? 10

-------------------

| | | | | | | | | |

-------------------

| | | | | | | | | |

-------------------

| | | | | | | | | |

-------------------

| | | | | | | | | |

-------------------

| | | | | | | | | |

-------------------

| | | | | | | | | |

-------------------

| | | | | | | | | |

-------------------

| | | | | | | | | |

-------------------

| | | | | | | | | |

-------------------

Flag(1) or Open(2): 2 row, col: 0 0

-------------------

|1| | | | | | | | |

-------------------

| | | | | | | | | |

-------------------

| | | | | | | | | |

-------------------

| | | | | | | | | |

-------------------

| | | | | | | | | |

-------------------

| | | | | | | | | |

-------------------

| | | | | | | | | |

-------------------

| | | | | | | | | |

-------------------

| | | | | | | | | |

Flag(1) or Open(2): 2 row, col: 8 0

-------------------

|1| | | | | | | | |

-------------------

| | | | | | | | | |

-------------------

| | | | | | | | | |

-------------------

| | | | | | | | | |

-------------------

| | | | | | | | | |

-------------------

| | | | | | | | | |

-------------------

| | | | | | | | | |

-------------------

| | | | | | | | | |

-------------------

|1| | | | | | | | |

-------------------

Flag(1) or Open(2): 2 row, col: 5 5

-------------------

|1| | | | |1|0|0|0|

-------------------

| | | | | |2|0|0|0|

-------------------

| | | | | |1|0|0|0|

-------------------

| | | | |3|1|0|0|0|

-------------------

| | | | |2|0|0|0|0|

-------------------

| | | | |2|0|0|0|0|

-------------------

| | | | |1|0|0|0|0|

-------------------

| | | |2|1|0|0|0|0|

-------------------

|1| | |1|0|0|0|0|0|

Flag(1) or Open(2): 1 row, col: 6 3

-------------------

|1| | | | |1|0|0|0|

-------------------

| | | | | |2|0|0|0|

-------------------

| | | | | |1|0|0|0|

-------------------

| | | | |3|1|0|0|0|

-------------------

| | | | |2|0|0|0|0|

-------------------

| | | | |2|0|0|0|0|

-------------------

| | | |!|1|0|0|0|0|

-------------------

| | | |2|1|0|0|0|0|

-------------------

|1| | |1|0|0|0|0|0|

-------------------

Flag(1) or Open(2): 2 row, col: 7 1

-------------------

|1|1|0|1|!|1|0|0|0|

-------------------

|!|2|1|2|2|2|0|0|0|

-------------------

|2|!|2|2|!|1|0|0|0|

-------------------

|1|1|3|!|3|1|0|0|0|

-------------------

|1|1|3|!|2|0|0|0|0|

-------------------

|1|!|3|2|2|0|0|0|0|

-------------------

|1|1|2|!|1|0|0|0|0|

-------------------

|1|2| |2|1|0|0|0|0|

-------------------

|1|!|!|1|0|0|0|0|0|

Flag(1) or Open(2): 2 row, col: 7 2 Congratulations!!!

-------------------

|1|1|0|1|*|1|0|0|0|

-------------------

|*|2|1|2|2|2|0|0|0|

-------------------

|2|*|2|2|*|1|0|0|0|

-------------------

|1|1|3|*|3|1|0|0|0|

-------------------

|1|1|3|*|2|0|0|0|0|

-------------------

|1|*|3|2|2|0|0|0|0|

-------------------

|1|1|2|*|1|0|0|0|0|

-------------------

|1|2|3|2|1|0|0|0|0|

-------------------

|1|*|*|1|0|0|0|0|0|

-------------------

Do you want to play again (1-yes, 2-no): 2

Requirements for game:

You must provide a usage message, if the user enters incorrect command-line arguments

You must not have functions over 15-20 lines long (-10 automatically)

You must not use global variables (-10 automatically)

You must ask the user if he/she wants to play again

(If no, then end.

If yes, then prompt for rows, cols, and mines for new game.)

You must not have any memory leaks (-10 automatically)

You must detect these errors:

(Invalid row or column to flag or open

Opening a cell that has already been opened)

Extra Credit: Recursively open all cells adjacent to 0 cell

If the user selects a cell that has no mines surrounding it, then you will help the user by recursively opening all adjacent cells to empty cells, until you reach cells with a surround mine.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Oracle Database 11g SQL

Authors: Jason Price

1st Edition

0071498508, 978-0071498500

More Books

Students also viewed these Databases questions

Question

Calculate the profitability index for Project A.

Answered: 1 week ago