-
Notifications
You must be signed in to change notification settings - Fork 0
/
CPiece.cpp
175 lines (119 loc) · 3.04 KB
/
CPiece.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
#include <string>
#include "CPiece.h"
#include "AllExceptions.h"
#include "CGameSession.h"
#include "CPawn.h"
#include "CBishop.h"
#include "CKnight.h"
#include "CTower.h"
#include "CKing.h"
#include "CQueen.h"
#include "CBoard.h"
using namespace std;
CPiece::CPiece() : rowPos(-1),colPos(-1), color(WHITE){
}
CPiece::CPiece(COLOR clr, int row, int col) : rowPos(row), colPos(col),color(clr) {
}
CPiece::~CPiece() {
}
bool CPiece::equals(FIGURENAME fig) const{
return tolower(getName()) == tolower(fig);
}
FIGURENAME CPiece::getName() const {
return name;
}
COLOR CPiece::getColor() const {
return color;
}
void CPiece::printPiece(ostream & os) const {
if (color == WHITE)
os << (char) toupper(getName());
else
os << (char) tolower(getName());
}
int CPiece::getRow() const {
return rowPos;
}
int CPiece::getCol() const {
return colPos;
}
void CPiece::setRow(int r){
rowPos = r;
}
void CPiece::setCol(int c){
colPos = c;
}
bool CPiece::isFriendPiece(const CPiece * tmp) const {
return this->getColor() == tmp->getColor();
}
bool CPiece::isFriendPiece(COLOR col) const {
return this->getColor() == col;
}
int CPiece::checkField(int x, int y, const CBoard & board) {
if (y == getCol() && x == getRow())
return 0;
CPiece * tmp = board.getPiece(x, y);
if (tmp != NULL) {
if (isFriendPiece(tmp)) { // friend piece
return 1;
} else {
moveList.add(x, y,rowPos,colPos,tmp);
return 1;
}
} else {
moveList.add(x, y,rowPos,colPos,NULL);
}
return 0;
}
bool CPiece::validLetter(char c){
if(c == '#')
return true;
char tmp = toupper(c);
switch(tmp){
case(PAWN):
case(TOWER):
case(QUEEN):
case(KNIGHT):
case(BISHOP):
case(KING):
return true;
default :
return false;
}
}
CPiece * CPiece::getPieceByLetter(char c,int row,int col){
if(!CPiece::validLetter(c))
throw InvalidFileCharacterException();
COLOR clr;
if(islower(c))
clr = BLACK;
else
clr = WHITE;
switch(toupper(c)){
case('#'): // empty field
return NULL;
case(PAWN):
return new CPawn(clr,row,col);
case(BISHOP):
return new CBishop(clr,row,col);
case(KNIGHT):
return new CKnight(clr,row,col);
case(TOWER):
return new CTower(clr,row,col);
case(QUEEN):
return new CQueen(clr,row,col);
case(KING):
return new CKing(clr,row,col);
}
return NULL;
}
bool CPiece::moveTo(const CMyMove & move, CBoard & board ){
board.moveFigure(move);
return true;
}
int CPiece::getValue() const {
return value;
}
void CPiece::setValue(int val) {
value = val;
}