-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCardData.cpp
236 lines (206 loc) · 5.42 KB
/
CardData.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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
#include "CardData.h"
const string TCardData::Rarities[3] = {"Common", "Uncommon", "Rare" };
TCardData::TCardData(string aName,
string aType,
string aSubTypes,
string aPowerToughness,
string aManaCost,
TCardData::TRarity aRarity,
string aText,
string aEdition)
: Name(aName), Type(aType), SubTypes(aSubTypes), //PowerToughness(aPowerToughness),
//Power(0), Toughness(0),
ManaCost(aManaCost), Text(aText),
Black(0), Blue(0), White(0), Green(0), Red(0),
ConvertedManaCost(0), Rarity(aRarity), Edition(aEdition)
{
unsigned int i;
i = aPowerToughness.find('/');
if (i != string::npos)
{
Power.assign(aPowerToughness, 0, i);
Toughness.assign(aPowerToughness.c_str()+i+1);
}
aManaCost.append(1, ' ');
for (i=0; i<aManaCost.size(); i++)
{
switch(aManaCost[i])
{
case 'U':
Blue++;
ConvertedManaCost++;
break;
case 'B':
Black++;
ConvertedManaCost++;
break;
case 'R':
Red++;
ConvertedManaCost++;
break;
case 'G':
Green++;
ConvertedManaCost++;
break;
case 'W':
White++;
ConvertedManaCost++;
break;
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
case '0':
if (isdigit(aManaCost[i+1]))
{
ConvertedManaCost += (aManaCost[i]-'0')*10 + aManaCost[i+1] - '0';
i++;
}
else
{
ConvertedManaCost += aManaCost[i] - '0';
}
break;
case 'X':
default:
break;
} // case
}
}
TCardColor TCardData::GetColor() const
{
if (!Red && !Green && !White && !Blue && !Black) return cColorless;
if (Red && !Green && !White && !Blue && !Black) return cRed;
if (!Red && Green && !White && !Blue && !Black) return cGreen;
if (!Red && !Green && White && !Blue && !Black) return cWhite;
if (!Red && !Green && !White && Blue && !Black) return cBlue;
if (!Red && !Green && !White && !Blue && Black) return cBlack;
return cColorCount; // ìíîãîöâåòíàÿ
}
/*TCardData& TCardData::operator = (const TCardData& l)
{
Black = l.Black;
Blue = l.Blue;
White = l.White;
Green = l.Green;
Red = l.Red;
ConvertedManaCost = l.ConvertedManaCost;
Name = l.Name;
Type = l.Type;
SubTypes = l.SubTypes;
ManaCost = l.ManaCost;
return *this;
}*/
TCardData* CardDataFactory(string Name)
{
return NULL;
}
bool CompareCardValues(const TCardData* a, const TCardData* b)
{
TCardPile pile;
//return GetExpertMark(a, pile)
//return a->Expert .compare(b->Name);
return false;
}
bool CompareCards(const TCardData* a, const TCardData* b)
{
return a->Name.compare(b->Name);
}
bool operator == (const TCardData* a, const string b)
{
return a->Name == b;
}
TCardColor CharToColor(char c)
{
switch(c)
{
case 'U':
return cBlue;
case 'B':
return cBlack;
case 'R':
return cRed;
case 'G':
return cGreen;
case 'W':
return cWhite;
default:
return cColorless;
}
}
bool TCardComparator::Is(const TCardData* c, const string Value) const
{
return false;
}
bool TCardComparator::operator () (const TCardData* c, const string Value) const
{
return Is(c, Value);
}
bool CompareType::Is (const TCardData* c, const string Value) const
//bool (const TCardData* c, const string Value)
{
return c->Type.find(Value) != string::npos;
}
/*bool TypeEquals::operator == (const TCardData* c)
{
return c->Type.find(Name) != string::npos;
}*/
bool CompareSubType::Is (const TCardData* c, const string Value) const
{
return c->SubTypes.find(Value) != string::npos;
}
bool CompareName::Is (const TCardData* c, const string Value) const
{
return c->Name == Value;
}
bool IncludeText::Is (const TCardData* c, const string Value) const
{
return c->Text.find(Value) != string::npos;
}
bool ComparePower::Is (const TCardData* c, const string Value) const
{
return c->Power == Value;
}
bool CompareToughness::Is (const TCardData* c, const string Value) const
{
return c->Toughness == Value;
}
bool CompareEdition::Is (const TCardData* c, const string Value) const
{
return c->Edition == Value;
}
bool CompareCMC::Is (const TCardData* c, const string Value) const
{
return c->GetCost() == atoi(Value.c_str());
}
TCardComparator& const ComparatorFactory(string Kind, bool& Success)
{
static CompareType aCompareType;
static CompareSubType aCompareSubType;
static CompareName aCompareName;
static IncludeText aIncludeText;
static CompareEdition aCompareEdition;
static ComparePower aComparePower;
static CompareToughness aCompareToughness;
static CompareCMC aCompareCMC;
static TCardComparator dumb;
Success = true;
if (!stricmp(Kind.c_str(), "Type")) return aCompareType;
if (!stricmp(Kind.c_str(), "SubType")) return aCompareSubType;
if (!stricmp(Kind.c_str(), "Name")) return aCompareName;
if (!stricmp(Kind.c_str(), "Text")) return aIncludeText;
if (!stricmp(Kind.c_str(), "Edition")) return aCompareEdition;
if (!stricmp(Kind.c_str(), "Power")) return aComparePower;
if (!stricmp(Kind.c_str(), "Toughness")) return aCompareToughness;
if (!stricmp(Kind.c_str(), "ConvertedManaCost")) return aCompareCMC;
Success = false;
return dumb;
}
void ComparatorRecycler(TCardComparator* c)
{
}