nrelease - fix/improve livecd
[dragonfly.git] / games / cribbage / crib.c
CommitLineData
984263bc
MD
1/*-
2 * Copyright (c) 1980, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
6693db17 13 * 3. Neither the name of the University nor the names of its contributors
984263bc
MD
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
1de703da
MD
28 *
29 * @(#) Copyright (c) 1980, 1993 The Regents of the University of California. All rights reserved.
30 * @(#)crib.c 8.1 (Berkeley) 5/31/93
31 * $FreeBSD: src/games/cribbage/crib.c,v 1.10 1999/12/12 03:04:14 billf Exp $
413c6806 32 * $DragonFly: src/games/cribbage/crib.c,v 1.3 2005/08/03 13:31:00 eirikn Exp $
984263bc
MD
33 */
34
6693db17 35#include <curses.h>
984263bc
MD
36#include <signal.h>
37#include <stdlib.h>
984263bc
MD
38#include <unistd.h>
39#include <stdio.h>
40
6693db17 41#include "deck.h"
984263bc
MD
42#include "cribbage.h"
43#include "cribcur.h"
44#include "pathnames.h"
45
413c6806
EN
46static bool cut(bool, int);
47static int deal(bool);
48static void discard(bool);
49static void game(void);
50static void gamescore(void);
51static void makeboard(void);
52static bool peg(bool);
53static bool playhand(bool);
54static void prcrib(bool, bool);
55static void prtable(int);
56static bool scoreh(bool);
57
984263bc 58int
413c6806 59main(int argc, char *argv[])
984263bc 60{
413c6806 61 bool playing;
984263bc
MD
62 FILE *f;
63 int ch;
64
65 f = fopen(_PATH_LOG, "a");
66
67 /* revoke */
68 setgid(getgid());
69
70 while ((ch = getopt(argc, argv, "eqr")) != -1)
71 switch (ch) {
72 case 'e':
413c6806 73 explain = true;
984263bc
MD
74 break;
75 case 'q':
413c6806 76 quiet = true;
984263bc
MD
77 break;
78 case 'r':
413c6806 79 rflag = true;
984263bc
MD
80 break;
81 case '?':
82 default:
413c6806 83 fprintf(stderr, "usage: cribbage [-eqr]\n");
984263bc
MD
84 exit(1);
85 }
86
87 initscr();
413c6806 88 signal(SIGINT, intr);
6693db17 89 cbreak();
984263bc
MD
90 noecho();
91
92 Playwin = subwin(stdscr, PLAY_Y, PLAY_X, 0, 0);
93 Tablewin = subwin(stdscr, TABLE_Y, TABLE_X, 0, PLAY_X);
94 Compwin = subwin(stdscr, COMP_Y, COMP_X, 0, TABLE_X + PLAY_X);
95 Msgwin = subwin(stdscr, MSG_Y, MSG_X, Y_MSG_START, SCORE_X + 1);
96 leaveok(Playwin, TRUE);
97 leaveok(Tablewin, TRUE);
98 leaveok(Compwin, TRUE);
99 clearok(stdscr, FALSE);
100
101 if (!quiet) {
102 msg("Do you need instructions for cribbage? ");
103 if (getuchar() == 'Y') {
104 endwin();
105 clear();
106 mvcur(0, COLS - 1, LINES - 1, 0);
107 fflush(stdout);
108 instructions();
6693db17 109 cbreak();
984263bc
MD
110 noecho();
111 clear();
112 refresh();
113 msg("For cribbage rules, use \"man cribbage\"");
114 }
115 }
413c6806 116 playing = true;
984263bc
MD
117 do {
118 wclrtobot(Msgwin);
119 msg(quiet ? "L or S? " : "Long (to 121) or Short (to 61)? ");
120 if (glimit == SGAME)
121 glimit = (getuchar() == 'L' ? LGAME : SGAME);
122 else
123 glimit = (getuchar() == 'S' ? SGAME : LGAME);
124 game();
125 msg("Another game? ");
126 playing = (getuchar() == 'Y');
127 } while (playing);
128
129 if (f != NULL) {
413c6806 130 fprintf(f, "%s: won %5.5d, lost %5.5d\n",
984263bc 131 getlogin(), cgames, pgames);
413c6806 132 fclose(f);
984263bc
MD
133 }
134 bye();
135 if (!f) {
413c6806 136 fprintf(stderr, "\ncribbage: can't open %s.\n", _PATH_LOG);
984263bc
MD
137 exit(1);
138 }
6693db17 139 return (0);
984263bc
MD
140}
141
142/*
143 * makeboard:
144 * Print out the initial board on the screen
145 */
413c6806
EN
146static void
147makeboard(void)
984263bc
MD
148{
149 mvaddstr(SCORE_Y + 0, SCORE_X,
150 "+---------------------------------------+");
151 mvaddstr(SCORE_Y + 1, SCORE_X,
152 "| Score: 0 YOU |");
153 mvaddstr(SCORE_Y + 2, SCORE_X,
154 "| *.....:.....:.....:.....:.....:..... |");
155 mvaddstr(SCORE_Y + 3, SCORE_X,
156 "| *.....:.....:.....:.....:.....:..... |");
157 mvaddstr(SCORE_Y + 4, SCORE_X,
158 "| |");
159 mvaddstr(SCORE_Y + 5, SCORE_X,
160 "| *.....:.....:.....:.....:.....:..... |");
161 mvaddstr(SCORE_Y + 6, SCORE_X,
162 "| *.....:.....:.....:.....:.....:..... |");
163 mvaddstr(SCORE_Y + 7, SCORE_X,
164 "| Score: 0 ME |");
165 mvaddstr(SCORE_Y + 8, SCORE_X,
166 "+---------------------------------------+");
167 gamescore();
168}
169
170/*
171 * gamescore:
172 * Print out the current game score
173 */
413c6806
EN
174static void
175gamescore(void)
984263bc
MD
176{
177
178 if (pgames || cgames) {
179 mvprintw(SCORE_Y + 1, SCORE_X + 28, "Games: %3d", pgames);
180 mvprintw(SCORE_Y + 7, SCORE_X + 28, "Games: %3d", cgames);
181 }
182 Lastscore[0] = -1;
183 Lastscore[1] = -1;
184}
185
186/*
187 * game:
188 * Play one game up to glimit points. Actually, we only ASK the
189 * player what card to turn. We do a random one, anyway.
190 */
413c6806
EN
191static void
192game(void)
984263bc
MD
193{
194 int i, j;
413c6806 195 bool flag, compcrib;
984263bc 196
413c6806 197 compcrib = false;
984263bc
MD
198 makedeck(deck);
199 shuffle(deck);
200 if (gamecount == 0) {
413c6806 201 flag = true;
984263bc
MD
202 do {
203 if (!rflag) { /* player cuts deck */
204 msg(quiet ? "Cut for crib? " :
205 "Cut to see whose crib it is -- low card wins? ");
cae2835b 206 get_line();
984263bc
MD
207 }
208 i = random() % CARDS; /* random cut */
209 do { /* comp cuts deck */
210 j = random() % CARDS;
211 } while (j == i);
212 addmsg(quiet ? "You cut " : "You cut the ");
413c6806 213 msgcard(deck[i], false);
984263bc
MD
214 endmsg();
215 addmsg(quiet ? "I cut " : "I cut the ");
413c6806 216 msgcard(deck[j], false);
984263bc
MD
217 endmsg();
218 flag = (deck[i].rank == deck[j].rank);
219 if (flag) {
220 msg(quiet ? "We tied..." :
221 "We tied and have to try again...");
222 shuffle(deck);
223 continue;
224 } else
225 compcrib = (deck[i].rank > deck[j].rank);
226 } while (flag);
227 clear();
228 makeboard();
229 refresh();
230 } else {
231 werase(Tablewin);
232 wrefresh(Tablewin);
233 werase(Compwin);
234 wrefresh(Compwin);
235 msg("Loser (%s) gets first crib", (iwon ? "you" : "me"));
236 compcrib = !iwon;
237 }
238
239 pscore = cscore = 0;
413c6806 240 flag = true;
984263bc
MD
241 do {
242 shuffle(deck);
243 flag = !playhand(compcrib);
244 compcrib = !compcrib;
245 } while (flag);
246 ++gamecount;
247 if (cscore < pscore) {
248 if (glimit - cscore > 60) {
249 msg("YOU DOUBLE SKUNKED ME!");
250 pgames += 4;
251 } else
252 if (glimit - cscore > 30) {
253 msg("YOU SKUNKED ME!");
254 pgames += 2;
255 } else {
256 msg("YOU WON!");
257 ++pgames;
258 }
413c6806 259 iwon = false;
984263bc
MD
260 } else {
261 if (glimit - pscore > 60) {
262 msg("I DOUBLE SKUNKED YOU!");
263 cgames += 4;
264 } else
265 if (glimit - pscore > 30) {
266 msg("I SKUNKED YOU!");
267 cgames += 2;
268 } else {
269 msg("I WON!");
270 ++cgames;
271 }
413c6806 272 iwon = true;
984263bc
MD
273 }
274 gamescore();
275}
276
277/*
278 * playhand:
279 * Do up one hand of the game
280 */
413c6806
EN
281static bool
282playhand(bool mycrib)
984263bc
MD
283{
284 int deckpos;
285
286 werase(Compwin);
287
288 knownum = 0;
289 deckpos = deal(mycrib);
290 sorthand(chand, FULLHAND);
291 sorthand(phand, FULLHAND);
292 makeknown(chand, FULLHAND);
413c6806 293 prhand(phand, FULLHAND, Playwin, false);
984263bc
MD
294 discard(mycrib);
295 if (cut(mycrib, deckpos))
6693db17 296 return (true);
984263bc 297 if (peg(mycrib))
6693db17 298 return (true);
984263bc
MD
299 werase(Tablewin);
300 wrefresh(Tablewin);
413c6806 301 if (scoreh(mycrib))
6693db17
SW
302 return (true);
303 return (false);
984263bc
MD
304}
305
306/*
307 * deal cards to both players from deck
308 */
413c6806
EN
309static int
310deal(bool mycrib)
984263bc
MD
311{
312 int i, j;
313
314 for (i = j = 0; i < FULLHAND; i++) {
315 if (mycrib) {
316 phand[i] = deck[j++];
317 chand[i] = deck[j++];
318 } else {
319 chand[i] = deck[j++];
320 phand[i] = deck[j++];
321 }
322 }
323 return (j);
324}
325
326/*
327 * discard:
328 * Handle players discarding into the crib...
413c6806 329 * Note: we call cdiscard() after printing first message so player doesn't wait
984263bc 330 */
413c6806
EN
331static void
332discard(bool mycrib)
984263bc 333{
413c6806 334 const char *prompt;
984263bc
MD
335 CARD crd;
336
413c6806 337 prcrib(mycrib, true);
984263bc
MD
338 prompt = (quiet ? "Discard --> " : "Discard a card --> ");
339 cdiscard(mycrib); /* puts best discard at end */
340 crd = phand[infrom(phand, FULLHAND, prompt)];
341 cremove(crd, phand, FULLHAND);
413c6806 342 prhand(phand, FULLHAND, Playwin, false);
984263bc
MD
343 crib[0] = crd;
344
345 /* Next four lines same as last four except for cdiscard(). */
346 crd = phand[infrom(phand, FULLHAND - 1, prompt)];
347 cremove(crd, phand, FULLHAND - 1);
413c6806 348 prhand(phand, FULLHAND, Playwin, false);
984263bc
MD
349 crib[1] = crd;
350 crib[2] = chand[4];
351 crib[3] = chand[5];
352 chand[4].rank = chand[4].suit = chand[5].rank = chand[5].suit = EMPTY;
353}
354
355/*
356 * cut:
357 * Cut the deck and set turnover. Actually, we only ASK the
358 * player what card to turn. We do a random one, anyway.
359 */
413c6806
EN
360static bool
361cut(bool mycrib, int pos)
984263bc
MD
362{
363 int i;
413c6806 364 bool win;
984263bc 365
413c6806 366 win = false;
984263bc
MD
367 if (mycrib) {
368 if (!rflag) { /* random cut */
369 msg(quiet ? "Cut the deck? " :
370 "How many cards down do you wish to cut the deck? ");
cae2835b 371 get_line();
984263bc
MD
372 }
373 i = random() % (CARDS - pos);
374 turnover = deck[i + pos];
375 addmsg(quiet ? "You cut " : "You cut the ");
413c6806 376 msgcard(turnover, false);
984263bc
MD
377 endmsg();
378 if (turnover.rank == JACK) {
379 msg("I get two for his heels");
380 win = chkscr(&cscore, 2);
381 }
382 } else {
383 i = random() % (CARDS - pos) + pos;
384 turnover = deck[i];
385 addmsg(quiet ? "I cut " : "I cut the ");
413c6806 386 msgcard(turnover, false);
984263bc
MD
387 endmsg();
388 if (turnover.rank == JACK) {
389 msg("You get two for his heels");
390 win = chkscr(&pscore, 2);
391 }
392 }
393 makeknown(&turnover, 1);
413c6806 394 prcrib(mycrib, false);
984263bc
MD
395 return (win);
396}
397
398/*
399 * prcrib:
400 * Print out the turnover card with crib indicator
401 */
413c6806
EN
402static void
403prcrib(bool mycrib, bool blank)
984263bc
MD
404{
405 int y, cardx;
406
407 if (mycrib)
408 cardx = CRIB_X;
409 else
410 cardx = 0;
411
412 mvaddstr(CRIB_Y, cardx + 1, "CRIB");
413 prcard(stdscr, CRIB_Y + 1, cardx, turnover, blank);
414
415 if (mycrib)
416 cardx = 0;
417 else
418 cardx = CRIB_X;
419
420 for (y = CRIB_Y; y <= CRIB_Y + 5; y++)
421 mvaddstr(y, cardx, " ");
422}
423
424/*
425 * peg:
426 * Handle all the pegging...
427 */
428static CARD Table[14];
429static int Tcnt;
430
413c6806
EN
431static bool
432peg(bool mycrib)
984263bc
MD
433{
434 static CARD ch[CINHAND], ph[CINHAND];
435 int i, j, k;
436 int l;
437 int cnum, pnum, sum;
413c6806 438 bool myturn, mego, ugo, last, played;
984263bc
MD
439 CARD crd;
440
441 cnum = pnum = CINHAND;
442 for (i = 0; i < CINHAND; i++) { /* make copies of hands */
443 ch[i] = chand[i];
444 ph[i] = phand[i];
445 }
446 Tcnt = 0; /* index to table of cards played */
447 sum = 0; /* sum of cards played */
413c6806 448 played = mego = ugo = false;
984263bc
MD
449 myturn = !mycrib;
450 for (;;) {
413c6806
EN
451 last = true; /* enable last flag */
452 prhand(ph, pnum, Playwin, false);
453 prhand(ch, cnum, Compwin, true);
984263bc
MD
454 prtable(sum);
455 if (myturn) { /* my tyrn to play */
456 if (!anymove(ch, cnum, sum)) { /* if no card to play */
457 if (!mego && cnum) { /* go for comp? */
458 msg("GO");
413c6806 459 mego = true;
984263bc
MD
460 }
461 /* can player move? */
462 if (anymove(ph, pnum, sum))
463 myturn = !myturn;
464 else { /* give him his point */
465 msg(quiet ? "You get one" :
466 "You get one point");
467 if (chkscr(&pscore, 1))
413c6806 468 return (true);
984263bc 469 sum = 0;
413c6806 470 mego = ugo = false;
984263bc
MD
471 Tcnt = 0;
472 }
473 } else {
413c6806 474 played = true;
984263bc
MD
475 j = -1;
476 k = 0;
477 /* maximize score */
478 for (i = 0; i < cnum; i++) {
479 l = pegscore(ch[i], Table, Tcnt, sum);
480 if (l > k) {
481 k = l;
482 j = i;
483 }
484 }
485 if (j < 0) /* if nothing scores */
486 j = cchose(ch, cnum, sum);
487 crd = ch[j];
488 cremove(crd, ch, cnum--);
489 sum += VAL(crd.rank);
490 Table[Tcnt++] = crd;
491 if (k > 0) {
492 addmsg(quiet ? "I get %d playing " :
493 "I get %d points playing ", k);
413c6806 494 msgcard(crd, false);
984263bc
MD
495 endmsg();
496 if (chkscr(&cscore, k))
413c6806 497 return (true);
984263bc
MD
498 }
499 myturn = !myturn;
500 }
501 } else {
502 if (!anymove(ph, pnum, sum)) { /* can player move? */
503 if (!ugo && pnum) { /* go for player */
504 msg("You have a GO");
413c6806 505 ugo = true;
984263bc
MD
506 }
507 /* can computer play? */
508 if (anymove(ch, cnum, sum))
509 myturn = !myturn;
510 else {
511 msg(quiet ? "I get one" :
512 "I get one point");
513 do_wait();
514 if (chkscr(&cscore, 1))
413c6806 515 return (true);
984263bc 516 sum = 0;
413c6806 517 mego = ugo = false;
984263bc
MD
518 Tcnt = 0;
519 }
520 } else { /* player plays */
413c6806 521 played = false;
984263bc
MD
522 if (pnum == 1) {
523 crd = ph[0];
524 msg("You play your last card");
525 } else
526 for (;;) {
527 prhand(ph,
413c6806 528 pnum, Playwin, false);
984263bc
MD
529 crd = ph[infrom(ph,
530 pnum, "Your play: ")];
531 if (sum + VAL(crd.rank) <= 31)
532 break;
533 else
534 msg("Total > 31 -- try again");
535 }
536 makeknown(&crd, 1);
537 cremove(crd, ph, pnum--);
538 i = pegscore(crd, Table, Tcnt, sum);
539 sum += VAL(crd.rank);
540 Table[Tcnt++] = crd;
541 if (i > 0) {
542 msg(quiet ? "You got %d" :
543 "You got %d points", i);
544 if (chkscr(&pscore, i))
413c6806 545 return (true);
984263bc
MD
546 }
547 myturn = !myturn;
548 }
549 }
550 if (sum >= 31) {
551 if (!myturn)
552 do_wait();
553 sum = 0;
413c6806 554 mego = ugo = false;
984263bc 555 Tcnt = 0;
413c6806 556 last = false; /* disable last flag */
984263bc
MD
557 }
558 if (!pnum && !cnum)
559 break; /* both done */
560 }
413c6806
EN
561 prhand(ph, pnum, Playwin, false);
562 prhand(ch, cnum, Compwin, true);
984263bc
MD
563 prtable(sum);
564 if (last) {
565 if (played) {
566 msg(quiet ? "I get one for last" :
567 "I get one point for last");
568 do_wait();
569 if (chkscr(&cscore, 1))
413c6806 570 return (true);
984263bc
MD
571 } else {
572 msg(quiet ? "You get one for last" :
573 "You get one point for last");
574 if (chkscr(&pscore, 1))
413c6806 575 return (true);
984263bc
MD
576 }
577 }
413c6806 578 return (false);
984263bc
MD
579}
580
581/*
582 * prtable:
583 * Print out the table with the current score
584 */
413c6806
EN
585static void
586prtable(int score)
984263bc 587{
413c6806 588 prhand(Table, Tcnt, Tablewin, false);
984263bc
MD
589 mvwprintw(Tablewin, (Tcnt + 2) * 2, Tcnt + 1, "%2d", score);
590 wrefresh(Tablewin);
591}
592
593/*
413c6806 594 * scoreh:
984263bc
MD
595 * Handle the scoring of the hands
596 */
413c6806
EN
597static bool
598scoreh(bool mycrib)
984263bc
MD
599{
600 sorthand(crib, CINHAND);
601 if (mycrib) {
602 if (plyrhand(phand, "hand"))
413c6806 603 return (true);
984263bc 604 if (comphand(chand, "hand"))
413c6806 605 return (true);
984263bc
MD
606 do_wait();
607 if (comphand(crib, "crib"))
413c6806 608 return (true);
984263bc
MD
609 } else {
610 if (comphand(chand, "hand"))
413c6806 611 return (true);
984263bc 612 if (plyrhand(phand, "hand"))
413c6806 613 return (true);
984263bc 614 if (plyrhand(crib, "crib"))
413c6806 615 return (true);
984263bc 616 }
413c6806 617 return (false);
984263bc 618}