本文整理汇总了C++中Piece::GetColor方法的典型用法代码示例。如果您正苦于以下问题:C++ Piece::GetColor方法的具体用法?C++ Piece::GetColor怎么用?C++ Piece::GetColor使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Piece
的用法示例。
在下文中一共展示了Piece::GetColor方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: Forward_left
void Queen::Forward_left(ChessBoard * board) {
int i = 1;
while (row - i >= 0 && column - i >= 0) {
Piece * piece = board->GetPiece(row-i, column-i);
if ( piece != NULL) {
if ( piece->GetColor() != color) {
BoardPosition bp(row-i, column-i);
movements->insert(bp);
}
break;
}
BoardPosition bp(row-i, column-i);
movements->insert(bp);
i++;
}
}
示例2: Back
void Queen::Back(ChessBoard * board) {
int i = 1;
while (row+i <= 7) {
Piece * piece = board->GetPiece(row+i, column);
if ( piece != NULL) {
if ( piece->GetColor() != color) {
BoardPosition bp(row+i, column);
movements->insert(bp);
}
break;
}
BoardPosition bp(row+i, column);
movements->insert(bp);
i++;
}
}
示例3: PrintPiecesOnTheBoard
/*DONE*/
void ChessXMLSaver::PrintPiecesOnTheBoard(Piece *** board)
{
//For each cell on the board...
for(int row = 0; row < NUMROWS; row++)
{
for(int col = 0; col < NUMCOLS; col++)
{
//Get the piece at this location.
Piece * p = board[row][col];
//If there isn't a piece there, then don't print a <piece> child.
if(p == NULL)
{
continue;
}
//But if there is a piece, print its data to the file.
file << "\t\t<piece type=\"";
file << ConvertPieceTypeToString(p->GetType()) << "\" ";
file << "color=\"";
file << ConvertPieceColorToString(p->GetColor()) << "\" ";
file << "row=\"" << row << "\" column=\"" << col << "\"/>" << endl;
}
}
}