1 /* $NetBSD: subs.c,v 1.16 2007/12/15 19:44:39 perry 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
[] = "@(#)subs.c 8.1 (Berkeley) 5/31/93";
37 __RCSID("$NetBSD: subs.c,v 1.16 2007/12/15 19:44:39 perry Exp $");
44 static char outbuff
[BUFSIZ
];
46 static const char plred
[] = "Player is red, computer is white.";
47 static const char plwhite
[] = "Player is white, computer is red.";
48 static const char nocomp
[] = "(No computer play.)";
50 static const char *const descr
[] = {
51 "Usage: backgammon [-] [n r w b pr pw pb t3a]\n",
52 "\t-\tgets this list\n\tn\tdon't ask for rules or instructions",
53 "\tr\tplayer is red (implies n)\n\tw\tplayer is white (implies n)",
54 "\tb\ttwo players, red and white (implies n)",
55 "\tpr\tprint the board before red's turn",
56 "\tpw\tprint the board before white's turn",
57 "\tpb\tprint the board before both player's turn",
58 "\tterm\tterminal is a term",
59 "\tsfile\trecover saved game from file",
64 errexit(const char *s
)
75 if (buffnum
== BUFSIZ
) {
76 if (write(1, outbuff
, BUFSIZ
) != BUFSIZ
)
77 errexit("addbuf (write):");
90 if (write(1, outbuff
, buffnum
) != buffnum
)
91 errexit("buflush (write):");
105 if (read(0, &c
, 1) != 1)
107 #ifdef WHY_IS_THIS_HARDWIRED_IN_HERE
111 if (c
== '\033' || c
== '\015')
117 if (c
>= 'a' && c
<= 'z')
132 writel(const char *l
)
138 trace
= fopen("bgtrace", "w");
140 fprintf(trace
, "writel: \"");
141 for (s
= l
; *s
; s
++) {
142 if (*s
< ' ' || *s
== '\177')
143 fprintf(trace
, "^%c", (*s
) ^ 0100);
147 fprintf(trace
, "\"\n");
161 writel("Red's roll: ");
163 writel("White's roll: ");
176 for (i
= 4; i
> 0; i
--) {
178 for (j
= 0; j
< i
; j
++)
181 writec((n
/ t
) % 10 + '0');
183 writec(n
% 10 + '0');
198 writel("Game value: ");
205 writel(" doubled last.");
208 case -1: /* player is red */
211 case 0: /* player is both colors */
214 case 1: /* player is white */
219 if (rscore
|| wscore
) {
238 writel("Are you sure you want to quit?");
241 writel("Would you like to save this game?");
258 while ((c
= readc()) != 'Y' && c
!= 'N') {
259 if (special
&& c
== special
)
263 writel(" (Y, N, or ");
284 writel("Blot hit on ");
296 c
= cturn
/ abs(cturn
);
312 /* process arguments here. dashes are ignored, nbrw are ignored if
313 * the game is being recovered */
316 while (*s
&& s
[0][0] == '-') {
319 /* don't ask if rules or instructions needed */
327 /* player is both red and white */
345 /* player is white */
354 /* print board after move according to following
357 if (s
[0][2] != 'r' && s
[0][2] != 'w' && s
[0][2] != 'b')
360 args
[acnt
++] = s
[0][2];
370 if (s
[0][2] == '\0') { /* get terminal caps */
374 tflag
= getcaps(&s
[0][2]);
381 writel("No save file named\n");
401 board
[6] = board
[13] = -5;
403 board
[12] = board
[19] = 5;
406 off
[0] = off
[1] = -15;
426 fixtty(struct termios
*t
)
431 if (tcsetattr(0, TCSADRAIN
, t
) < 0)
436 getout(int dummy __unused
)
438 /* go to bottom of screen */
445 /* fix terminal status */
468 while (c
< '1' || c
> '6')
474 while (c
< '1' || c
> '6')