-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomputer.cpp
More file actions
300 lines (222 loc) · 6.35 KB
/
computer.cpp
File metadata and controls
300 lines (222 loc) · 6.35 KB
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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
/***************************************************************************/
/** Microsoft Windows **/
/** Copyright(c) Microsoft Corp., 1991, 1992 **/
/***************************************************************************/
/****************************************************************************
computer.cpp -- wxWidgets port
keithmo
****************************************************************************/
#include "hearts.h"
#include "main.h"
#include "resource.h"
//
// Static members.
//
//
// This array is used to prioritize the search for cards
// to pass. This basically maps the irritating A-K ordering
// used by CARDS.DLL into a more appropriate 2-A ordering.
//
int computer :: _VectorPriority[13] =
{
VECTOR_ACE,
VECTOR_KING,
VECTOR_QUEEN,
VECTOR_JACK,
VECTOR_10,
VECTOR_9,
VECTOR_8,
VECTOR_7,
VECTOR_6,
VECTOR_5,
VECTOR_4,
VECTOR_3,
VECTOR_2
};
//
// This array is used to prioritize the card suits.
//
int computer :: _SuitPriority[4] =
{
INDEX_HEARTS,
INDEX_SPADES,
INDEX_DIAMONDS,
INDEX_CLUBS
};
/****************************************************************************
computer constructor
****************************************************************************/
computer :: computer(int n) : player(n, n)
{
wxString newname;
RegEntry Reg(szRegPath);
newname = Reg.GetString(regvalPName[n-1]);
if (newname.IsEmpty())
newname = GetStringResource(IDS_P1NAME + n - 1);
wxClientDC dc(pMainWnd);
SetName(newname, dc);
} // computer :: computer
/****************************************************************************
Keith: Make sure you Select(true) cards you select, and
SetMode(DONE_SELECTING) before you return.
****************************************************************************/
void computer :: SelectCardsToPass()
{
//
// This will hold the total number of cards that
// have been passed.
//
int cPassed = 0;
int i;
int nSuit;
//
// First we must build our database.
//
ComputeVectors();
//
// Priority 1: Lose the Queen, King, and Ace of Spades.
//
PassCardsInVector( QuerySpadesVector() & QKA_CARDS,
INDEX_SPADES,
&cPassed );
//
// Priority 2: Lose the Jack, Queen, King, and Ace of Hearts.
//
PassCardsInVector( QueryHeartsVector() & JQKA_CARDS,
INDEX_HEARTS,
&cPassed );
//
// Priority 3: Pass any high cards not accompanied by two or
// more low cards.
//
for( i = 0 ; ( i < 4 ) && ( cPassed < 3 ) ; i++ )
{
nSuit = _SuitPriority[i];
if( nSuit == INDEX_SPADES )
{
continue;
}
if( CountBits( _CardVectors[nSuit] & LOW_CARDS ) < 2 )
{
PassCardsInVector( _CardVectors[nSuit] & HIGH_CARDS,
nSuit,
&cPassed );
}
}
//
// Priority 4: If we have the opportunity to "short suit" our
// hand, do it.
//
for( i = 0 ; ( i < 4 ) && ( cPassed < 3 ) ; i++ )
{
nSuit = _SuitPriority[i];
if( CountBits( _CardVectors[nSuit] ) <= ( 3 - cPassed ) )
{
PassCardsInVector( _CardVectors[nSuit],
nSuit,
&cPassed );
}
}
//
// Priority 5: Hell, I don't know. Just find some cards to pass.
//
for( i = 0 ; ( i < 4 ) && ( cPassed < 3 ) ; i++ )
{
nSuit = _SuitPriority[i];
PassCardsInVector( _CardVectors[nSuit],
nSuit,
&cPassed );
}
SetMode( DONE_SELECTING );
} // computer :: SelectCardsToPass
/****************************************************************************
ComputeVectors
This method sets the _CardVectors[] array to reflect the current set
of cards held by the computer.
****************************************************************************/
void computer :: ComputeVectors( void )
{
//
// First, clear out the current vectors.
//
_CardVectors[0] = 0;
_CardVectors[1] = 0;
_CardVectors[2] = 0;
_CardVectors[3] = 0;
//
// Now, scan the currently held cards, updating the vectors.
//
for( int i = 0 ; i < 13 ; i++ )
{
if( cd[i].IsInHand() )
{
AddCard( cd[i].ID() );
}
}
} // computer :: ComputeVectors
/****************************************************************************
PassCardsInVector
****************************************************************************/
void computer :: PassCardsInVector( int nVector, int nSuit, int * pcPassed )
{
int tmpVector;
//
// Don't even try if the vector is already empty or we've already
// passed three cards.
//
if( ( nVector == 0 ) || ( *pcPassed >= 3 ) )
return;
//
// Scan the cards in our hand. Pass all of those whose suit
// matches nSuit & are in nVector. Prioritize the search
// via the _VectorPriority array.
//
for( int m = 0 ; ( m < 13 ) && ( *pcPassed < 3 ) ; m++ )
{
tmpVector = nVector & _VectorPriority[m];
if( tmpVector == 0 )
continue;
for( int i = 0 ; i < 13 ; i++ )
{
if( cd[i].Suit() != nSuit )
continue;
if( ( tmpVector & CardToVector( cd[i].ID() ) ) == 0 )
continue;
//
// We found a card. Mark it as selected.
//
cd[i].Select( true );
//
// Remove the card from our local vector. Also
// remove it from the card database and update the
// number of passed cards.
//
nVector &= ~CardToVector( cd[i].ID() );
RemoveCard( cd[i].ID() );
(*pcPassed)++;
//
// Since there's always *exactly* one bit set in
// tmpVector, and we've found the card for that
// bit, we can exit this inner loop.
//
break;
}
//
// If the vector has become empty, we can terminate the
// outer loop.
//
if( nVector == 0 )
break;
}
} // computer :: PassCardsInVector
/****************************************************************************
CountBits
****************************************************************************/
int computer :: CountBits( int x ) const
{
x = ( ( x >> 1 ) & 0x5555 ) + ( x & 0x5555 );
x = ( ( x >> 2 ) & 0x3333 ) + ( x & 0x3333 );
x = ( ( x >> 4 ) & 0x0f0f ) + ( x & 0x0f0f );
x = ( ( x >> 8 ) & 0x00ff ) + ( x & 0x00ff );
return x;
} // computer :: CountBits