]>
git.cameronkatri.com Git - bsdgames-darwin.git/blob - mille/misc.c
2 * Copyright (c) 1983, 1993
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by the University of
16 * California, Berkeley and its contributors.
17 * 4. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 /*static char sccsid[] = "from: @(#)misc.c 8.1 (Berkeley) 5/31/93";*/
36 static char rcsid
[] = "$Id: misc.c,v 1.3 1994/05/12 17:39:35 jtc Exp $";
50 # define _tty cur_term->Nttyb
54 * @(#)misc.c 1.2 (Berkeley) 3/28/83
64 mvprintw(ERR_Y
, ERR_X
, str
, arg
);
78 while ((c
= readch()) == '\n' || c
== '\r' || c
== ' ')
82 if (c
== killchar() || c
== erasechar())
87 case '1': case '2': case '3':
88 case '4': case '5': case '6':
91 case '0': case 'P': case 'p':
104 while ((c1
=readch()) != '\r' && c1
!= '\n' && c1
!= ' ')
105 if (c1
== killchar())
107 else if (c1
== erasechar()) {
126 if (Play
== PLAYER
) {
127 if (getyn(EXTENSIONPROMPT
)) {
142 reg
int i
, safe
, miles
;
145 op
= &Player
[PLAYER
];
146 for (safe
= 0, i
= 0; i
< NUMSAFE
; i
++)
147 if (pp
->safety
[i
] != S_UNKNOWN
)
151 if (op
->mileage
== 0 || onecard(op
)
152 || (op
->can_go
&& op
->mileage
>= 500))
154 for (miles
= 0, i
= 0; i
< NUMSAFE
; i
++)
155 if (op
->safety
[i
] != S_PLAYED
156 && pp
->safety
[i
] == S_UNKNOWN
)
158 if (miles
+ safe
== NUMSAFE
)
160 for (miles
= 0, i
= 0; i
< HAND_SZ
; i
++)
161 if ((safe
= pp
->hand
[i
]) <= C_200
)
162 miles
+= Value
[safe
];
163 if (miles
+ (Topcard
- Deck
) * 3 > 1000)
172 * Get a yes or no answer to the given question. Saves are
173 * also allowed. Return TRUE if the answer was yes, FALSE if no.
176 register int promptno
; {
182 leaveok(Board
, FALSE
);
186 switch (c
= readch()) {
190 leaveok(Board
, TRUE
);
195 leaveok(Board
, TRUE
);
215 * Check to see if more games are desired. If not, and game
216 * came from a saved file, make sure that they don't want to restore
217 * it. Exit appropriately.
222 if (Player
[PLAYER
].total
>= 5000 || Player
[COMP
].total
>= 5000)
223 if (getyn(ANOTHERGAMEPROMPT
))
227 * must do accounting normally done in main()
229 if (Player
[PLAYER
].total
> Player
[COMP
].total
)
230 Player
[PLAYER
].games
++;
231 else if (Player
[PLAYER
].total
< Player
[COMP
].total
)
232 Player
[COMP
].games
++;
233 Player
[COMP
].total
= 0;
234 Player
[PLAYER
].total
= 0;
237 if (getyn(ANOTHERHANDPROMPT
))
239 if (!Saved
&& getyn(SAVEGAMEPROMPT
))
250 for (cnt
= 0; read(0, &c
, 1) <= 0; cnt
++)