]>
git.cameronkatri.com Git - bsdgames-darwin.git/blob - cribbage/io.c
1 /* $NetBSD: io.c,v 1.26 2011/05/23 22:48:52 joerg 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. Neither the name of the University nor the names of its contributors
16 * may be used to endorse or promote products derived from this software
17 * without specific prior written permission.
19 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 #include <sys/cdefs.h>
35 static char sccsid
[] = "@(#)io.c 8.1 (Berkeley) 5/31/93";
37 __RCSID("$NetBSD: io.c,v 1.26 2011/05/23 22:48:52 joerg Exp $");
59 #define CTRL(X) (X - 'A' + 1)
61 static int msgcrd(CARD
, BOOLEAN
, const char *, BOOLEAN
);
62 static void printcard(WINDOW
*, int, CARD
, BOOLEAN
);
63 static int incard(CARD
*);
64 static void wait_for(int);
65 static int readchar(void);
67 static char linebuf
[LINESIZE
];
69 static const char *const rankname
[RANKS
] = {
70 "ACE", "TWO", "THREE", "FOUR", "FIVE", "SIX", "SEVEN",
71 "EIGHT", "NINE", "TEN", "JACK", "QUEEN", "KING"
74 static const char *const rankchar
[RANKS
] = {
75 "A", "2", "3", "4", "5", "6", "7", "8", "9", "T", "J", "Q", "K"
78 static const char *const suitname
[SUITS
] = {
79 "SPADES", "HEARTS", "DIAMONDS", "CLUBS"
82 static const char *const suitchar
[SUITS
] = {"S", "H", "D", "C"};
86 * Call msgcrd in one of two forms
89 msgcard(CARD c
, BOOLEAN brief
)
92 return (msgcrd(c
, TRUE
, NULL
, TRUE
));
94 return (msgcrd(c
, FALSE
, " of ", FALSE
));
99 * Print the value of a card in ascii
102 msgcrd(CARD c
, BOOLEAN brfrank
, const char *mid
, BOOLEAN brfsuit
)
104 if (c
.rank
== EMPTY
|| c
.suit
== EMPTY
)
107 addmsg("%1.1s", rankchar
[c
.rank
]);
109 addmsg("%s", rankname
[c
.rank
]);
113 addmsg("%1.1s", suitchar
[c
.suit
]);
115 addmsg("%s", suitname
[c
.suit
]);
124 printcard(WINDOW
*win
, int cardno
, CARD c
, BOOLEAN blank
)
126 prcard(win
, cardno
* 2, cardno
, c
, blank
);
131 * Print out a card on the window at the specified location
134 prcard(WINDOW
*win
, int y
, int x
, CARD c
, BOOLEAN blank
)
139 mvwaddstr(win
, y
+ 0, x
, "+-----+");
140 mvwaddstr(win
, y
+ 1, x
, "| |");
141 mvwaddstr(win
, y
+ 2, x
, "| |");
142 mvwaddstr(win
, y
+ 3, x
, "| |");
143 mvwaddstr(win
, y
+ 4, x
, "+-----+");
145 mvwaddch(win
, y
+ 1, x
+ 1, rankchar
[c
.rank
][0]);
146 waddch(win
, suitchar
[c
.suit
][0]);
147 mvwaddch(win
, y
+ 3, x
+ 4, rankchar
[c
.rank
][0]);
148 waddch(win
, suitchar
[c
.suit
][0]);
154 * Print a hand of n cards
157 prhand(const CARD h
[], int n
, WINDOW
*win
, BOOLEAN blank
)
162 for (i
= 0; i
< n
; i
++)
163 printcard(win
, i
, *h
++, blank
);
169 * reads a card, supposedly in hand, accepting unambigous brief
170 * input, returns the index of the card found...
173 infrom(const CARD hand
[], int n
, const char *prompt
)
179 printf("\nINFROM: %d = n < 1!!\n", n
);
184 if (incard(&crd
)) { /* if card is full card */
185 if (!is_one(crd
, hand
, n
))
186 msg("That's not in your hand");
188 for (i
= 0; i
< n
; i
++)
189 if (hand
[i
].rank
== crd
.rank
&&
190 hand
[i
].suit
== crd
.suit
)
193 printf("\nINFROM: is_one or something messed up\n");
198 } else /* if not full card... */
199 if (crd
.rank
!= EMPTY
) {
200 for (i
= 0; i
< n
; i
++)
201 if (hand
[i
].rank
== crd
.rank
)
204 msg("No such rank in your hand");
206 for (j
= i
+ 1; j
< n
; j
++)
207 if (hand
[j
].rank
== crd
.rank
)
210 msg("Ambiguous rank");
215 msg("Sorry, I missed that");
222 * Inputs a card in any format. It reads a line ending with a CR
223 * and then parses it.
235 if (!(line
= get_line()))
238 while (*p1
!= ' ' && *p1
!= '\0')
244 /* IMPORTANT: no real card has 2 char first name */
245 if (strlen(p
) == 2) { /* check for short form */
247 for (i
= 0; i
< RANKS
; i
++) {
248 if (*p
== *rankchar
[i
]) {
254 goto gotit
; /* it's nothing... */
255 ++p
; /* advance to next char */
257 for (i
= 0; i
< SUITS
; i
++) {
258 if (*p
== *suitchar
[i
]) {
268 for (i
= 0; i
< RANKS
; i
++) {
269 if (!strcmp(p
, rankname
[i
]) || !strcmp(p
, rankchar
[i
])) {
277 while (*p1
!= ' ' && *p1
!= '\0')
282 if (!strcmp("OF", p
)) {
284 while (*p1
!= ' ' && *p1
!= '\0')
291 for (i
= 0; i
< SUITS
; i
++) {
292 if (!strcmp(p
, suitname
[i
]) || !strcmp(p
, suitchar
[i
])) {
307 * Reads and converts to upper case
323 * Reads in a decimal number and makes sure it is between "lo" and
327 number(int lo
, int hi
, const char *prompt
)
334 if (!(p
= get_line()) || *p
== '\0') {
335 msg(quiet
? "Not a number" :
336 "That doesn't look like a number");
341 if (!isdigit((unsigned char)*p
))
344 while (isdigit((unsigned char)*p
)) {
345 sum
= 10 * sum
+ (*p
- '0');
349 if (*p
!= ' ' && *p
!= '\t' && *p
!= '\0')
351 if (sum
>= lo
&& sum
<= hi
)
354 msg("that doesn't look like a number, try again --> ");
356 msg("%d is not between %d and %d inclusive, try again --> ",
364 * Display a message at the top of the screen.
366 static char Msgbuf
[BUFSIZ
] = {'\0'};
368 static int Newpos
= 0;
371 msg(const char *fmt
, ...)
376 (void)vsnprintf(&Msgbuf
[Newpos
], sizeof(Msgbuf
)-Newpos
, fmt
, ap
);
377 Newpos
= strlen(Msgbuf
);
384 * Add things to the current message
387 addmsg(const char *fmt
, ...)
392 (void)vsnprintf(&Msgbuf
[Newpos
], sizeof(Msgbuf
)-Newpos
, fmt
, ap
);
393 Newpos
= strlen(Msgbuf
);
401 static int Lineno
= 0;
406 static int lastline
= 0;
410 /* All messages should start with uppercase */
411 mvaddch(lastline
+ Y_MSG_START
, SCORE_X
, ' ');
412 if (islower((unsigned char)Msgbuf
[0]) && Msgbuf
[1] != ')')
413 Msgbuf
[0] = toupper((unsigned char)Msgbuf
[0]);
416 if (len
/ MSG_X
+ Lineno
>= MSG_Y
) {
417 while (Lineno
< MSG_Y
) {
418 wmove(Msgwin
, Lineno
++, 0);
423 mvaddch(Lineno
+ Y_MSG_START
, SCORE_X
, '*');
426 mvwaddstr(Msgwin
, Lineno
, 0, mp
);
427 if ((len
= strlen(mp
)) > MSG_X
) {
429 for (mp
= &mp
[MSG_X
- 1]; *mp
!= ' '; mp
--)
434 wmove(Msgwin
, Lineno
, mp
- omp
);
437 if (++Lineno
>= MSG_Y
)
439 } while (len
> MSG_X
);
450 * Wait for the user to type ' ' before doing anything else
455 static const char prompt
[] = {'-', '-', 'M', 'o', 'r', 'e', '-', '-', '\0'};
457 if ((int)(Mpos
+ sizeof prompt
) < MSG_X
)
458 wmove(Msgwin
, Lineno
> 0 ? Lineno
- 1 : MSG_Y
- 1, Mpos
);
460 mvwaddch(Msgwin
, Lineno
, 0, ' ');
462 if (++Lineno
>= MSG_Y
)
465 waddstr(Msgwin
, prompt
);
472 * Sit around until the guy types the right key
480 while ((c
= readchar()) != '\n')
483 while (readchar() != ch
)
489 * Reads and returns a character, checking for gross input errors
499 while (read(STDIN_FILENO
, &c
, sizeof(unsigned char)) <= 0)
500 if (cnt
++ > 100) { /* if we are getting infinite EOFs */
501 bye(); /* quit the game */
504 if (c
== CTRL('L')) {
516 * Reads the next line up to '\n' or EOF. Multiple spaces are
517 * compressed to one space; a space is inserted before a ','
528 getyx(stdscr
, oy
, ox
);
530 /* loop reading in the string, and put it in a temporary buffer */
531 for (sp
= linebuf
; (c
= readchar()) != '\n'; clrtoeol(), refresh()) {
532 if (c
== erasechar()) { /* process erase character */
537 for (i
= strlen(unctrl(*sp
)); i
; i
--)
542 if (c
== killchar()) { /* process kill
548 if (sp
== linebuf
&& c
== ' ')
550 if (sp
>= &linebuf
[LINESIZE
- 1] || !(isprint(c
) || c
== ' '))
566 receive_intr(int signo __unused
)
574 * Leave the program, cleaning things up as we go.
579 signal(SIGINT
, SIG_IGN
);
580 mvcur(0, COLS
- 1, LINES
- 1, 0);