]>
git.cameronkatri.com Git - bsdgames-darwin.git/blob - fish/fish.c
1 /* $NetBSD: fish.c,v 1.3 1995/03/23 08:28:18 cgd Exp $ */
4 * Copyright (c) 1990, 1993
5 * The Regents of the University of California. All rights reserved.
7 * This code is derived from software contributed to Berkeley by
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. All advertising materials mentioning features or use of this software
19 * must display the following acknowledgement:
20 * This product includes software developed by the University of
21 * California, Berkeley and its contributors.
22 * 4. Neither the name of the University nor the names of its contributors
23 * may be used to endorse or promote products derived from this software
24 * without specific prior written permission.
26 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
40 static char copyright
[] =
41 "@(#) Copyright (c) 1990, 1993\n\
42 The Regents of the University of California. All rights reserved.\n";
47 static char sccsid
[] = "@(#)fish.c 8.1 (Berkeley) 5/31/93";
49 static char rcsid
[] = "$NetBSD: fish.c,v 1.3 1995/03/23 08:28:18 cgd Exp $";
53 #include <sys/types.h>
54 #include <sys/errno.h>
59 #include "pathnames.h"
67 #define OTHER(a) (1 - (a))
70 "A", "2", "3", "4", "5", "6", "7",
71 "8", "9", "10", "J", "Q", "K", NULL
,
73 #define PRC(card) (void)printf(" %s", cards[card])
76 int asked
[RANKS
], comphand
[RANKS
], deck
[RANKS
];
77 int userasked
[RANKS
], userhand
[RANKS
];
85 while ((ch
= getopt(argc
, argv
, "p")) != EOF
)
92 (void)fprintf(stderr
, "usage: fish [-p]\n");
96 srandom(time((time_t *)NULL
));
100 if (nrandom(2) == 1) {
101 printplayer(COMPUTER
);
102 (void)printf("get to start.\n");
106 (void)printf("get to start.\n");
110 if (!comphand
[move
]) {
111 if (gofish(move
, USER
, userhand
))
114 goodmove(USER
, move
, userhand
, comphand
);
120 if (!userhand
[move
]) {
121 if (!gofish(move
, COMPUTER
, comphand
))
124 goodmove(COMPUTER
, move
, comphand
, userhand
);
136 (void)printf("\nYour hand is:");
140 (void)printf("You ask me for: ");
141 (void)fflush(stdout
);
142 if (fgets(buf
, BUFSIZ
, stdin
) == NULL
)
146 if (buf
[0] == '\n') {
147 (void)printf("%d cards in my hand, %d in the pool.\n",
148 countcards(comphand
), countcards(deck
));
149 (void)printf("My books:");
150 (void)countbooks(comphand
);
153 buf
[strlen(buf
) - 1] = '\0';
154 if (!strcasecmp(buf
, "p") && !promode
) {
156 (void)printf("Entering pro mode.\n");
159 if (!strcasecmp(buf
, "quit"))
161 for (p
= cards
; *p
; ++p
)
162 if (!strcasecmp(*p
, buf
))
165 (void)printf("I don't understand!\n");
174 (void)printf("You don't have any of those!\n");
176 (void)printf("You don't have any %s's!\n", cards
[n
]);
178 (void)printf("No cheating!\n");
179 (void)printf("Guess again.\n");
192 lmove
= (lmove
+ 1) % RANKS
;
193 } while (!comphand
[lmove
] || comphand
[lmove
] == CARDS
);
197 (void)printf("I ask you for: %s.\n", cards
[lmove
]);
205 for (i
= 0; i
< RANKS
; ++i
)
207 comphand
[i
] > 0 && comphand
[i
] < CARDS
) {
211 if (nrandom(3) == 1) {
213 if (comphand
[i
] && comphand
[i
] != CARDS
) {
218 if (comphand
[i
] != CARDS
&&
219 comphand
[i
] > comphand
[max
])
223 if (nrandom(1024) == 0723) {
224 for (i
= 0; i
< RANKS
; ++i
)
225 if (userhand
[i
] && comphand
[i
])
229 for (i
= 0; i
< RANKS
; ++i
)
230 if (comphand
[i
] && comphand
[i
] != CARDS
&&
233 for (i
= 0; i
< RANKS
; ++i
)
239 drawcard(player
, hand
)
245 while (deck
[card
= nrandom(RANKS
)] == 0);
248 if (player
== USER
|| hand
[card
] == CARDS
) {
250 (void)printf("drew %s", cards
[card
]);
251 if (hand
[card
] == CARDS
) {
252 (void)printf(" and made a book of %s's!\n",
254 chkwinner(player
, hand
);
261 gofish(askedfor
, player
, hand
)
262 int askedfor
, player
;
265 printplayer(OTHER(player
));
266 (void)printf("say \"GO FISH!\"\n");
267 if (askedfor
== drawcard(player
, hand
)) {
269 (void)printf("drew the guess!\n");
271 (void)printf("get to ask again!\n");
277 goodmove(player
, move
, hand
, opphand
)
281 printplayer(OTHER(player
));
282 (void)printf("have %d %s%s.\n",
283 opphand
[move
], cards
[move
], opphand
[move
] == 1 ? "": "'s");
285 hand
[move
] += opphand
[move
];
288 if (hand
[move
] == CARDS
) {
290 (void)printf("made a book of %s's!\n", cards
[move
]);
291 chkwinner(player
, hand
);
294 chkwinner(OTHER(player
), opphand
);
297 (void)printf("get another guess!\n");
300 chkwinner(player
, hand
)
304 register int cb
, i
, ub
;
306 for (i
= 0; i
< RANKS
; ++i
)
307 if (hand
[i
] > 0 && hand
[i
] < CARDS
)
310 (void)printf("don't have any more cards!\n");
311 (void)printf("My books:");
312 cb
= countbooks(comphand
);
313 (void)printf("Your books:");
314 ub
= countbooks(userhand
);
315 (void)printf("\nI have %d, you have %d.\n", cb
, ub
);
317 (void)printf("\nYou win!!!\n");
318 if (nrandom(1024) == 0723)
319 (void)printf("Cheater, cheater, pumpkin eater!\n");
320 } else if (cb
> ub
) {
321 (void)printf("\nI win!!!\n");
322 if (nrandom(1024) == 0723)
323 (void)printf("Hah! Stupid peasant!\n");
325 (void)printf("\nTie!\n");
337 (void)printf("You ");
345 register int book
, i
, j
;
347 for (book
= i
= 0; i
< RANKS
; i
++)
349 for (j
= hand
[i
]; --j
>= 0;)
354 (void)printf(" + Book%s of", book
> 1 ? "s" : "");
355 for (i
= 0; i
< RANKS
; i
++)
356 if (hand
[i
] == CARDS
)
365 register int i
, count
;
367 for (count
= i
= 0; i
< RANKS
; i
++)
377 for (count
= i
= 0; i
< RANKS
; i
++)
378 if (hand
[i
] == CARDS
) {
383 (void)printf(" none");
390 register int i
, rank
;
392 for (i
= 0; i
< RANKS
; ++i
)
394 for (i
= 0; i
< HANDSIZE
; ++i
) {
395 while (!deck
[rank
= nrandom(RANKS
)]);
399 for (i
= 0; i
< HANDSIZE
; ++i
) {
400 while (!deck
[rank
= nrandom(RANKS
)]);
411 return((int)random() % n
);
419 (void)printf("Would you like instructions (y or n)? ");
421 while (getchar() != '\n');
425 (void)sprintf(buf
, "%s %s", _PATH_MORE
, _PATH_INSTR
);
427 (void)printf("Hit return to continue...\n");
428 while ((input
= getchar()) != EOF
&& input
!= '\n');
433 (void)fprintf(stderr
, "usage: fish [-p]\n");