]>
git.cameronkatri.com Git - bsdgames-darwin.git/blob - fish/fish.c
1 /* $NetBSD: fish.c,v 1.13 2000/05/08 07:56:03 mycroft 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.13 2000/05/08 07:56:03 mycroft Exp $");
53 #include <sys/types.h>
63 #include "pathnames.h"
68 #define TOTCARDS RANKS * CARDS
72 #define OTHER(a) (1 - (a))
74 const char *const cards
[] = {
75 "A", "2", "3", "4", "5", "6", "7",
76 "8", "9", "10", "J", "Q", "K", NULL
,
78 #define PRC(card) (void)printf(" %s", cards[card])
81 int asked
[RANKS
], comphand
[RANKS
], deck
[TOTCARDS
];
82 int userasked
[RANKS
], userhand
[RANKS
];
83 int curcard
= TOTCARDS
;
85 void chkwinner
__P((int, const int *));
86 int compmove
__P((void));
87 int countbooks
__P((const int *));
88 int countcards
__P((const int *));
89 int drawcard
__P((int, int *));
90 int gofish
__P((int, int, int *));
91 void goodmove
__P((int, int, int *, int *));
92 void init
__P((void));
93 void instructions
__P((void));
94 int main
__P((int, char *[]));
95 int nrandom
__P((int));
96 void printhand
__P((const int *));
97 void printplayer
__P((int));
98 int promove
__P((void));
99 void usage
__P((void)) __attribute__((__noreturn__
));
100 int usermove
__P((void));
109 /* Revoke setgid privileges */
112 while ((ch
= getopt(argc
, argv
, "p")) != -1)
122 srandom(time((time_t *)NULL
));
126 if (nrandom(2) == 1) {
127 printplayer(COMPUTER
);
128 (void)printf("get to start.\n");
132 (void)printf("get to start.\n");
136 if (!comphand
[move
]) {
137 if (gofish(move
, USER
, userhand
))
140 goodmove(USER
, move
, userhand
, comphand
);
146 if (!userhand
[move
]) {
147 if (!gofish(move
, COMPUTER
, comphand
))
150 goodmove(COMPUTER
, move
, comphand
, userhand
);
160 const char *const *p
;
163 (void)printf("\nYour hand is:");
167 (void)printf("You ask me for: ");
168 (void)fflush(stdout
);
169 if (fgets(buf
, sizeof(buf
), stdin
) == NULL
)
173 if (buf
[0] == '\n') {
174 (void)printf("%d cards in my hand, %d in the pool.\n",
175 countcards(comphand
), curcard
);
176 (void)printf("My books:");
177 (void)countbooks(comphand
);
180 buf
[strlen(buf
) - 1] = '\0';
181 if (!strcasecmp(buf
, "p") && !promode
) {
183 (void)printf("Entering pro mode.\n");
186 if (!strcasecmp(buf
, "quit"))
188 for (p
= cards
; *p
; ++p
)
189 if (!strcasecmp(*p
, buf
))
192 (void)printf("I don't understand!\n");
201 (void)printf("You don't have any of those!\n");
203 (void)printf("You don't have any %s's!\n", cards
[n
]);
205 (void)printf("No cheating!\n");
206 (void)printf("Guess again.\n");
220 lmove
= (lmove
+ 1) % RANKS
;
221 } while (!comphand
[lmove
] || comphand
[lmove
] == CARDS
);
225 (void)printf("I ask you for: %s.\n", cards
[lmove
]);
234 for (i
= 0; i
< RANKS
; ++i
)
236 comphand
[i
] > 0 && comphand
[i
] < CARDS
) {
240 if (nrandom(3) == 1) {
242 if (comphand
[i
] && comphand
[i
] != CARDS
) {
247 if (comphand
[i
] != CARDS
&&
248 comphand
[i
] > comphand
[max
])
252 if (nrandom(1024) == 0723) {
253 for (i
= 0; i
< RANKS
; ++i
)
254 if (userhand
[i
] && comphand
[i
])
258 for (i
= 0; i
< RANKS
; ++i
)
259 if (comphand
[i
] && comphand
[i
] != CARDS
&&
262 for (i
= 0; i
< RANKS
; ++i
)
269 drawcard(player
, hand
)
275 ++hand
[card
= deck
[--curcard
]];
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
< TOTCARDS
; ++i
)
430 for (i
= 0; i
< TOTCARDS
- 1; ++i
) {
431 j
= nrandom(TOTCARDS
-i
);
438 for (i
= 0; i
< HANDSIZE
; ++i
) {
439 ++userhand
[deck
[--curcard
]];
440 ++comphand
[deck
[--curcard
]];
449 return((int)random() % n
);
461 (void)printf("Would you like instructions (y or n)? ");
463 while (getchar() != '\n');
467 switch (pid
= fork()) {
472 if (!(pager
= getenv("PAGER")) || (*pager
== 0))
475 if ((fd
= open(_PATH_INSTR
, O_RDONLY
)) == -1)
476 err(1, "open %s", _PATH_INSTR
);
477 if (dup2(fd
, 0) == -1)
479 (void)execl("/bin/sh", "sh", "-c", pager
, NULL
);
480 err(1, "exec sh -c %s", pager
);
486 (void)waitpid(pid
, &status
, 0);
489 (void)printf("Hit return to continue...\n");
490 while ((input
= getchar()) != EOF
&& input
!= '\n');
496 (void)fprintf(stderr
, "usage: fish [-p]\n");