-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rook.cpp
112 lines (94 loc) · 3.73 KB
/
Rook.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
// jammon17@georgefox.edu
// Assignment 9
// 2019-04-24
#include <iostream>
#include "Rook.h"
#include "Square.h"
#include "Board.h"
bool Rook::canMoveTo(Square& location) {
bool validMove = false;
Square* moveSquare = &location;
Board* board = Board::getInstance();
// get if the square is occupied
bool isOccupied = moveSquare->isOccupied();
// get the destination squares file and rank
int moveFile = moveSquare->getFile();
int moveRank = moveSquare->getRank();
// get the current locations file and rank
int thisFile = getLocation()->getFile();
int thisRank = getLocation()->getRank();
if (!isOccupied || moveSquare->getOccupant()->getColor() != getColor()) {
// if vertical move
if (moveFile == thisFile) {
// if the move is one square away
if (abs(moveRank - thisRank) == 1) {
if (board->getSquareAt(moveFile, moveRank)->getOccupant()
== nullptr) {
validMove = true;
} else if (board->getSquareAt(moveFile,
moveRank)->getOccupant()->getColor()
!= this->getColor()) {
validMove = true;
}
} else {
// if up move
if (moveRank > thisRank) {
// if the move is clear file
if (board->isClearFile(*board->getSquareAt(thisFile,
thisRank + 1), *board->getSquareAt(moveFile,
moveRank - 1))) {
validMove = true;
}
} else {
// if the move is clear file
if (board->isClearFile(*board->getSquareAt(thisFile,
thisRank - 1), *board->getSquareAt(moveFile,
moveRank + 1))) {
validMove = true;
}
}
}
} // if horizontal move
else if (moveRank == thisRank) {
// if the move is one square away
if (abs(moveFile - thisFile) == 1) {
if (board->getSquareAt(moveFile, moveRank)->getOccupant()
== nullptr) {
validMove = true;
} else if (board->getSquareAt(moveFile,
moveRank)->getOccupant()->getColor()
!= this->getColor()) {
validMove = true;
}
} else {
// if right move
if (moveFile > thisFile) {
// if the move is clear rank
if (board->isClearRank(*board->getSquareAt(thisFile + 1,
thisRank), *board->getSquareAt(moveFile - 1,
moveRank))) {
validMove = true;
}
} else if (moveFile < thisFile) {
// if the move is clear rank
if (board->isClearRank(*board->getSquareAt(thisFile - 1,
thisRank), *board->getSquareAt(moveFile + 1,
moveRank))) {
validMove = true;
}
} else {
// if the single square is clear
if (board->isClearFile(*board->getSquareAt(thisFile,
thisRank - 1), *board->getSquareAt(moveFile,
moveRank + 1))) {
validMove = true;
}
}
}
}
}
return validMove;
}
void Rook::display() {
cout << getColor() + "R" << flush;
}