]>
git.cameronkatri.com Git - bsdgames-darwin.git/blob - fish/fish.c
1 /* $NetBSD: fish.c,v 1.8 1999/07/14 17:30:21 hubertf 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
39 #include <sys/cdefs.h>
41 __COPYRIGHT("@(#) 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 __RCSID("$NetBSD: fish.c,v 1.8 1999/07/14 17:30:21 hubertf Exp $");
53 #include <sys/types.h>
63 #include "pathnames.h"
71 #define OTHER(a) (1 - (a))
74 "A", "2", "3", "4", "5", "6", "7",
75 "8", "9", "10", "J", "Q", "K", NULL
,
77 #define PRC(card) (void)printf(" %s", cards[card])
80 int asked
[RANKS
], comphand
[RANKS
], deck
[RANKS
];
81 int userasked
[RANKS
], userhand
[RANKS
];
83 void chkwinner
__P((int, int *));
84 int compmove
__P((void));
85 int countbooks
__P((int *));
86 int countcards
__P((int *));
87 int drawcard
__P((int, int *));
88 int gofish
__P((int, int, int *));
89 void goodmove
__P((int, int, int *, int *));
90 void init
__P((void));
91 void instructions
__P((void));
92 int main
__P((int, char *[]));
93 int nrandom
__P((int));
94 void printhand
__P((int *));
95 void printplayer
__P((int));
96 int promove
__P((void));
97 void usage
__P((void)) __attribute__((__noreturn__
));
98 int usermove
__P((void));
109 while ((ch
= getopt(argc
, argv
, "p")) != -1)
116 (void)fprintf(stderr
, "usage: fish [-p]\n");
120 srandom(time((time_t *)NULL
));
124 if (nrandom(2) == 1) {
125 printplayer(COMPUTER
);
126 (void)printf("get to start.\n");
130 (void)printf("get to start.\n");
134 if (!comphand
[move
]) {
135 if (gofish(move
, USER
, userhand
))
138 goodmove(USER
, move
, userhand
, comphand
);
144 if (!userhand
[move
]) {
145 if (!gofish(move
, COMPUTER
, comphand
))
148 goodmove(COMPUTER
, move
, comphand
, userhand
);
161 (void)printf("\nYour hand is:");
165 (void)printf("You ask me for: ");
166 (void)fflush(stdout
);
167 if (fgets(buf
, sizeof(buf
), stdin
) == NULL
)
171 if (buf
[0] == '\n') {
172 (void)printf("%d cards in my hand, %d in the pool.\n",
173 countcards(comphand
), countcards(deck
));
174 (void)printf("My books:");
175 (void)countbooks(comphand
);
178 buf
[strlen(buf
) - 1] = '\0';
179 if (!strcasecmp(buf
, "p") && !promode
) {
181 (void)printf("Entering pro mode.\n");
184 if (!strcasecmp(buf
, "quit"))
186 for (p
= cards
; *p
; ++p
)
187 if (!strcasecmp(*p
, buf
))
190 (void)printf("I don't understand!\n");
199 (void)printf("You don't have any of those!\n");
201 (void)printf("You don't have any %s's!\n", cards
[n
]);
203 (void)printf("No cheating!\n");
204 (void)printf("Guess again.\n");
218 lmove
= (lmove
+ 1) % RANKS
;
219 } while (!comphand
[lmove
] || comphand
[lmove
] == CARDS
);
223 (void)printf("I ask you for: %s.\n", cards
[lmove
]);
232 for (i
= 0; i
< RANKS
; ++i
)
234 comphand
[i
] > 0 && comphand
[i
] < CARDS
) {
238 if (nrandom(3) == 1) {
240 if (comphand
[i
] && comphand
[i
] != CARDS
) {
245 if (comphand
[i
] != CARDS
&&
246 comphand
[i
] > comphand
[max
])
250 if (nrandom(1024) == 0723) {
251 for (i
= 0; i
< RANKS
; ++i
)
252 if (userhand
[i
] && comphand
[i
])
256 for (i
= 0; i
< RANKS
; ++i
)
257 if (comphand
[i
] && comphand
[i
] != CARDS
&&
260 for (i
= 0; i
< RANKS
; ++i
)
267 drawcard(player
, hand
)
273 while (deck
[card
= nrandom(RANKS
)] == 0);
276 if (player
== USER
|| hand
[card
] == CARDS
) {
278 (void)printf("drew %s", cards
[card
]);
279 if (hand
[card
] == CARDS
) {
280 (void)printf(" and made a book of %s's!\n",
282 chkwinner(player
, hand
);
290 gofish(askedfor
, player
, hand
)
291 int askedfor
, player
;
294 printplayer(OTHER(player
));
295 (void)printf("say \"GO FISH!\"\n");
296 if (askedfor
== drawcard(player
, hand
)) {
298 (void)printf("drew the guess!\n");
300 (void)printf("get to ask again!\n");
307 goodmove(player
, move
, hand
, opphand
)
311 printplayer(OTHER(player
));
312 (void)printf("have %d %s%s.\n",
313 opphand
[move
], cards
[move
], opphand
[move
] == 1 ? "": "'s");
315 hand
[move
] += opphand
[move
];
318 if (hand
[move
] == CARDS
) {
320 (void)printf("made a book of %s's!\n", cards
[move
]);
321 chkwinner(player
, hand
);
324 chkwinner(OTHER(player
), opphand
);
327 (void)printf("get another guess!\n");
331 chkwinner(player
, hand
)
337 for (i
= 0; i
< RANKS
; ++i
)
338 if (hand
[i
] > 0 && hand
[i
] < CARDS
)
341 (void)printf("don't have any more cards!\n");
342 (void)printf("My books:");
343 cb
= countbooks(comphand
);
344 (void)printf("Your books:");
345 ub
= countbooks(userhand
);
346 (void)printf("\nI have %d, you have %d.\n", cb
, ub
);
348 (void)printf("\nYou win!!!\n");
349 if (nrandom(1024) == 0723)
350 (void)printf("Cheater, cheater, pumpkin eater!\n");
351 } else if (cb
> ub
) {
352 (void)printf("\nI win!!!\n");
353 if (nrandom(1024) == 0723)
354 (void)printf("Hah! Stupid peasant!\n");
356 (void)printf("\nTie!\n");
369 (void)printf("You ");
380 for (book
= i
= 0; i
< RANKS
; i
++)
382 for (j
= hand
[i
]; --j
>= 0;)
387 (void)printf(" + Book%s of", book
> 1 ? "s" : "");
388 for (i
= 0; i
< RANKS
; i
++)
389 if (hand
[i
] == CARDS
)
401 for (count
= i
= 0; i
< RANKS
; i
++)
412 for (count
= i
= 0; i
< RANKS
; i
++)
413 if (hand
[i
] == CARDS
) {
418 (void)printf(" none");
428 for (i
= 0; i
< RANKS
; ++i
)
430 for (i
= 0; i
< HANDSIZE
; ++i
) {
431 while (!deck
[rank
= nrandom(RANKS
)]);
435 for (i
= 0; i
< HANDSIZE
; ++i
) {
436 while (!deck
[rank
= nrandom(RANKS
)]);
447 return((int)random() % n
);
459 (void)printf("Would you like instructions (y or n)? ");
461 while (getchar() != '\n');
465 switch (pid
= fork()) {
470 if (!(pager
= getenv("PAGER")) || (*pager
== 0))
473 if ((fd
= open(_PATH_INSTR
, O_RDONLY
)) == -1)
474 err(1, "open %s", _PATH_INSTR
);
475 if (dup2(fd
, 0) == -1)
477 (void)execl("/bin/sh", "sh", "-c", pager
, NULL
);
478 err(1, "exec sh -c %s", pager
);
484 (void)waitpid(pid
, &status
, 0);
487 (void)printf("Hit return to continue...\n");
488 while ((input
= getchar()) != EOF
&& input
!= '\n');
494 (void)fprintf(stderr
, "usage: fish [-p]\n");