-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvalidmoves.cpp
554 lines (469 loc) · 13.4 KB
/
validmoves.cpp
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
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
#include <Arduino.h>
#include "chessfunctions.h"
#include "specialcases.h"
#define EMPTY 0
#define W_PAWN 1
#define W_ROOK 2
#define W_KNIGHT 3
#define W_BISHOP 4
#define W_KING 5
#define W_QUEEN 6
#define B_PAWN -1
#define B_ROOK -2
#define B_KNIGHT -3
#define B_BISHOP -4
#define B_KING -5
#define B_QUEEN -6
//==============================================================================
/*
Function that returns a boolean based on whether or not a move is valid for
a specified piece
*/
bool validateMove(int piecetomove, int selX, int selY, int boardtouse[][8]) {
bool valid = false;
switch (piecetomove) {
case W_PAWN:
// valid if pawn is moved forward on an empty space
if (boardtouse[selY][selX] == EMPTY && selX == chosenX){
//normal move forward
if (selY == chosenY -1) {
valid = true;
}
//2 spaces at the beginning
else if (selY == chosenY - 2 && chosenY == 6 && boardtouse[selY+1][selX] == EMPTY) {
valid = true;
p1_pawn2spaces[selX]=1;//en_passant
p1_pawn2spaces[8]=1;
}
}
//valid if diagonal, and pawn eats opponent
else if ((selX == chosenX -1 || selX == chosenX + 1) && selY == chosenY - 1 && boardtouse[selY][selX] < 0 ) {
valid = true;
}
break;
case B_PAWN:
// valid if pawn is moved forward on an empty space
if (boardtouse[selY][selX] == EMPTY && selX == chosenX){
//normal move forward
if (selY == chosenY + 1) {
valid = true;
}
//2 spaces at the beginning
else if (selY == chosenY + 2 && chosenY == 1 && boardtouse[selY-1][selX] == EMPTY) {
valid = true;
p2_pawn2spaces[selX]=1;//en_passant
p2_pawn2spaces[8]=1;
}
}
//valid if diagonal, and pawn eats opponent
else if ((selX == chosenX -1 || selX == chosenX + 1) && selY == chosenY + 1 && boardtouse[selY][selX] > 0 ) {
valid = true;
}
break;
case W_ROOK:
//valid if moved horizontally or vertically but not both
if (selX==chosenX || selY==chosenY){
valid = true;
}
break;
case B_ROOK:
//valid if moved horizontally or vertically but not both
if (selX==chosenX || selY==chosenY){
valid = true;
}
break;
case W_KNIGHT:
//valid for 2 blocks up/down and 1 to the right/left
if(selX==chosenX+1 && selY==chosenY+2){
valid =true;
}
else if(selX==chosenX+1 && selY==chosenY-2){
valid =true;
}
else if(selX==chosenX-1 && selY==chosenY+2){
valid =true;
}
else if(selX==chosenX-1 && selY==chosenY-2){
valid =true;
}
//valid for 2 blocks left/right and 1 up/down
if(selY==chosenY+1 && selX==chosenX+2){
valid =true;
}
else if(selY==chosenY+1 && selX==chosenX-2){
valid =true;
}
else if(selY==chosenY-1 && selX==chosenX+2){
valid =true;
}
else if(selY==chosenY-1 && selX==chosenX-2){
valid =true;
}
break;
case B_KNIGHT:
//valid for 2 blocks up/down and 1 to the right/left
if(selX==chosenX+1 && selY==chosenY+2){
valid =true;
}
else if(selX==chosenX+1 && selY==chosenY-2){
valid =true;
}
else if(selX==chosenX-1 && selY==chosenY+2){
valid =true;
}
else if(selX==chosenX-1 && selY==chosenY-2){
valid =true;
}
//valid for 2 blocks left/right and 1 up/down
if(selY==chosenY+1 && selX==chosenX+2){
valid =true;
}
else if(selY==chosenY+1 && selX==chosenX-2){
valid =true;
}
else if(selY==chosenY-1 && selX==chosenX+2){
valid =true;
}
else if(selY==chosenY-1 && selX==chosenX-2){
valid =true;
}
break;
case W_BISHOP:
//diagonals, so (x,y) = (x+/-i,y+/-i) or (x+/-i,y-/+i)
for(int i=-7; i<8;i++){
if(selX==chosenX+i && selY==chosenY+i || selX==chosenX-i && selY == chosenY+i){
valid=true;
break;
}
}
break;
case B_BISHOP:
for(int i=-7; i<8;i++){
if(selX==chosenX+i && selY==chosenY+i || selX==chosenX-i && selY == chosenY+i){
valid=true;
break;
}
}
break;
case W_KING:
//valid for 2 blocks up/down and 1 to the right/left
if(abs(selX-chosenX)<=1 && abs(selY-chosenY)<=1 && boardtouse[selY][selX] <= 0){
valid=true;
}
break;
case B_KING:
//valid for 2 blocks up/down and 1 to the right/left
if(abs(selX-chosenX)<=1 && abs(selY-chosenY)<=1 && boardtouse[selY][selX] >=0){
valid=true;
}
break;
case W_QUEEN:
//combination of bishop and rook
if (selX==chosenX || selY==chosenY){
valid = true;
break;
}
for(int i=-7; i<8;i++){
if(selX==chosenX+i && selY==chosenY+i || selX==chosenX-i && selY == chosenY+i){
valid=true;
break;
}
}
case B_QUEEN:
if (selX==chosenX || selY==chosenY){
valid = true;
break;
}
for(int i=-7; i<8;i++){
if(selX==chosenX+i && selY==chosenY+i || selX==chosenX-i && selY == chosenY+i){
valid=true;
break;
}
}
}
//cant eat your own pieces
if (currentplayer == 1 && boardtouse[selY][selX] > 0) {
valid = false;
}
else if ( currentplayer == 2 && boardtouse[selY][selX] < 0) {
valid = false;
}
return valid;
}
/*
Function that returns a boolean based on whether or not a move is being
obstructed by another piece
*/
bool checkObstruction(int piece, int selX, int selY, int boardtouse[][8]) {
bool valid = true;
// checking the obstruction for vertical, upward lines of attack
if ( (abs(piece) == W_QUEEN || abs(piece) == W_ROOK) && selX == chosenX && selY < chosenY) {
for (int i = chosenY-1; i > selY; i--) {
if (boardtouse[i][chosenX] != EMPTY) {
valid = false;
break;
}
}
}
// checking the obstruction for vertical, downward lines of attack
else if ( (abs(piece) == W_QUEEN || abs(piece) == W_ROOK) && selX == chosenX && selY > chosenY) {
for (int i = chosenY+1; i < selY; i++) {
if (boardtouse[i][chosenX] != EMPTY) {
valid = false;
break;
}
}
}
// horizontal, left lines of attack
else if ( (abs(piece) == W_QUEEN || abs(piece) == W_ROOK) && selY == chosenY && selX < chosenX) {
for (int i = chosenX-1; i > selX; i--) {
if (boardtouse[chosenY][i] != EMPTY) {
valid = false;
break;
}
}
}
// horizontal, right lines of attack
else if ( (abs(piece) == W_QUEEN || abs(piece) == W_ROOK) && selY == chosenY && selX > chosenX) {
for (int i = chosenX+1; i < selX; i++) {
if (boardtouse[chosenY][i] != EMPTY) {
valid = false;
break;
}
}
}
// diagonal, top right
else if ( (abs(piece) == W_QUEEN || abs(piece) == W_BISHOP) && selX > chosenX && selY < chosenY) {
int y = chosenY;
for (int i=chosenX + 1; i< selX;i++){
y -= 1;
if (boardtouse[y][i] != EMPTY) {
valid = false;
break;
}
}
}
// diagonal, bottom left
else if ( (abs(piece) == W_QUEEN || abs(piece) == W_BISHOP) && selX < chosenX && selY > chosenY) {
int y = chosenY;
for (int i=chosenX - 1; i > selX;i--){
y += 1;
if (boardtouse[y][i] != EMPTY) {
valid = false;
break;
}
}
}
// diagonal, top left
else if ( (abs(piece) == W_QUEEN || abs(piece) == W_BISHOP) && selX < chosenX && selY < chosenY) {
int y = chosenY;
for (int i=chosenX - 1; i > selX;i--){
y -= 1;
if (boardtouse[y][i] != EMPTY) {
valid = false;
break;
}
}
}
// diagonal, bottom right
else if ( (abs(piece) == W_QUEEN || abs(piece) == W_BISHOP) && selX > chosenX && selY > chosenY) {
int y = chosenY;
for (int i=chosenX + 1; i < selX;i++){
y += 1;
if (boardtouse[y][i] != EMPTY) {
valid = false;
break;
}
}
}
return valid;
}
void highlightValid(int pieceToMove){
//this function tests all possible squares by calling the validateMove function
//repeatedly
for (int i=0; i<8; i++){
for(int j=0; j<8; j++){
if ( validateMove(pieceToMove,i,j,board) && checkObstruction(pieceToMove,i,j,board) ){
highlightSquare(i,j,0x600F);
}
}
}
}
void unhighlightValid(int pieceToMove){
// unhighlights squares highlighted by highlightValid
for (int i=0; i<8; i++){
for(int j=0; j<8; j++){
if ( validateMove(pieceToMove,i,j,board) && checkObstruction(pieceToMove,i,j,board) ){
unhighlightSquare(i,j);
}
}
}
}
/*
Function that returns a boolean based on whether the black king is in check
If you specify the parameters, it takes that piece and moves it to the
specified coordinates in a 'fakeboard' to simulate a move that may or may not
be in check
*/
bool checkOnBlack(int piece, int selX, int selY) {
bool check = false;
// global variables that we are going to change in this simulation, but want to
// preserve when we leave the function
int actualChosenX = chosenX;
int actualChosenY = chosenY;
int actualplayer = currentplayer;
int fakeboard[8][8];
memcpy(fakeboard, board, 8*8*sizeof(int));
//if piece not specified, dont rearrange the board
if (piece != 20) {
fakeboard[chosenY][chosenX] = EMPTY;
fakeboard[selY][selX] = piece;
}
//in order for the checks to work, we have to 'fake' the current player
//and the chosen for the appropriate situation
currentplayer = 1;
//iterate through every square to find pieces
for (int i=0; i<8; i++){
for(int j=0; j<8; j++){
//find the white pieces
if (fakeboard[j][i] > 0) {
//interate through every square for every white piece to see if they're targetting the black king
for (int a=0; a<8; a++){
for(int b=0; b<8; b++){
chosenX = i;
chosenY = j;
//if move is valid and targetting the king
if ( fakeboard[b][a] == B_KING && validateMove(fakeboard[j][i],a,b,fakeboard) && checkObstruction(fakeboard[j][i],a,b,fakeboard) ){
check = true;
}
}
}
}
}
}
//revert the changes necessary for the checks
currentplayer = actualplayer;
chosenX = actualChosenX;
chosenY = actualChosenY;
return check;
}
/*
Function that returns a boolean based on whether the white king is in check
If you specify the parameters, it takes that piece and moves it to the
specified coordinates in a 'fakeboard' to simulate a move that may or may not
be in check
*/
bool checkOnWhite(int piece, int selX, int selY) {
bool check = false;
// global variables that we are going to change in this simulation, but want to
// preserve when we leave the function
int actualChosenX = chosenX;
int actualChosenY = chosenY;
int actualplayer = currentplayer;
//in order to make the potential move for the check, but not affect the actual board
int fakeboard[8][8];
memcpy(fakeboard, board, 8*8*sizeof(int));
//if piece not specified, dont rearrange the board
if (piece != 20) {
fakeboard[chosenY][chosenX] = EMPTY;
fakeboard[selY][selX] = piece;
}
//in order for the checks to work, we have to 'fake' the current player
//and the chosen for the appropriate situation
currentplayer = 2;
//iterate through every square to find pieces
for (int i=0; i<8; i++){
for(int j=0; j<8; j++){
//find the black pieces
if (fakeboard[j][i] < 0) {
//interate through every square for every white piece to see if they're targetting the white king
for (int a=0; a<8; a++){
for(int b=0; b<8; b++){
chosenX = i;
chosenY = j;
//if move is valid and targetting the white king
if (validateMove(fakeboard[j][i],a,b,fakeboard) && checkObstruction(fakeboard[j][i],a,b,fakeboard) && fakeboard[b][a] == W_KING ){
check = true;
}
}
}
}
}
}
//revert the changes necessary for the checks
currentplayer = actualplayer;
chosenX = actualChosenX;
chosenY = actualChosenY;
return check;
}
/*
Function that checks if someone is in checkmate, and returns true if so.
@param: "white" or "black" will check for a checkmate on the white or black king
*/
bool checkmate(String color) {
bool checkmate = true;
// global variables that we are going to change in this simulation, but want to
// preserve when we leave the function
int actualChosenX = chosenX;
int actualChosenY = chosenY;
int actualplayer = currentplayer;
//see if white is in checkmate
if (color == "white") {
currentplayer = 1;
// iterate to find pieces
for (int x=0; x < 8; x++ ) {
for (int y=0; y<8; y++) {
//find the white pieces
if (board[y][x] > 0) {
//again simulating behaviour cuz global variables are dumb
chosenX = x;
chosenY = y;
// perform 'moves' on every possible square
for (int a=0; a < 8; a++) {
for (int b = 0; b < 8; b++) {
// there's no checkmate if a valid move exists thats not in check
if (validateMove(board[y][x],a,b,board) && checkObstruction(board[y][x],a,b,board) && !checkOnWhite(board[y][x],a,b)) {
checkmate = false;
currentplayer = actualplayer;
chosenX = actualChosenX;
chosenY = actualChosenY;
return checkmate;
}
}
}
}
}
}
}
else if (color == "black") {
currentplayer = 2;
//iterate through all the squares to find pieces
for (int x=0; x < 8; x++ ) {
for (int y=0; y<8; y++) {
//find the black pieces
if (board[y][x] < 0) {
//again simulating behaviour cuz global variables are dumb
chosenX = x;
chosenY = y;
for (int a=0; a < 8; a++) {
for (int b = 0; b < 8; b++) {
// there's no checkmate if a valid move exists thats not in check
if (validateMove(board[y][x],a,b,board) && checkObstruction(board[y][x],a,b,board) && !checkOnBlack(board[y][x],a,b)) {
checkmate = false;
currentplayer = actualplayer;
chosenX = actualChosenX;
chosenY = actualChosenY;
return checkmate;
}
}
}
}
}
}
}
//revert the changes necessary for the checks
currentplayer = actualplayer;
chosenX = actualChosenX;
chosenY = actualChosenY;
return checkmate;
}