本文整理汇总了C++中Hand::addCard方法的典型用法代码示例。如果您正苦于以下问题:C++ Hand::addCard方法的具体用法?C++ Hand::addCard怎么用?C++ Hand::addCard使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Hand
的用法示例。
在下文中一共展示了Hand::addCard方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: createTrump
Hand* OldMaid::createTrump()
{
static Hand trump ;
// 各スート53枚のカードを生成する
for ( int number = 1 ; number <= 13 ; ++number )
{
trump.addCard( new Card( Card::SUIT_CLUB, number ) ) ;
trump.addCard( new Card( Card::SUIT_DIAMOND, number ) ) ;
trump.addCard( new Card( Card::SUIT_HEART, number ) ) ;
trump.addCard( new Card( Card::SUIT_SPADE, number ) ) ;
}
// ジョーカーの作成
trump.addCard( new Card( Card::JOKER, 0 ) ) ;
return &trump ;
}
示例2: getLegalPlays
// Check for legal plays a player have
// A legal play is:
// - Card in player's hand
// - 7 of anything
// - Card with the same suit and adjecent rank as any card on board
Hand Player::getLegalPlays (const Deck& deck, const Board& board) const {
Hand hand;
for (int i=0; i<deck.size(); i++) {
Card temp = deck.cardAt(i);
if (currentHand_.hasCard(temp)){ // Check if player has card
if (board.isLegalPlay(temp)){ // Check if it's a legal play in the board
hand.addCard(temp); // Add card to possible legal plays
}
}
}
return hand; // Return legal plays
}