-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathminefield.h
executable file
·144 lines (107 loc) · 5 KB
/
minefield.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
/**************************************************************************************************\
*
* vim: ts=3 sw=3 et wrap co=100 go-=b
*
* Filename: "minefield.h"
*
* Project: Minesweeper Text
*
* Purpose: Class "mineField" definition.
*
* Author: Tom McDonnell 2003
*
\**************************************************************************************************/
#ifndef MINEFIELD_H
#define MINEFIELD_H
// Includes. ///////////////////////////////////////////////////////////////////////////////////////
#include <vector>
#include <iostream>
#include <cassert>
// Global class definitions. ///////////////////////////////////////////////////////////////////////
namespace minesweeper
{
class square
{
public:
square(const int _row = 0, const int _col = 0)
: row(_row), col(_col)
{}
int row, col;
};
inline std::ostream &operator<<(std::ostream &out, const square &s)
{
return out << '(' << s.row << ',' << s.col << ')';
}
/*
*
*/
class mineField
{
public:
// Public function declarations / inline definitions. -------------------------------------//
/** Initialisation functions. **/
/* Constructor. */
mineField(const int &h = 8, const int &w = 8, const int &n = 10);
void reset(void);
/** Get functions. **/
int getHeight(void) const {return map.size();}
int getWidth(void) const {return map[0].size();} // rely on rows being same width
int getNmines(void) const {return n_mines;}
/** Boolean test functions. **/
/* Test whether game has been won. */
bool gameWon(void) const {return squaresExplored == getWidth() * getHeight() - getNmines();}
/* Test whether square is inside map. */
bool squareInsideMap(const int &r, const int &c) const
{return (0 <= r && r < getHeight() && 0 <= c && c < getWidth());}
bool squareInsideMap(const square &s) const {return squareInsideMap(s.row, s.col);}
/* Test whether square has been flagged. */
bool squareFlagged(const int &r, const int &c) const
{assert(squareInsideMap(r, c)); return expMap[r][c] == -2;}
bool squareFlagged(const square &s) const {return squareFlagged(s.row, s.col);}
/* Test whether square has been explored. */
bool squareExplored(const int &r, const int &c) const
{assert(squareInsideMap(r, c)); return expMap[r][c] >= 0;}
bool squareExplored(const square &s) const {return squareExplored(s.row, s.col);}
/** Counting functions. **/
/* Returns the number of mines surrounding that square (use only if square explored). */
int n_minedNbours(const int &r, const int &c) const
{assert(squareExplored(r, c)); return expMap[r][c];}
int n_minedNbours(const square &s) const {return n_minedNbours(s.row, s.col);}
/** Functions corresponding to actions. **/
/* Flag (mark) square as being mined (To avoid accidentally uncovering it later). */
void flagSquare(const int &r, const int &c) {expMap[r][c] = -2;}
void flagSquare(const square &s) {flagSquare(s.row, s.col);}
/*
* Explore square (i, j). If square is mined returns false, else returns true.
* If square has no surrounding mines, explores all surrounding squares recursively.
* If all clear squares have been explored game is won.
*/
bool explore(const square &);
bool explore(const int &r, const int &c) {return explore(square(r, c));}
/** Misc. functions. **/
/*
* Print map of minefield to screen as text, hiding unexplored territory.
*/
void printMap(void) const;
private:
// Private function declarations / inline definitions. /////////////////////////////////////////
bool squareMined(const int &r, const int &c) const {return map[r][c];}
bool squareMined(const square &s) const {return squareMined(s.row, s.col);}
int countMinedNbours(const square &) const;
void layMines(void);
void exploreNbours(const square &);
// Private constant & variable declarations. ///////////////////////////////////////////////////
const int n_mines; // Total number of mines in mineField.
std::vector< std::vector<int> > expMap; // Map of explored territory.
// (expMap[r][c] = [0 - 8] If explored,
// meaning that many mines
// lie in surrounding squares.
// -1 If unexplored
// -2 If flagged
std::vector< std::vector<bool> > map; // Map of minefield (if square is mined true,
// if square is clear false)
int squaresExplored;
};
} // End namespace minesweeper.
#endif
/*******************************************END*OF*FILE********************************************/