1 /* $NetBSD: io.c,v 1.23 2009/07/13 19:05:40 roy 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.23 2009/07/13 19:05:40 roy 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
94 return (msgcrd(c
, TRUE
, NULL
, TRUE
));
96 return (msgcrd(c
, FALSE
, " of ", FALSE
));
101 * Print the value of a card in ascii
104 msgcrd(CARD c
, BOOLEAN brfrank
, const char *mid
, BOOLEAN brfsuit
)
106 if (c
.rank
== EMPTY
|| c
.suit
== EMPTY
)
109 addmsg("%1.1s", rankchar
[c
.rank
]);
111 addmsg(rankname
[c
.rank
]);
115 addmsg("%1.1s", suitchar
[c
.suit
]);
117 addmsg(suitname
[c
.suit
]);
126 printcard(WINDOW
*win
, int cardno
, CARD c
, BOOLEAN blank
)
128 prcard(win
, cardno
* 2, cardno
, c
, blank
);
133 * Print out a card on the window at the specified location
136 prcard(WINDOW
*win
, int y
, int x
, CARD c
, BOOLEAN blank
)
141 mvwaddstr(win
, y
+ 0, x
, "+-----+");
142 mvwaddstr(win
, y
+ 1, x
, "| |");
143 mvwaddstr(win
, y
+ 2, x
, "| |");
144 mvwaddstr(win
, y
+ 3, x
, "| |");
145 mvwaddstr(win
, y
+ 4, x
, "+-----+");
147 mvwaddch(win
, y
+ 1, x
+ 1, rankchar
[c
.rank
][0]);
148 waddch(win
, suitchar
[c
.suit
][0]);
149 mvwaddch(win
, y
+ 3, x
+ 4, rankchar
[c
.rank
][0]);
150 waddch(win
, suitchar
[c
.suit
][0]);
156 * Print a hand of n cards
159 prhand(const CARD h
[], int n
, WINDOW
*win
, BOOLEAN blank
)
164 for (i
= 0; i
< n
; i
++)
165 printcard(win
, i
, *h
++, blank
);
171 * reads a card, supposedly in hand, accepting unambigous brief
172 * input, returns the index of the card found...
175 infrom(const CARD hand
[], int n
, const char *prompt
)
181 printf("\nINFROM: %d = n < 1!!\n", n
);
186 if (incard(&crd
)) { /* if card is full card */
187 if (!is_one(crd
, hand
, n
))
188 msg("That's not in your hand");
190 for (i
= 0; i
< n
; i
++)
191 if (hand
[i
].rank
== crd
.rank
&&
192 hand
[i
].suit
== crd
.suit
)
195 printf("\nINFROM: is_one or something messed up\n");
200 } else /* if not full card... */
201 if (crd
.rank
!= EMPTY
) {
202 for (i
= 0; i
< n
; i
++)
203 if (hand
[i
].rank
== crd
.rank
)
206 msg("No such rank in your hand");
208 for (j
= i
+ 1; j
< n
; j
++)
209 if (hand
[j
].rank
== crd
.rank
)
212 msg("Ambiguous rank");
217 msg("Sorry, I missed that");
224 * Inputs a card in any format. It reads a line ending with a CR
225 * and then parses it.
237 if (!(line
= get_line()))
240 while (*p1
!= ' ' && *p1
!= '\0')
246 /* IMPORTANT: no real card has 2 char first name */
247 if (strlen(p
) == 2) { /* check for short form */
249 for (i
= 0; i
< RANKS
; i
++) {
250 if (*p
== *rankchar
[i
]) {
256 goto gotit
; /* it's nothing... */
257 ++p
; /* advance to next char */
259 for (i
= 0; i
< SUITS
; i
++) {
260 if (*p
== *suitchar
[i
]) {
270 for (i
= 0; i
< RANKS
; i
++) {
271 if (!strcmp(p
, rankname
[i
]) || !strcmp(p
, rankchar
[i
])) {
279 while (*p1
!= ' ' && *p1
!= '\0')
284 if (!strcmp("OF", p
)) {
286 while (*p1
!= ' ' && *p1
!= '\0')
293 for (i
= 0; i
< SUITS
; i
++) {
294 if (!strcmp(p
, suitname
[i
]) || !strcmp(p
, suitchar
[i
])) {
309 * Reads and converts to upper case
325 * Reads in a decimal number and makes sure it is between "lo" and
329 number(int lo
, int hi
, const char *prompt
)
336 if (!(p
= get_line()) || *p
== '\0') {
337 msg(quiet
? "Not a number" :
338 "That doesn't look like a number");
343 if (!isdigit((unsigned char)*p
))
346 while (isdigit((unsigned char)*p
)) {
347 sum
= 10 * sum
+ (*p
- '0');
351 if (*p
!= ' ' && *p
!= '\t' && *p
!= '\0')
353 if (sum
>= lo
&& sum
<= hi
)
356 msg("that doesn't look like a number, try again --> ");
358 msg("%d is not between %d and %d inclusive, try again --> ",
366 * Display a message at the top of the screen.
368 static char Msgbuf
[BUFSIZ
] = {'\0'};
370 static int Newpos
= 0;
373 msg(const char *fmt
, ...)
378 (void)vsnprintf(&Msgbuf
[Newpos
], sizeof(Msgbuf
)-Newpos
, fmt
, ap
);
379 Newpos
= strlen(Msgbuf
);
386 * Add things to the current message
389 addmsg(const char *fmt
, ...)
394 (void)vsnprintf(&Msgbuf
[Newpos
], sizeof(Msgbuf
)-Newpos
, fmt
, ap
);
395 Newpos
= strlen(Msgbuf
);
403 static int Lineno
= 0;
408 static int lastline
= 0;
412 /* All messages should start with uppercase */
413 mvaddch(lastline
+ Y_MSG_START
, SCORE_X
, ' ');
414 if (islower((unsigned char)Msgbuf
[0]) && Msgbuf
[1] != ')')
415 Msgbuf
[0] = toupper((unsigned char)Msgbuf
[0]);
418 if (len
/ MSG_X
+ Lineno
>= MSG_Y
) {
419 while (Lineno
< MSG_Y
) {
420 wmove(Msgwin
, Lineno
++, 0);
425 mvaddch(Lineno
+ Y_MSG_START
, SCORE_X
, '*');
428 mvwaddstr(Msgwin
, Lineno
, 0, mp
);
429 if ((len
= strlen(mp
)) > MSG_X
) {
431 for (mp
= &mp
[MSG_X
- 1]; *mp
!= ' '; mp
--)
436 wmove(Msgwin
, Lineno
, mp
- omp
);
439 if (++Lineno
>= MSG_Y
)
441 } while (len
> MSG_X
);
452 * Wait for the user to type ' ' before doing anything else
457 static const char prompt
[] = {'-', '-', 'M', 'o', 'r', 'e', '-', '-', '\0'};
459 if ((int)(Mpos
+ sizeof prompt
) < MSG_X
)
460 wmove(Msgwin
, Lineno
> 0 ? Lineno
- 1 : MSG_Y
- 1, Mpos
);
462 mvwaddch(Msgwin
, Lineno
, 0, ' ');
464 if (++Lineno
>= MSG_Y
)
467 waddstr(Msgwin
, prompt
);
474 * Sit around until the guy types the right key
482 while ((c
= readchar()) != '\n')
485 while (readchar() != ch
)
491 * Reads and returns a character, checking for gross input errors
501 while (read(STDIN_FILENO
, &c
, sizeof(unsigned char)) <= 0)
502 if (cnt
++ > 100) { /* if we are getting infinite EOFs */
503 bye(); /* quit the game */
506 if (c
== CTRL('L')) {
518 * Reads the next line up to '\n' or EOF. Multiple spaces are
519 * compressed to one space; a space is inserted before a ','
530 getyx(stdscr
, oy
, ox
);
532 /* loop reading in the string, and put it in a temporary buffer */
533 for (sp
= linebuf
; (c
= readchar()) != '\n'; clrtoeol(), refresh()) {
534 if (c
== erasechar()) { /* process erase character */
539 for (i
= strlen(unctrl(*sp
)); i
; i
--)
544 if (c
== killchar()) { /* process kill
550 if (sp
== linebuf
&& c
== ' ')
552 if (sp
>= &linebuf
[LINESIZE
- 1] || !(isprint(c
) || c
== ' '))
568 receive_intr(int signo __unused
)
576 * Leave the program, cleaning things up as we go.
581 signal(SIGINT
, SIG_IGN
);
582 mvcur(0, COLS
- 1, LINES
- 1, 0);