]>
git.cameronkatri.com Git - bsdgames-darwin.git/blob - atc/main.c
2 * Copyright (c) 1990 The Regents of the University of California.
5 * This code is derived from software contributed to Berkeley by
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. All advertising materials mentioning features or use of this software
17 * must display the following acknowledgement:
18 * This product includes software developed by the University of
19 * California, Berkeley and its contributors.
20 * 4. Neither the name of the University nor the names of its contributors
21 * may be used to endorse or promote products derived from this software
22 * without specific prior written permission.
24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 * Copyright (c) 1987 by Ed James, UC Berkeley. All rights reserved.
40 * Copy permission is hereby granted provided that this notice is
41 * retained on all partial or complete copies.
43 * For more info on this and all of my stuff, mail edjames@berkeley.edu.
48 "@(#) Copyright (c) 1990 The Regents of the University of California.\n\
49 All rights reserved.\n";
53 static char sccsid
[] = "@(#)main.c 5.4 (Berkeley) 3/5/91";
57 #include "pathnames.h"
63 int f_usage
= 0, f_list
= 0, f_showscore
= 0;
70 extern char *default_game(), *okay_game();
71 extern void log_score(), quit(), update();
73 start_time
= seed
= time(0);
110 fprintf(stderr
, "Unknown option '%c'\n", *ptr
,
122 "Usage: %s -[u?lstp] [-[gf] game_name] [-r random seed]\n",
131 strcpy(buf
, _PATH_GAMES
);
132 buf
[strlen(buf
) - 1] = '\0';
136 if (f_usage
|| f_showscore
|| f_list
|| f_printpath
)
140 file
= default_game();
142 file
= okay_game(file
);
144 if (file
== NULL
|| read_file(file
) < 0)
152 signal(SIGINT
, quit
);
153 signal(SIGQUIT
, quit
);
155 signal(SIGTSTP
, SIG_IGN
);
156 signal(SIGSTOP
, SIG_IGN
);
158 signal(SIGHUP
, log_score
);
159 signal(SIGTERM
, log_score
);
162 ioctl(fileno(stdin
), TIOCGETP
, &tty_start
);
163 bcopy(&tty_start
, &tty_new
, sizeof(tty_new
));
164 tty_new
.sg_flags
|= CBREAK
;
165 tty_new
.sg_flags
&= ~ECHO
;
166 ioctl(fileno(stdin
), TIOCSETP
, &tty_new
);
170 ioctl(fileno(stdin
), TCGETA
, &tty_start
);
171 bcopy(&tty_start
, &tty_new
, sizeof(tty_new
));
172 tty_new
.c_lflag
&= ~ICANON
;
173 tty_new
.c_lflag
&= ~ECHO
;
174 tty_new
.c_cc
[VMIN
] = 1;
175 tty_new
.c_cc
[VTIME
] = 0;
176 ioctl(fileno(stdin
), TCSETAW
, &tty_new
);
179 signal(SIGALRM
, update
);
182 itv
.it_value
.tv_sec
= 0;
183 itv
.it_value
.tv_usec
= 1;
184 itv
.it_interval
.tv_sec
= sp
->update_secs
;
185 itv
.it_interval
.tv_usec
= 0;
186 setitimer(ITIMER_REAL
, &itv
, NULL
);
189 alarm(sp
->update_secs
);
193 if (getcommand() != 1)
197 itv
.it_value
.tv_sec
= 0;
198 itv
.it_value
.tv_usec
= 0;
199 setitimer(ITIMER_REAL
, &itv
, NULL
);
208 itv
.it_value
.tv_sec
= sp
->update_secs
;
209 itv
.it_value
.tv_usec
= 0;
210 itv
.it_interval
.tv_sec
= sp
->update_secs
;
211 itv
.it_interval
.tv_usec
= 0;
212 setitimer(ITIMER_REAL
, &itv
, NULL
);
215 alarm(sp
->update_secs
);
228 yyin
= fopen(s
, "r");
246 static char file
[256];
247 char line
[256], games
[256];
249 strcpy(games
, _PATH_GAMES
);
250 strcat(games
, GAMES
);
252 if ((fp
= fopen(games
, "r")) == NULL
) {
256 if (fgets(line
, sizeof(line
), fp
) == NULL
) {
257 fprintf(stderr
, "%s: no default game available\n", games
);
261 line
[strlen(line
) - 1] = '\0';
262 strcpy(file
, _PATH_GAMES
);
272 static char file
[256];
273 char *ret
= NULL
, line
[256], games
[256];
275 strcpy(games
, _PATH_GAMES
);
276 strcat(games
, GAMES
);
278 if ((fp
= fopen(games
, "r")) == NULL
) {
282 while (fgets(line
, sizeof(line
), fp
) != NULL
) {
283 line
[strlen(line
) - 1] = '\0';
284 if (strcmp(s
, line
) == 0) {
285 strcpy(file
, _PATH_GAMES
);
295 fprintf(stderr
, "%s: %s: game not found\n", games
, s
);
296 fprintf(stderr
, "Your score will not be logged.\n");
297 sleep(2); /* give the guy time to read it */
305 char line
[256], games
[256];
308 strcpy(games
, _PATH_GAMES
);
309 strcat(games
, GAMES
);
311 if ((fp
= fopen(games
, "r")) == NULL
) {
315 puts("available games:");
316 while (fgets(line
, sizeof(line
), fp
) != NULL
) {
321 if (num_games
== 0) {
322 fprintf(stderr
, "%s: no games available\n", games
);