]>
git.cameronkatri.com Git - bsdgames-darwin.git/blob - atc/graphics.c
1 /* $NetBSD: graphics.c,v 1.3 1995/03/21 15:04:04 cgd Exp $ */
4 * Copyright (c) 1990, 1993
5 * The Regents of the University of California. All rights reserved.
7 * This code is derived from software contributed to Berkeley by
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. All advertising materials mentioning features or use of this software
19 * must display the following acknowledgement:
20 * This product includes software developed by the University of
21 * California, Berkeley and its contributors.
22 * 4. Neither the name of the University nor the names of its contributors
23 * may be used to endorse or promote products derived from this software
24 * without specific prior written permission.
26 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
40 * Copyright (c) 1987 by Ed James, UC Berkeley. All rights reserved.
42 * Copy permission is hereby granted provided that this notice is
43 * retained on all partial or complete copies.
45 * For more info on this and all of my stuff, mail edjames@berkeley.edu.
50 static char sccsid
[] = "@(#)graphics.c 8.1 (Berkeley) 5/31/93";
52 static char rcsid
[] = "$NetBSD: graphics.c,v 1.3 1995/03/21 15:04:04 cgd Exp $";
61 #define C_TOPBOTTOM '-'
62 #define C_LEFTRIGHT '|'
65 #define C_BACKROUND '.'
69 WINDOW
*radar
, *cleanradar
, *credit
, *input
, *planes
;
79 while ((c
= getchar()) == -1 && errno
== EINTR
) ;
88 for (pp
= air
.head
; pp
!= NULL
; pp
= pp
->next
) {
89 wmove(cleanradar
, pp
->ypos
, pp
->xpos
* 2);
90 wmove(radar
, pp
->ypos
, pp
->xpos
* 2);
91 waddch(radar
, winch(cleanradar
));
92 wmove(cleanradar
, pp
->ypos
, pp
->xpos
* 2 + 1);
93 wmove(radar
, pp
->ypos
, pp
->xpos
* 2 + 1);
94 waddch(radar
, winch(cleanradar
));
102 for (pp
= air
.head
; pp
!= NULL
; pp
= pp
->next
) {
103 if (pp
->status
== S_MARKED
)
105 wmove(radar
, pp
->ypos
, pp
->xpos
* 2);
106 waddch(radar
, name(pp
));
107 waddch(radar
, '0' + pp
->altitude
);
108 if (pp
->status
== S_MARKED
)
113 wrefresh(input
); /* return cursor */
119 static char buffer
[BUFSIZ
];
122 setbuf(stdout
, buffer
);
123 input
= newwin(INPUT_LINES
, COLS
- PLANE_COLS
, LINES
- INPUT_LINES
, 0);
124 credit
= newwin(INPUT_LINES
, PLANE_COLS
, LINES
- INPUT_LINES
,
126 planes
= newwin(LINES
- INPUT_LINES
, PLANE_COLS
, 0, COLS
- PLANE_COLS
);
133 char str
[3], *airstr
;
139 radar
= newwin(scp
->height
, scp
->width
* 2, 0, 0);
141 if (cleanradar
!= NULL
)
143 cleanradar
= newwin(scp
->height
, scp
->width
* 2, 0, 0);
145 /* minus one here to prevent a scroll */
146 for (i
= 0; i
< PLANE_COLS
- 1; i
++) {
148 waddch(credit
, C_CREDIT
);
149 wmove(credit
, INPUT_LINES
- 1, i
);
150 waddch(credit
, C_CREDIT
);
152 wmove(credit
, INPUT_LINES
/ 2, 1);
153 waddstr(credit
, AUTHOR_STR
);
155 for (i
= 1; i
< scp
->height
- 1; i
++) {
156 for (j
= 1; j
< scp
->width
- 1; j
++) {
157 wmove(radar
, i
, j
* 2);
158 waddch(radar
, C_BACKROUND
);
163 * Draw the lines first, since people like to draw lines
164 * through beacons and exit points.
167 for (i
= 0; i
< scp
->num_lines
; i
++) {
169 draw_line(radar
, scp
->line
[i
].p1
.x
, scp
->line
[i
].p1
.y
,
170 scp
->line
[i
].p2
.x
, scp
->line
[i
].p2
.y
, str
);
173 str
[0] = C_TOPBOTTOM
;
174 str
[1] = C_TOPBOTTOM
;
176 for (i
= 0; i
< scp
->width
- 1; i
++)
178 waddch(radar
, C_TOPBOTTOM
);
180 str
[0] = C_TOPBOTTOM
;
181 str
[1] = C_TOPBOTTOM
;
182 wmove(radar
, scp
->height
- 1, 0);
183 for (i
= 0; i
< scp
->width
- 1; i
++)
185 waddch(radar
, C_TOPBOTTOM
);
187 for (i
= 1; i
< scp
->height
- 1; i
++) {
189 waddch(radar
, C_LEFTRIGHT
);
190 wmove(radar
, i
, (scp
->width
- 1) * 2);
191 waddch(radar
, C_LEFTRIGHT
);
195 for (i
= 0; i
< scp
->num_beacons
; i
++) {
197 wmove(radar
, scp
->beacon
[i
].y
, scp
->beacon
[i
].x
* 2);
201 for (i
= 0; i
< scp
->num_exits
; i
++) {
202 wmove(radar
, scp
->exit
[i
].y
, scp
->exit
[i
].x
* 2);
203 waddch(radar
, '0' + i
);
207 for (i
= 0; i
< scp
->num_airports
; i
++) {
208 str
[0] = airstr
[scp
->airport
[i
].dir
];
210 wmove(radar
, scp
->airport
[i
].y
, scp
->airport
[i
].x
* 2);
214 overwrite(radar
, cleanradar
);
220 draw_line(w
, x
, y
, lx
, ly
, s
)
231 if (x
== lx
&& y
== ly
)
240 wmove(input
, 0, pos
);
248 wmove(input
, 0, pos
);
256 wmove(input
, 0, pos
);
269 ioerror(pos
, len
, str
)
274 wmove(input
, 1, pos
);
275 for (i
= 0; i
< len
; i
++)
287 struct itimerval itv
;
292 waddstr(input
, "Really quit? (y/n) ");
298 if (c
== EOF
|| c
== 'y') {
301 itv
.it_value
.tv_sec
= 0;
302 itv
.it_value
.tv_usec
= 0;
303 setitimer(ITIMER_REAL
, &itv
, NULL
);
338 wprintw(planes
, "Time: %-4d Safe: %d", clck
, safe_planes
);
341 waddstr(planes
, "pl dt comm");
342 for (pp
= air
.head
; pp
!= NULL
; pp
= pp
->next
) {
343 if (waddch(planes
, '\n') == ERR
) {
347 waddstr(planes
, command(pp
));
349 waddch(planes
, '\n');
350 for (pp
= ground
.head
; pp
!= NULL
; pp
= pp
->next
) {
351 if (waddch(planes
, '\n') == ERR
) {
355 waddstr(planes
, command(pp
));
358 wmove(planes
, LINES
- INPUT_LINES
- 1, 0);
359 waddstr(planes
, "---- more ----");
372 struct itimerval itv
;
377 itv
.it_value
.tv_sec
= 0;
378 itv
.it_value
.tv_usec
= 0;
379 setitimer(ITIMER_REAL
, &itv
, NULL
);
387 wprintw(input
, "Plane '%c' %s\n\nHit space for top players list...",
391 while ((c
= getchar()) != EOF
&& c
!= ' ')
393 clear(); /* move to top of screen */
412 /* refresh input last to get cursor in right place */
423 endwin(); /* clean up curses */