本文整理汇总了C++中Piece::GetType方法的典型用法代码示例。如果您正苦于以下问题:C++ Piece::GetType方法的具体用法?C++ Piece::GetType怎么用?C++ Piece::GetType使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Piece
的用法示例。
在下文中一共展示了Piece::GetType方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: 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;
}
}
}
示例2: Print
void Board::Print() const {
bool colour_toggle = false;
char rank = 8;
for (; rank >= 1; rank--) {
std::cout << char('0' + rank) << " ";
char file = 'A';
for (; file <= 'H'; file++) {
Piece p = GetPieceAt(rank, file);
if (p.GetType() == Piece::None) {
std::cout << (colour_toggle ? '.' : ' ');
}
else {
std::cout << p.GetText();
}
colour_toggle = !colour_toggle;
std::cout << ' ';
}
std::cout << std::endl;
colour_toggle = !colour_toggle;
}
std::cout << " A B C D E F G H " << std::endl;
}