-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcard.cpp
47 lines (36 loc) · 964 Bytes
/
card.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
//
// Created by eitan on 11/19/15.
//
#include <iostream>
#include <iomanip>
#include "card.h"
namespace grandeur {
Card popFromDeck(deck_t dt, Cards& cards) {
const auto iter = std::find_if(cards.begin(), cards.end(),
[dt](const Card& card){ return card.id_.type_ == dt; });
if (cards.end() == iter) {
return NULL_CARD;
}
else {
auto ret = *iter;
cards.erase(iter);
return ret;
}
}
std::ostream&
operator<<(std::ostream& os, const CardID& id)
{
static constexpr const char* deckName[3] = {"L", "M", "H"};
os << deckName[id.type_] << "," << std::setw(2) << id.seq_;
return os;
}
std::ostream&
operator<<(std::ostream& os, const Card& card)
{
os << "id: " << card.id_ << " ";
os << "cost: " << card.cost_ << " ";
os << "provides: " << color2char[card.color_] << " ";
os << "points: " << card.points_;
return os;
}
} // namespace