]>
git.cameronkatri.com Git - bsdgames-darwin.git/blob - atc/graphics.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.
47 /*static char sccsid[] = "from: @(#)graphics.c 5.3 (Berkeley) 10/30/90";*/
48 static char rcsid
[] = "$Id: graphics.c,v 1.2 1993/08/01 18:57:09 mycroft Exp $";
56 #define C_TOPBOTTOM '-'
57 #define C_LEFTRIGHT '|'
60 #define C_BACKROUND '.'
64 WINDOW
*radar
, *cleanradar
, *credit
, *input
, *planes
;
74 while ((c
= getchar()) == -1 && errno
== EINTR
) ;
83 for (pp
= air
.head
; pp
!= NULL
; pp
= pp
->next
) {
84 wmove(cleanradar
, pp
->ypos
, pp
->xpos
* 2);
85 wmove(radar
, pp
->ypos
, pp
->xpos
* 2);
86 waddch(radar
, winch(cleanradar
));
87 wmove(cleanradar
, pp
->ypos
, pp
->xpos
* 2 + 1);
88 wmove(radar
, pp
->ypos
, pp
->xpos
* 2 + 1);
89 waddch(radar
, winch(cleanradar
));
97 for (pp
= air
.head
; pp
!= NULL
; pp
= pp
->next
) {
98 if (pp
->status
== S_MARKED
)
100 wmove(radar
, pp
->ypos
, pp
->xpos
* 2);
101 waddch(radar
, name(pp
));
102 waddch(radar
, '0' + pp
->altitude
);
103 if (pp
->status
== S_MARKED
)
108 wrefresh(input
); /* return cursor */
114 static char buffer
[BUFSIZ
];
117 setbuf(stdout
, buffer
);
118 input
= newwin(INPUT_LINES
, COLS
- PLANE_COLS
, LINES
- INPUT_LINES
, 0);
119 credit
= newwin(INPUT_LINES
, PLANE_COLS
, LINES
- INPUT_LINES
,
121 planes
= newwin(LINES
- INPUT_LINES
, PLANE_COLS
, 0, COLS
- PLANE_COLS
);
128 char str
[3], *airstr
;
134 radar
= newwin(scp
->height
, scp
->width
* 2, 0, 0);
136 if (cleanradar
!= NULL
)
138 cleanradar
= newwin(scp
->height
, scp
->width
* 2, 0, 0);
140 /* minus one here to prevent a scroll */
141 for (i
= 0; i
< PLANE_COLS
- 1; i
++) {
143 waddch(credit
, C_CREDIT
);
144 wmove(credit
, INPUT_LINES
- 1, i
);
145 waddch(credit
, C_CREDIT
);
147 wmove(credit
, INPUT_LINES
/ 2, 1);
148 waddstr(credit
, AUTHOR_STR
);
150 for (i
= 1; i
< scp
->height
- 1; i
++) {
151 for (j
= 1; j
< scp
->width
- 1; j
++) {
152 wmove(radar
, i
, j
* 2);
153 waddch(radar
, C_BACKROUND
);
158 * Draw the lines first, since people like to draw lines
159 * through beacons and exit points.
162 for (i
= 0; i
< scp
->num_lines
; i
++) {
164 draw_line(radar
, scp
->line
[i
].p1
.x
, scp
->line
[i
].p1
.y
,
165 scp
->line
[i
].p2
.x
, scp
->line
[i
].p2
.y
, str
);
168 str
[0] = C_TOPBOTTOM
;
169 str
[1] = C_TOPBOTTOM
;
171 for (i
= 0; i
< scp
->width
- 1; i
++)
173 waddch(radar
, C_TOPBOTTOM
);
175 str
[0] = C_TOPBOTTOM
;
176 str
[1] = C_TOPBOTTOM
;
177 wmove(radar
, scp
->height
- 1, 0);
178 for (i
= 0; i
< scp
->width
- 1; i
++)
180 waddch(radar
, C_TOPBOTTOM
);
182 for (i
= 1; i
< scp
->height
- 1; i
++) {
184 waddch(radar
, C_LEFTRIGHT
);
185 wmove(radar
, i
, (scp
->width
- 1) * 2);
186 waddch(radar
, C_LEFTRIGHT
);
190 for (i
= 0; i
< scp
->num_beacons
; i
++) {
192 wmove(radar
, scp
->beacon
[i
].y
, scp
->beacon
[i
].x
* 2);
196 for (i
= 0; i
< scp
->num_exits
; i
++) {
197 wmove(radar
, scp
->exit
[i
].y
, scp
->exit
[i
].x
* 2);
198 waddch(radar
, '0' + i
);
202 for (i
= 0; i
< scp
->num_airports
; i
++) {
203 str
[0] = airstr
[scp
->airport
[i
].dir
];
205 wmove(radar
, scp
->airport
[i
].y
, scp
->airport
[i
].x
* 2);
209 overwrite(radar
, cleanradar
);
215 draw_line(w
, x
, y
, lx
, ly
, s
)
226 if (x
== lx
&& y
== ly
)
235 wmove(input
, 0, pos
);
243 wmove(input
, 0, pos
);
251 wmove(input
, 0, pos
);
264 ioerror(pos
, len
, str
)
269 wmove(input
, 1, pos
);
270 for (i
= 0; i
< len
; i
++)
282 struct itimerval itv
;
287 waddstr(input
, "Really quit? (y/n) ");
293 if (c
== EOF
|| c
== 'y') {
296 itv
.it_value
.tv_sec
= 0;
297 itv
.it_value
.tv_usec
= 0;
298 setitimer(ITIMER_REAL
, &itv
, NULL
);
333 wprintw(planes
, "Time: %-4d Safe: %d", clck
, safe_planes
);
336 waddstr(planes
, "pl dt comm");
337 for (pp
= air
.head
; pp
!= NULL
; pp
= pp
->next
) {
338 if (waddch(planes
, '\n') == ERR
) {
342 waddstr(planes
, command(pp
));
344 waddch(planes
, '\n');
345 for (pp
= ground
.head
; pp
!= NULL
; pp
= pp
->next
) {
346 if (waddch(planes
, '\n') == ERR
) {
350 waddstr(planes
, command(pp
));
353 wmove(planes
, LINES
- INPUT_LINES
- 1, 0);
354 waddstr(planes
, "---- more ----");
367 struct itimerval itv
;
372 itv
.it_value
.tv_sec
= 0;
373 itv
.it_value
.tv_usec
= 0;
374 setitimer(ITIMER_REAL
, &itv
, NULL
);
382 wprintw(input
, "Plane '%c' %s\n\nHit space for top players list...",
386 while ((c
= getchar()) != EOF
&& c
!= ' ')
388 clear(); /* move to top of screen */
407 /* refresh input last to get cursor in right place */
418 endwin(); /* clean up curses */