support.c revision 1.9 1 /* $NetBSD: support.c,v 1.9 2006/03/18 23:14:45 christos Exp $ */
2
3 /*-
4 * Copyright (c) 1980, 1993
5 * The Regents of the University of California. All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. Neither the name of the University nor the names of its contributors
16 * may be used to endorse or promote products derived from this software
17 * without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * SUCH DAMAGE.
30 */
31
32 #include <sys/cdefs.h>
33 #ifndef lint
34 #if 0
35 static char sccsid[] = "@(#)support.c 8.1 (Berkeley) 5/31/93";
36 #else
37 __RCSID("$NetBSD: support.c,v 1.9 2006/03/18 23:14:45 christos Exp $");
38 #endif
39 #endif /* not lint */
40
41 #include <curses.h>
42 #include <string.h>
43
44 #include "deck.h"
45 #include "cribbage.h"
46 #include "cribcur.h"
47
48 #define NTV 10 /* number scores to test */
49
50 /* score to test reachability of, and order to test them in */
51 const int tv[NTV] = {8, 7, 9, 6, 11, 12, 13, 14, 10, 5};
52
53 /*
54 * computer chooses what to play in pegging...
55 * only called if no playable card will score points
56 */
57 int
58 cchose(const CARD h[], int n, int s)
59 {
60 int i, j, l;
61
62 if (n <= 1)
63 return (0);
64 if (s < 4) { /* try for good value */
65 if ((j = anysumto(h, n, s, 4)) >= 0)
66 return (j);
67 if ((j = anysumto(h, n, s, 3)) >= 0 && s == 0)
68 return (j);
69 }
70 if (s > 0 && s < 20) {
71 /* try for retaliation to 31 */
72 for (i = 1; i <= 10; i++) {
73 if ((j = anysumto(h, n, s, 21 - i)) >= 0) {
74 if ((l = numofval(h, n, i)) > 0) {
75 if (l > 1 || VAL(h[j].rank) != i)
76 return (j);
77 }
78 }
79 }
80 }
81 if (s < 15) {
82 /* for retaliation after 15 */
83 for (i = 0; i < NTV; i++) {
84 if ((j = anysumto(h, n, s, tv[i])) >= 0) {
85 if ((l = numofval(h, n, 15 - tv[i])) > 0) {
86 if (l > 1 ||
87 VAL(h[j].rank) != 15 - tv[i])
88 return (j);
89 }
90 }
91 }
92 }
93 j = -1;
94 /* remember: h is sorted */
95 for (i = n - 1; i >= 0; --i) {
96 l = s + VAL(h[i].rank);
97 if (l > 31)
98 continue;
99 if (l != 5 && l != 10 && l != 21) {
100 j = i;
101 break;
102 }
103 }
104 if (j >= 0)
105 return (j);
106 for (i = n - 1; i >= 0; --i) {
107 l = s + VAL(h[i].rank);
108 if (l > 31)
109 continue;
110 if (j < 0)
111 j = i;
112 if (l != 5 && l != 21) {
113 j = i;
114 break;
115 }
116 }
117 if (j < 0) {
118 printf("\ncchose: internal error %d %d\n", j, n);
119 exit(93);
120 }
121 return (j);
122 }
123
124 /*
125 * plyrhand:
126 * Evaluate and score a player hand or crib
127 */
128 int
129 plyrhand(const CARD hand[], const char *s)
130 {
131 static char prompt[BUFSIZ];
132 int i, j;
133 BOOLEAN win;
134
135 prhand(hand, CINHAND, Playwin, FALSE);
136 (void) sprintf(prompt, "Your %s scores ", s);
137 i = scorehand(hand, turnover, CINHAND, strcmp(s, "crib") == 0, explain);
138 if ((j = number(0, 29, prompt)) == 19)
139 j = 0;
140 if (i != j) {
141 if (i < j) {
142 win = chkscr(&pscore, i);
143 msg("It's really only %d points; I get %d", i, 2);
144 if (!win)
145 win = chkscr(&cscore, 2);
146 } else {
147 win = chkscr(&pscore, j);
148 msg("You should have taken %d, not %d!", i, j);
149 }
150 if (explain)
151 msg("Explanation: %s", explan);
152 do_wait();
153 } else
154 win = chkscr(&pscore, i);
155 return (win);
156 }
157
158 /*
159 * comphand:
160 * Handle scoring and displaying the computers hand
161 */
162 int
163 comphand(const CARD h[], const char *s)
164 {
165 int j;
166
167 j = scorehand(h, turnover, CINHAND, strcmp(s, "crib") == 0, FALSE);
168 prhand(h, CINHAND, Compwin, FALSE);
169 msg("My %s scores %d", s, (j == 0 ? 19 : j));
170 return (chkscr(&cscore, j));
171 }
172
173 /*
174 * chkscr:
175 * Add inc to scr and test for > glimit, printing on the scoring
176 * board while we're at it.
177 */
178 int Lastscore[2] = {-1, -1};
179
180 int
181 chkscr(int *scr, int inc)
182 {
183 BOOLEAN myturn;
184
185 myturn = (scr == &cscore);
186 if (inc != 0) {
187 prpeg(Lastscore[(int)myturn], '.', myturn);
188 Lastscore[(int)myturn] = *scr;
189 *scr += inc;
190 prpeg(*scr, PEG, myturn);
191 refresh();
192 }
193 return (*scr >= glimit);
194 }
195
196 /*
197 * prpeg:
198 * Put out the peg character on the score board and put the
199 * score up on the board.
200 */
201 void
202 prpeg(int curscore, int pegc, BOOLEAN myturn)
203 {
204 int y, x;
205
206 if (!myturn)
207 y = SCORE_Y + 2;
208 else
209 y = SCORE_Y + 5;
210
211 if (curscore <= 0 || curscore >= glimit) {
212 if (pegc == '.')
213 pegc = ' ';
214 if (curscore == 0)
215 x = SCORE_X + 2;
216 else {
217 x = SCORE_X + 2;
218 y++;
219 }
220 } else {
221 x = (curscore - 1) % 30;
222 if (curscore > 90 || (curscore > 30 && curscore <= 60)) {
223 y++;
224 x = 29 - x;
225 }
226 x += x / 5;
227 x += SCORE_X + 3;
228 }
229 mvaddch(y, x, pegc);
230 mvprintw(SCORE_Y + (myturn ? 7 : 1), SCORE_X + 10, "%3d", curscore);
231 }
232
233 /*
234 * cdiscard -- the computer figures out what is the best discard for
235 * the crib and puts the best two cards at the end
236 */
237 void
238 cdiscard(BOOLEAN mycrib)
239 {
240 CARD d[CARDS], h[FULLHAND], cb[2];
241 int i, j, k;
242 int nc, ns;
243 long sums[15];
244 static int undo1[15] = {0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 3, 3, 4};
245 static int undo2[15] = {1, 2, 3, 4, 5, 2, 3, 4, 5, 3, 4, 5, 4, 5, 5};
246
247 makedeck(d);
248 nc = CARDS;
249 for (i = 0; i < knownum; i++) { /* get all other cards */
250 cremove(known[i], d, nc--);
251 }
252 for (i = 0; i < 15; i++)
253 sums[i] = 0L;
254 ns = 0;
255 for (i = 0; i < (FULLHAND - 1); i++) {
256 cb[0] = chand[i];
257 for (j = i + 1; j < FULLHAND; j++) {
258 cb[1] = chand[j];
259 for (k = 0; k < FULLHAND; k++)
260 h[k] = chand[k];
261 cremove(chand[i], h, FULLHAND);
262 cremove(chand[j], h, FULLHAND - 1);
263 for (k = 0; k < nc; k++) {
264 sums[ns] +=
265 scorehand(h, d[k], CINHAND, TRUE, FALSE);
266 if (mycrib)
267 sums[ns] += adjust(cb, d[k]);
268 else
269 sums[ns] -= adjust(cb, d[k]);
270 }
271 ++ns;
272 }
273 }
274 j = 0;
275 for (i = 1; i < 15; i++)
276 if (sums[i] > sums[j])
277 j = i;
278 for (k = 0; k < FULLHAND; k++)
279 h[k] = chand[k];
280 cremove(h[undo1[j]], chand, FULLHAND);
281 cremove(h[undo2[j]], chand, FULLHAND - 1);
282 chand[4] = h[undo1[j]];
283 chand[5] = h[undo2[j]];
284 }
285
286 /*
287 * returns true if some card in hand can be played without exceeding 31
288 */
289 int
290 anymove(const CARD hand[], int n, int sum)
291 {
292 int i, j;
293
294 if (n < 1)
295 return (FALSE);
296 j = hand[0].rank;
297 for (i = 1; i < n; i++) {
298 if (hand[i].rank < j)
299 j = hand[i].rank;
300 }
301 return (sum + VAL(j) <= 31);
302 }
303
304 /*
305 * anysumto returns the index (0 <= i < n) of the card in hand that brings
306 * the s up to t, or -1 if there is none
307 */
308 int
309 anysumto(const CARD hand[], int n, int s, int t)
310 {
311 int i;
312
313 for (i = 0; i < n; i++) {
314 if (s + VAL(hand[i].rank) == t)
315 return (i);
316 }
317 return (-1);
318 }
319
320 /*
321 * return the number of cards in h having the given rank value
322 */
323 int
324 numofval(const CARD h[], int n, int v)
325 {
326 int i, j;
327
328 j = 0;
329 for (i = 0; i < n; i++) {
330 if (VAL(h[i].rank) == v)
331 ++j;
332 }
333 return (j);
334 }
335
336 /*
337 * makeknown remembers all n cards in h for future recall
338 */
339 void
340 makeknown(const CARD h[], int n)
341 {
342 int i;
343
344 for (i = 0; i < n; i++)
345 known[knownum++] = h[i];
346 }
347