]>
git.cameronkatri.com Git - bsdgames-darwin.git/blob - cribbage/io.c
1 /* $NetBSD: io.c,v 1.15 2002/05/26 00:12:11 wiz Exp $ */
4 * Copyright (c) 1980, 1993
5 * The Regents of the University of California. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
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. All advertising materials mentioning features or use of this software
16 * must display the following acknowledgement:
17 * This product includes software developed by the University of
18 * California, Berkeley and its contributors.
19 * 4. Neither the name of the University nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 #include <sys/cdefs.h>
39 static char sccsid
[] = "@(#)io.c 8.1 (Berkeley) 5/31/93";
41 __RCSID("$NetBSD: io.c,v 1.15 2002/05/26 00:12:11 wiz Exp $");
63 #define CTRL(X) (X - 'A' + 1)
65 char linebuf
[LINESIZE
];
67 const char *const rankname
[RANKS
] = {
68 "ACE", "TWO", "THREE", "FOUR", "FIVE", "SIX", "SEVEN",
69 "EIGHT", "NINE", "TEN", "JACK", "QUEEN", "KING"
72 const char *const rankchar
[RANKS
] = {
73 "A", "2", "3", "4", "5", "6", "7", "8", "9", "T", "J", "Q", "K"
76 const char *const suitname
[SUITS
] = {"SPADES", "HEARTS", "DIAMONDS", "CLUBS"};
78 const char *const suitchar
[SUITS
] = {"S", "H", "D", "C"};
82 * Call msgcrd in one of two forms
90 return (msgcrd(c
, TRUE
, NULL
, TRUE
));
92 return (msgcrd(c
, FALSE
, " of ", FALSE
));
97 * Print the value of a card in ascii
100 msgcrd(c
, brfrank
, mid
, brfsuit
)
102 BOOLEAN brfrank
, brfsuit
;
105 if (c
.rank
== EMPTY
|| c
.suit
== EMPTY
)
108 addmsg("%1.1s", rankchar
[c
.rank
]);
110 addmsg(rankname
[c
.rank
]);
114 addmsg("%1.1s", suitchar
[c
.suit
]);
116 addmsg(suitname
[c
.suit
]);
125 printcard(win
, cardno
, c
, blank
)
131 prcard(win
, cardno
* 2, cardno
, c
, blank
);
136 * Print out a card on the window at the specified location
139 prcard(win
, y
, x
, c
, blank
)
148 mvwaddstr(win
, y
+ 0, x
, "+-----+");
149 mvwaddstr(win
, y
+ 1, x
, "| |");
150 mvwaddstr(win
, y
+ 2, x
, "| |");
151 mvwaddstr(win
, y
+ 3, x
, "| |");
152 mvwaddstr(win
, y
+ 4, x
, "+-----+");
154 mvwaddch(win
, y
+ 1, x
+ 1, rankchar
[c
.rank
][0]);
155 waddch(win
, suitchar
[c
.suit
][0]);
156 mvwaddch(win
, y
+ 3, x
+ 4, rankchar
[c
.rank
][0]);
157 waddch(win
, suitchar
[c
.suit
][0]);
163 * Print a hand of n cards
166 prhand(h
, n
, win
, blank
)
175 for (i
= 0; i
< n
; i
++)
176 printcard(win
, i
, *h
++, blank
);
182 * reads a card, supposedly in hand, accepting unambigous brief
183 * input, returns the index of the card found...
186 infrom(hand
, n
, prompt
)
195 printf("\nINFROM: %d = n < 1!!\n", n
);
200 if (incard(&crd
)) { /* if card is full card */
201 if (!is_one(crd
, hand
, n
))
202 msg("That's not in your hand");
204 for (i
= 0; i
< n
; i
++)
205 if (hand
[i
].rank
== crd
.rank
&&
206 hand
[i
].suit
== crd
.suit
)
209 printf("\nINFROM: is_one or something messed up\n");
214 } else /* if not full card... */
215 if (crd
.rank
!= EMPTY
) {
216 for (i
= 0; i
< n
; i
++)
217 if (hand
[i
].rank
== crd
.rank
)
220 msg("No such rank in your hand");
222 for (j
= i
+ 1; j
< n
; j
++)
223 if (hand
[j
].rank
== crd
.rank
)
226 msg("Ambiguous rank");
231 msg("Sorry, I missed that");
238 * Inputs a card in any format. It reads a line ending with a CR
239 * and then parses it.
252 if (!(line
= getline()))
255 while (*p1
!= ' ' && *p1
!= '\0')
261 /* IMPORTANT: no real card has 2 char first name */
262 if (strlen(p
) == 2) { /* check for short form */
264 for (i
= 0; i
< RANKS
; i
++) {
265 if (*p
== *rankchar
[i
]) {
271 goto gotit
; /* it's nothing... */
272 ++p
; /* advance to next char */
274 for (i
= 0; i
< SUITS
; i
++) {
275 if (*p
== *suitchar
[i
]) {
285 for (i
= 0; i
< RANKS
; i
++) {
286 if (!strcmp(p
, rankname
[i
]) || !strcmp(p
, rankchar
[i
])) {
294 while (*p1
!= ' ' && *p1
!= '\0')
299 if (!strcmp("OF", p
)) {
301 while (*p1
!= ' ' && *p1
!= '\0')
308 for (i
= 0; i
< SUITS
; i
++) {
309 if (!strcmp(p
, suitname
[i
]) || !strcmp(p
, suitchar
[i
])) {
324 * Reads and converts to upper case
340 * Reads in a decimal number and makes sure it is between "lo" and
344 number(lo
, hi
, prompt
)
353 if (!(p
= getline()) || *p
== '\0') {
354 msg(quiet
? "Not a number" :
355 "That doesn't look like a number");
363 while (isdigit(*p
)) {
364 sum
= 10 * sum
+ (*p
- '0');
368 if (*p
!= ' ' && *p
!= '\t' && *p
!= '\0')
370 if (sum
>= lo
&& sum
<= hi
)
373 msg("that doesn't look like a number, try again --> ");
375 msg("%d is not between %d and %d inclusive, try again --> ",
383 * Display a message at the top of the screen.
385 char Msgbuf
[BUFSIZ
] = {'\0'};
387 static int Newpos
= 0;
390 msg(const char *fmt
, ...)
395 (void)vsprintf(&Msgbuf
[Newpos
], fmt
, ap
);
396 Newpos
= strlen(Msgbuf
);
403 * Add things to the current message
406 addmsg(const char *fmt
, ...)
411 (void)vsprintf(&Msgbuf
[Newpos
], fmt
, ap
);
412 Newpos
= strlen(Msgbuf
);
425 static int lastline
= 0;
429 /* All messages should start with uppercase */
430 mvaddch(lastline
+ Y_MSG_START
, SCORE_X
, ' ');
431 if (islower(Msgbuf
[0]) && Msgbuf
[1] != ')')
432 Msgbuf
[0] = toupper(Msgbuf
[0]);
435 if (len
/ MSG_X
+ Lineno
>= MSG_Y
) {
436 while (Lineno
< MSG_Y
) {
437 wmove(Msgwin
, Lineno
++, 0);
442 mvaddch(Lineno
+ Y_MSG_START
, SCORE_X
, '*');
445 mvwaddstr(Msgwin
, Lineno
, 0, mp
);
446 if ((len
= strlen(mp
)) > MSG_X
) {
448 for (mp
= &mp
[MSG_X
- 1]; *mp
!= ' '; mp
--)
453 wmove(Msgwin
, Lineno
, mp
- omp
);
456 if (++Lineno
>= MSG_Y
)
458 } while (len
> MSG_X
);
469 * Wait for the user to type ' ' before doing anything else
474 static const char prompt
[] = {'-', '-', 'M', 'o', 'r', 'e', '-', '-', '\0'};
476 if ((int)(Mpos
+ sizeof prompt
) < MSG_X
)
477 wmove(Msgwin
, Lineno
> 0 ? Lineno
- 1 : MSG_Y
- 1, Mpos
);
479 mvwaddch(Msgwin
, Lineno
, 0, ' ');
481 if (++Lineno
>= MSG_Y
)
484 waddstr(Msgwin
, prompt
);
491 * Sit around until the guy types the right key
500 while ((c
= readchar()) != '\n')
503 while (readchar() != ch
)
509 * Reads and returns a character, checking for gross input errors
519 while (read(STDIN_FILENO
, &c
, sizeof(char)) <= 0)
520 if (cnt
++ > 100) { /* if we are getting infinite EOFs */
521 bye(); /* quit the game */
524 if (c
== CTRL('L')) {
536 * Reads the next line up to '\n' or EOF. Multiple spaces are
537 * compressed to one space; a space is inserted before a ','
548 getyx(stdscr
, oy
, ox
);
550 /* loop reading in the string, and put it in a temporary buffer */
551 for (sp
= linebuf
; (c
= readchar()) != '\n'; clrtoeol(), refresh()) {
555 if (c
== erasechar()) { /* process erase character */
560 for (i
= strlen(unctrl(*sp
)); i
; i
--)
565 if (c
== killchar()) { /* process kill
571 if (sp
== linebuf
&& c
== ' ')
573 if (sp
>= &linebuf
[LINESIZE
- 1] || !(isprint(c
) || c
== ' '))
590 int signo
__attribute__((__unused__
));
598 * Leave the program, cleaning things up as we go.
603 signal(SIGINT
, SIG_IGN
);
604 mvcur(0, COLS
- 1, LINES
- 1, 0);