-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKnight.cpp
68 lines (51 loc) · 1.99 KB
/
Knight.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
#include"Knight.h"
Knight::Knight(const ObjBinFile& file, const GLboolean color, const GLfloat boardWidth, const GLfloat boardHeight)
: ChessPiece(file, color, boardWidth, boardHeight)
{
this->setBoundingBox(glm::vec3(-0.7f, -1.0000f, -0.7f), glm::vec3(0.7f, 2.374836f, 0.7f));
this->rotate(- PI / 2, glm::vec3(0.0f, 1.0f, 0.0f));
//knights don't have rotational symetry, so if its black we need to rotate it 180 degrees
if (color == BLACK) {
this->rotate(PI, glm::vec3(0.0f, 1.0f, 0.0f));
}
this->scale(0.18f);
}
GLuint Knight::getClass() const { return KNIGHT; }
std::vector<GLint> Knight::getClassData() const {
std::vector<GLint> data;
return data;
}
std::vector<Move> Knight::getValidMoves(const std::vector<ChessPiece*>& otherPieces, const GLboolean canEnterCheck) {
/*
Knights can move in 'L' shapes, regardless of pieces in between
*/
ChessBoard board = this->getBoardState(otherPieces);
std::vector<Move> moves;
std::vector<Move> tempMoves;
std::vector<Move> partialMoves;
//a way to express knight moves is to compine +/- 1 with +/- 2, so long as x != z
//i.e +1, +2 -1 +2 -1 -2
for (GLint dx = -2; dx <= 2; dx += 1) {
for (GLint dz = -2; dz <= 2; dz += 1) {
//well check if the move is valid if x != 0, z != 0 and z != x
if (dx != 0 && dz != 0 && abs(dz) != abs(dx)) {
tempMoves = this->checkHook(board, Move(dx, dz));
moves.insert(moves.begin(), tempMoves.begin(), tempMoves.end());
}
}
}
//if they are not allowed to move into check, filter out moves that put them in check
if (!canEnterCheck) {
this->filterByCheck(otherPieces, moves);
}
return moves;
}
std::vector<Move> Knight::checkHook(const ChessBoard& board, const Move& dMove) const {
GLint ourColor = this->color == WHITE ? WHITE_PIECE : BLACK_PIECE;
Move target = this->chessPosition + dMove;
std::vector<Move> moves;
if (target.onBoard() && board.at(target) != ourColor) {
moves.push_back(target);
}
return moves;
}