-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBishop.cpp
48 lines (35 loc) · 1.56 KB
/
Bishop.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
#include"Bishop.h"
Bishop::Bishop(const ObjBinFile& file, const GLboolean color, const GLfloat boardWidth, const GLfloat boardHeight)
: ChessPiece(file, color, boardWidth, boardHeight)
{
this->setBoundingBox(glm::vec3(-0.5f, -1.179602, -0.5f), glm::vec3(0.5f, 1.379539f, 0.5f));
this->scale(0.30f);
}
GLuint Bishop::getClass() const { return BISHOP; }
std::vector<GLint> Bishop::getClassData() const {
std::vector<GLint> data;
return data;
}
std::vector<Move> Bishop::getValidMoves(const std::vector<ChessPiece*>& otherPieces, const GLboolean canEnterCheck) {
/*
Bishops can move in diagonal lines, stopping just before any pieces of the same color,
or on any black pieces
*/
ChessBoard board = this->getBoardState(otherPieces);
std::vector<Move> moves;
std::vector<Move> partialMoves;
//grab the moves for each diagonal direction and add them to the list
partialMoves = this->checkPath(board, Move(-1, -1));
moves.insert(moves.end(), partialMoves.begin(), partialMoves.end());
partialMoves = this->checkPath(board, Move(1, -1));
moves.insert(moves.end(), partialMoves.begin(), partialMoves.end());
partialMoves = this->checkPath(board, Move(-1, 1));
moves.insert(moves.end(), partialMoves.begin(), partialMoves.end());
partialMoves = this->checkPath(board, Move(1, 1));
moves.insert(moves.end(), partialMoves.begin(), partialMoves.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;
}