diff options
author | Haidong Ji | 2022-04-15 15:51:30 -0500 |
---|---|---|
committer | Haidong Ji | 2022-04-15 15:51:30 -0500 |
commit | 442a49ad5a48d417345959b903ae6a6d32d55759 (patch) | |
tree | c7127bb497e5e439018b1915e0136eec2c9cb124 /31_minesweeper/README |
Excellent fundamentals and displine training, many tools and techniques
exercises: gdb, emacs, valgrind, git
Diffstat (limited to '31_minesweeper/README')
-rw-r--r-- | 31_minesweeper/README | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/31_minesweeper/README b/31_minesweeper/README new file mode 100644 index 0000000..14b4bfa --- /dev/null +++ b/31_minesweeper/README @@ -0,0 +1,80 @@ + +********************************************************************* +** REMINDER: your programs MUST valgrind cleanly for full credit! ** +********************************************************************* + +For this problem, you will be completing a partially written +minesweeper game. This game will be played on a text interface +(not a GUI---we haven't learned anything about those). + +If you are not familiar with the game of minesweeper, you might +take a minute to read up about it on the internet, but you don't +need much game expertise to do this assignment. + +I have provided code for an almost working minesweeper, except +that I have deleted the code for 4 functions: + +board_t * makeBoard(int w, int h, int numMines) +int countMines(board_t * b, int x, int y) +int checkWin(board_t * b) +void freeBoard(board_t * b) + + +Your job is to implement each of these functions (which all have a +//WRITE ME comment to make them easy to find). A brief description +of each follows: + + + - makeBoard: this function should malloc and initialize a board_t + representing the board. The parameters specify the width + and height of the board, as well as the number of mines. + You will also need to call malloc (multiple times) + to allocate space for the 2D array "board". + This function should fill in all squares on the board with + UNKNOWN, then call addRandomMine an appropriate number of times + (i.e., numMines) to "randomly" place mines on the board. + Note that the fields of your board_t must be initailzed before + you call addRandomMine. + Also note that the mine generation is pseudo random and will not + change if you re-run the program multiple times with the same + parameters. + + Note that the layout of b->board should be such that it is indexed + b->board[y][x] + where y is between 0 and the height and x is between 0 and the width. + + - countMines: this funciton takes a board_t, and an (x,y) coordinate. + It should count the mines in the 8 squares around that (x,y) + coordinate, and return that count. Note that a mine may be + indicated by a square on the board either being HAS_MINE or + KNOWN_MINE. You can use the IS_MINE macro to test both cases: + IS_MINE(b->board[ny][nx]) + (where b is the board_t, and (nx,ny) are the coordinates you + want to check). Be careful not to go out of bounds of the array. + + - checkWin: this funciton takes a board_t and see if the game has + been won. The game is won when no squares are UNKNOWN. Return 0 + if the game has not been won, 1 if it has. + + - freeBoard: This function takes a board_t and frees all memory + associated with it (including the array inside of it). That is, + freeBoard should undo all the allocations made by a call to makeBoard. + +Note: You should NOT change any of the other provided functions! + + +Once you have these all working, you should have a playable game of +minesweeper. Note that there are a few differences in game play +from the "standard" game: + + - You select a square by entering its x (column) and y (row) coordinate. + The x coordinates are listed across the top and the y are listed + down the left side to reduce counting. + + - The game will automatically figure out the "obvious" squares: + both mines and non-mined spaces. It will reveal these too you + as soon as it considers them trivial to figure out. + + - You cannot manually mark a square that you suspect has a mine + +Once your code is complete, submit minesweeper.c |