-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBoard.java
More file actions
352 lines (347 loc) · 7.67 KB
/
Copy pathBoard.java
File metadata and controls
352 lines (347 loc) · 7.67 KB
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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
public class Board {
private int _maxNum;
private int _num0s;
private int _score;
private Block[][] _board;
public Board() {
_maxNum = 0;
_num0s = 16;
_score = 0;
_board = new Block[4][4];
for (int i = 0; i < 4; i++) {
for (int i2 = 0; i2 < 4; i2++) {
_board[i][i2] = new Block();
}
}
}
public void addBlock() {
int pos = (int)(Math.random() * _num0s); //Selects a position from empty blocks
int index = 0; //Current index
if (_num0s == 0) {return;} //Does nothing if there are no empty spaces
for (int r = 0; r < 4; r++) {
for (int c = 0; c < 4; c++) {
if(_board[r][c].isEmpty()){
if (index == pos) { //If the index matches the position, set the block value to 2 or 4
_board[r][c].set(((int)(Math.random()*2)+1)*2);
_num0s--; //Decreases number of empty spaces by one
return;
}
index++;
}
}
}
}
public int slideLeftRow(int r){
int moves=0;
for(int p=1; p<4; p++){
for(int i=0;i<3;i++){
if (_board[r][i].isEmpty()){
if(!_board[r][i+1].isEmpty()){ //Does nothing for two empty blocks
_board[r][i].set(_board[r][i+1].get());
_board[r][i+1].set(0);
moves++;
}
}
}
}
return moves; //Keeps track of actions
}
public int mergeLeft(int r){
int merges=0;
for(int i=0;i<3;i++){
if((_board[r][i].get()==_board[r][i+1].get())&&!_board[r][i].isEmpty()){ //Ignores zeroes
_board[r][i].set(_board[r][i].get()*2); //Double value of block
if(_board[r][i].get()>_maxNum){
_maxNum=_board[r][i].get(); //Set _maxNum if this block value is the greatest
}
_score+=_board[r][i].get(); //Add to score
_board[r][i+1].set(0); //Delete previous block
_num0s++;
slideLeftRow(r); //Slides again to make up for open blocks due to merge
merges++;
}
}
return merges; //Keeps track of merges
}
public void slideLeft(){
int moves=0;
int merges=0;
for(int i=0;i<4;i++){
moves+=slideLeftRow(i);
merges+=mergeLeft(i);
}
if(moves+merges>0){ //Only if an action is made
addBlock();
}
}
public int slideRightRow(int r){
int moves=0;
for(int p=1; p<4; p++){
for(int i=3;i>0;i--){
if (_board[r][i].isEmpty()){
if(!_board[r][i-1].isEmpty()){
_board[r][i].set(_board[r][i-1].get());
_board[r][i-1].set(0);
moves++;
}
}
}
}
return moves;
}
public int mergeRight(int r){
int merges=0;
for(int i=3;i>0;i--){
if((_board[r][i].get()==_board[r][i-1].get())&&!_board[r][i].isEmpty()){
_board[r][i].set(_board[r][i].get()*2);
if(_board[r][i].get()>_maxNum){
_maxNum=_board[r][i].get();
}
_score+=_board[r][i].get();
_board[r][i-1].set(0);
_num0s++;
slideRightRow(r);
merges++;
}
}
return merges;
}
public void slideRight(){
int moves=0;
int merges=0;
for(int i=0;i<4;i++){
moves+=slideRightRow(i);
merges+=mergeRight(i);
}
if(moves+merges>0){
addBlock();
}
}
public int slideUpCol(int c){
int moves=0;
for(int p=1; p<4; p++){
for(int i=0;i<3;i++){
if (_board[i][c].isEmpty()){
if(!_board[i+1][c].isEmpty()){
_board[i][c].set(_board[i+1][c].get());
_board[i+1][c].set(0);
moves++;
}
}
}
}
return moves;
}
public int mergeUp(int c){
int merges=0;
for(int i=0;i<3;i++){
if((_board[i][c].get()==_board[i+1][c].get())&&!_board[i][c].isEmpty()){
_board[i][c].set(_board[i][c].get()*2);
if(_board[i][c].get()>_maxNum){
_maxNum=_board[i][c].get();
}
_score+=_board[i][c].get();
_board[i+1][c].set(0);
_num0s++;
slideUpCol(c);
merges++;
}
}
return merges;
}
public void slideUp(){
int moves=0;
int merges=0;
for(int i=0;i<4;i++){
moves+=slideUpCol(i);
merges+=mergeUp(i);
}
if(moves+merges>0){
addBlock();
}
}
public int slideDownCol(int c){
int moves=0;
for(int p=1; p<4; p++){
for(int i=3;i>0;i--){
if (_board[i][c].isEmpty()){
if(!_board[i-1][c].isEmpty()){
_board[i][c].set(_board[i-1][c].get());
_board[i-1][c].set(0);
moves++;
}
}
}
}
return moves;
}
public int mergeDown(int c){
int merges=0;
for(int i=3;i>0;i--){
if((_board[i][c].get()==_board[i-1][c].get())&&!_board[i][c].isEmpty()){
_board[i][c].set(_board[i][c].get()*2);
if(_board[i][c].get()>_maxNum){
_maxNum=_board[i][c].get();
}
_score+=_board[i][c].get();
_board[i-1][c].set(0);
_num0s++;
slideDownCol(c);
merges++;
}
}
return merges;
}
public void slideDown(){
int moves=0;
int merges=0;
for(int i=0;i<4;i++){
moves+=slideDownCol(i);
merges+=mergeDown(i);
}
if(moves+merges>0){
addBlock();
}
}
public int slideLeftRowTest(int r){ //Tests to see if an action would be made for gameStatus()
int moves=0;
for(int p=1; p<4; p++){
for(int i=0;i<3;i++){
if (_board[r][i].isEmpty()){
if(!_board[r][i+1].isEmpty()){
moves++;
}
}
}
}
return moves;
}
public int mergeLeftTest(int r){ //Tests to see if an action would be made for gameStatus()
int merges=0;
for(int i=0;i<3;i++){
if((_board[r][i].get()==_board[r][i+1].get())&&!_board[r][i].isEmpty()){
merges++;
}
}
return merges;
}
public int slideLeftTest(){
int moves=0;
int merges=0;
for(int i=0;i<4;i++){
moves+=slideLeftRowTest(i);
merges+=mergeLeftTest(i);
}
return moves+merges;
}
public int slideRightRowTest(int r){
int moves=0;
for(int p=1; p<4; p++){
for(int i=3;i>0;i--){
if (_board[r][i].isEmpty()){
if(!_board[r][i-1].isEmpty()){
moves++;
}
}
}
}
return moves;
}
public int mergeRightTest(int r){
int merges=0;
for(int i=3;i>0;i--){
if((_board[r][i].get()==_board[r][i-1].get())&&!_board[r][i].isEmpty()){
merges++;
}
}
return merges;
}
public int slideRightTest(){
int moves=0;
int merges=0;
for(int i=0;i<4;i++){
moves+=slideRightRowTest(i);
merges+=mergeRightTest(i);
}
return moves+merges;
}
public int slideUpColTest(int c){
int moves=0;
for(int p=1; p<4; p++){
for(int i=0;i<3;i++){
if (_board[i][c].isEmpty()){
if(!_board[i+1][c].isEmpty()){
moves++;
}
}
}
}
return moves;
}
public int mergeUpTest(int c){
int merges=0;
for(int i=0;i<3;i++){
if((_board[i][c].get()==_board[i+1][c].get())&&!_board[i][c].isEmpty()){
merges++;
}
}
return merges;
}
public int slideUpTest(){
int moves=0;
int merges=0;
for(int i=0;i<4;i++){
moves+=slideUpColTest(i);
merges+=mergeUpTest(i);
}
return moves+merges;
}
public int slideDownColTest(int c){
int moves=0;
for(int p=1; p<4; p++){
for(int i=3;i>0;i--){
if (_board[i][c].isEmpty()){
if(!_board[i-1][c].isEmpty()){
moves++;
}
}
}
}
return moves;
}
public int mergeDownTest(int c){
int merges=0;
for(int i=3;i>0;i--){
if((_board[i][c].get()==_board[i-1][c].get())&&!_board[i][c].isEmpty()){
merges++;
}
}
return merges;
}
public int slideDownTest(){
int moves=0;
int merges=0;
for(int i=0;i<4;i++){
moves+=slideDownColTest(i);
merges+=mergeDownTest(i);
}
return moves+merges;
}
public String gameStatus() {
if (_maxNum >= 2048) {return "Win";} //You win if you have a block with a value of 2048 or higher
if (slideRightTest()+slideLeftTest()+slideUpTest()+slideDownTest()>0) {return "Ongoing";} //If an action is possible in any direction, the game is ongoing
return "Loss";
}
public int getScore() { return _score; }
public String toString(){
String foo = "----------------------\n";
for( int i =0; i < 4; i++ ) {
foo += "| ";
for( int j=0; j < 4; j++ ) {
foo +=_board[i][j] + "|"; //get(i+1,j+1)
}
foo += "\n----------------------\n";
}
return foo;
}
}