-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBoard.java
208 lines (179 loc) · 6.55 KB
/
Board.java
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
//import essentials
import java.util.HashMap;
import java.util.ArrayList;
import java.util.Random;
import java.util.Arrays;
/*
* Class for board objects that will contain a 2D int array based on the difficulty level that is given by the user
* The int 2D array of each board object will contain all of the positions of mines and also calculate the number of neighboring mines for each square that does not contain a mine (mines will be represented by the number "9" seeing that the maximum number of mines that can be neighboring a non-mine square is 8)
*/
public class Board {
//instance variables
private int[][] board;
private String difficulty;
private int width;
private int height;
private int mineCount;
//static final HashMap that holds the exact number of mines for each difficulty level
private final static HashMap<String, Integer> numMines;
static {
numMines = new HashMap<String, Integer>();
numMines.put("easy", 10);
numMines.put("medium", 40);
numMines.put("hard", 99);
}
/*
* Constructor for the Board class
* @precondition: difficult is a valid lowercase difficulty level
*/
public Board(String difficult) {
difficulty = difficult;
//set values for demensions based on difficulty
dimensions();
//make the 2d array board based on dimensions
board = new int[height][width];
//get the number of mines from HashMap
mineCount = numMines.get(difficult);
//fill in the mines to the 2d int array
fillMines(mineCount);
//fill in the other numbers based on how many neighboring mines there are
fillNumbers();
}
/*
* Private helper method for the constructor that provides values for int width and int height based on the given difficulty
* @return void
*/
private void dimensions() {
if (difficulty.equals("easy")){
width = 9;
height = 9;
} else if (difficulty.equals("medium")){
width = 14;
height = 14;
} else if (difficulty.equals("hard")){
width = 22;
height = 22;
}
}
/*
* Private helper method for the constructor that generates where the positions of the mines will be with no overlap
* @param number of mines to be added
* @return void
*/
private void fillMines(int mineNum) {
//create a Random object
Random random = new Random();
//create an ArrayList to hold all possible postions (ArrayList is used because it has indices and also can have elements removed)
ArrayList<Integer> positions = new ArrayList<Integer>();
//put all available positions into ArrayList positions
for (int i = 0; i < width * height; i++) {
positions.add(i);
}
//for loop that will add mineNum mines at random positions in the 2d array board
for(int i = 0; i < mineNum ; i++){
//get a random index for positions (useful once the size of positions starts changing with the removal of elements)
int rand = random.nextInt(positions.size());
//remove the randomly selected element from the ArrayList (remove method returns the removed element)
int index = positions.remove(rand);
//convert the position element from the ArrayList into the row column format needed for a 2d array
int row = index/width;
int col = index%width;
//make the random position a mine (value of 9) on 2d array board
board[row][col] = 9;
}
}
/*
* Private helper method for the contructor that fills board for the numbers of neighboring mines
* @return void
*/
private void fillNumbers(){
//traversing the 2d array
for (int row = 0; row < board.length; row++){
for (int col = 0; col < board[row].length; col++){
//make sure the element is not a mine and has not been counted already
if (board[row][col] == 0){
//set up count variable for number of neighboring mines
int count = 0;
//check the element above (making sure the row will be in bounds if we subtract 1)
if (row > 0){
//checks if the neighbour is a mine (9)
if (board[row-1][col] == 9){
count++;
}
}
//check the element below (making sure the row will be in bounds if we add 1)
if (row < board.length-1){
if (board[row+1][col] == 9){
count++;
}
}
//check the element to the left (making sure col will be in bounds if we subtract 1)
if (col > 0){
if (board[row][col-1] == 9){
count++;
}
}
//check the element to the right (making sure col will be in bounds if we add 1)
if (col < board[row].length-1){
if (board[row][col+1] == 9){
count++;
}
}
//check the upper-left element (making sure both row and col will be in bounds)
if (row > 0 && col > 0){
if (board[row-1][col-1] == 9){
count++;
}
}
//check the upper-right element (making sure both row and col will be in bounds)
if (row > 0 && col < board[row].length-1){
if (board[row-1][col+1] == 9){
count++;
}
}
//check the lower-left element (making sure both row and col will be in bounds)
if (row < board.length-1 && col > 0){
if (board[row+1][col-1] == 9){
count++;
}
}
//check the lower-right element (making sure both row and col will be in bounds)
if (row < board.length-1 && col < board[row].length-1){
if (board[row+1][col+1] == 9){
count++;
}
}
//put the count into 2d array board (put an empty string before count to prevent a different data type error)
board[row][col] = count;
}
}
}
}
/*
* Accessor method for the generated 2d array board
* @return String[][] board
*/
public int[][] getBoard(){
return board;
}
/*
* Accessor method for the number of mines on the board
* @return int mineCount
*/
public int getMineCount(){
return mineCount;
}
/*
* Converts the board into a String for testing purposes
* @overrides toString
* @precondition board has at least 1 row
* @return 2d array board as a string
*/
public String toString(){
String s = Arrays.toString(board[0]);
for (int row = 1; row < board.length; row++){
s += "\n" + Arrays.toString(board[row]);
}
return s;
}
}