-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBoard.java
221 lines (204 loc) · 6.21 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
209
210
211
212
213
214
215
216
217
218
219
220
221
import java.util.Random;
public class Board{
private String[][] board1,board2;
private int[][] board3;
private int rows,cols,mins,contRight,contFlags,contLeftingCells;
private Random aleatorio = new Random(System.currentTimeMillis());
public Board(){}
/**Create a new game by the user specifications
*And fill the borads1 and 2, with " . "
*/
public void newGame(String[] in){
rows=parse(in[0]);
cols=parse(in[1]);
mins=parse(in[2]);
board1 = new String[rows][cols];
board2 = new String[rows][cols];
board3 = new int[rows][cols];
for(int i =0; i < rows;i++){
for(int j =0; j < cols;j++){
board1[i][j]=" . ";
board2[i][j]=" . ";
}
}
setMines();
calcBoardNumbers();
System.out.println("Ignore this if you're not a cheat or tester");
printBoard2();
}
/**
* just parses an it
*/
private int parse(String x){
return Integer.parseInt(x);
}
/**
* maps the mines randomly in board2
*/
private void setMines(){
int cont=0,i,j;
while(cont <mins){
i=aleatorio.nextInt(rows);
j=aleatorio.nextInt(cols);
if(board2[i][j].equals(" . ")){
board2[i][j]=" * ";
cont ++;
}
}
}
/**
* mark or unmark the cell an check if all the mines are already marked
* and if it's true, finish the game
*/
public boolean mark(String[] in){
int row=parse(in[0]);
int col=parse(in[1]);
if(board1[row][col].equals(" . ")){
board1[row][col] = " P ";
contFlags ++;
if(board2[row][col].equals(" * ")){
contRight ++;
return win();//?
}
}else if(board1[row][col].equals(" P ")){
board1[row][col] = " . ";
contFlags --;
if(board2[row][col].equals(" * "))contRight --;
return win();//?
}
return true;
}
/**
* selec a cell, if it has a mine the program ends but if it doesn't,
* print " - " an col the freeSpaces methods to continue releasing cells
*/
public boolean select(String[] in){
int row=parse(in[0]);
int col=parse(in[1]);
if(board1[row][col].equals(" P ")){
System.out.println("flag");
}else if(board2[row][col].equals(" . ")&& board1[row][col]==" . "){
if(board3[row][col]==0){
board1[row][col] = " - ";
}else{
board1[row][col] = " "+board3[row][col]+" ";
}
contLeftingCells++;
freeSpaces(row,col);
}else if(board2[row][col].equals(" * ")){
showMines();
System.out.println("You lose °_°");
return false;
}
return true;
}
/**
* this method is who calcules the matrix numbers.
* numbers that indicate where are the mines located
* this method is suported by plus method
*/
private void calcBoardNumbers(){
for(int i =0; i < rows;i++){
for(int j =0; j < cols;j++){
if(board2[i][j].equals(" * ")){
plus(i-1,j-1); plus(i+1,j); plus(i-1,j+1);
plus(i,j+1); /*plus(i,j);*/ plus(i,j-1);
plus(i+1,j-1); plus(i-1,j); plus(i+1,j+1);
}
}
}
}
/**
* board ij ++
*/
private void plus(int i,int j){
if(i>=0 && j>=0 && i<rows && j<cols){
board3[i][j]=board3[i][j]+1;
}
}
/**
* arter select a cell, this method search for numers and black spaces
* close to the selected cell
* this one is suported by mine who work with recursivity
*/
private void freeSpaces(int i,int j){
/*mine(i-1,j-1);*/ mine(i-1,j); /*mine(i-1,j+1);*/
mine(i,j-1); /*mine(i,j);*/ mine(i,j+1);
/*mine(i+1,j-1)*/; mine(i+1,j); /*mine(i+1,j+1);*/
}
/**
* this create a recursive loop by calling freeSpaces
* print a numbre o " - " in chosen cells
*/
private void mine(int i,int j){
if(i>=0 && j>=0 && i<rows && j<cols){
if(board2[i][j].equals(" . ") && board1[i][j].equals(" . ")){
if(board3[i][j]==0){
board1[i][j]=" - ";
contLeftingCells++;
}else{
board1[i][j]=" "+board3[i][j]+" ";
contLeftingCells++;
}
if(board3[i][j]==0){
freeSpaces(i,j);
}
}
}
}
/**
* this methos check if user has won
*/
public boolean win(){
if((contRight == mins && contFlags == mins) ||contLeftingCells == rows*cols-mins){
printBoard();
System.out.println("You won °u°");
return false;
}
return true;
}
/**
* print mines after lose
*/
private void showMines(){
for(int i =0; i < rows;i++){
for(int j =0; j < cols;j++){
if(board2[i][j].equals(" * ")){
board1[i][j]=" * ";
}
}
}
printBoard();
}
/**
* print actual board
*/
public void printBoard(){
System.out.print(" ");
for(int k =0;k< cols;k++){
System.out.print(" "+k+" ");
}
System.out.println();
for(int i =0; i < rows;i++){
System.out.print(i+" ");
for(int j =0; j < cols;j++){
System.out.print(board1[i][j]);
}
System.out.println();
}
System.out.println();
}
/**
* is to cheat
* just for developer and tester ¬¬ ojo
*/
public void printBoard2(){
for(int i =0; i < rows;i++){
for(int j =0; j < cols;j++){
System.out.print(board2[i][j]);
}
System.out.println();
}
System.out.println();
}
}