]>
git.cameronkatri.com Git - bsdgames-darwin.git/blob - atc/input.c
1 /* $NetBSD: input.c,v 1.5 1997/01/13 06:50:25 tls 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
[] = "@(#)input.c 8.1 (Berkeley) 5/31/93";
52 static char rcsid
[] = "$NetBSD: input.c,v 1.5 1997/01/13 06:50:25 tls Exp $";
57 #include "pathnames.h"
66 #define REDRAWTOKEN '\014' /* CTRL(L) */
67 #define SHELLTOKEN '!'
69 #define ALPHATOKEN 256
92 #define T_RULE stack[level].rule
93 #define T_STATE stack[level].state
94 #define T_STR stack[level].str
95 #define T_POS stack[level].pos
96 #define T_CH stack[level].ch
98 #define NUMELS(a) (sizeof (a) / sizeof (*(a)))
100 #define NUMSTATES NUMELS(st)
102 char *setplane(), *circle(), *left(), *right(), *Left(), *Right(),
103 *beacon(), *ex_it(), *climb(), *descend(), *setalt(), *setrelalt(),
104 *benum(), *to_dir(), *rel_dir(), *delayb(), *mark(), *unmark(),
105 *airport(), *turn(), *ignore();
107 RULE state0
[] = { { ALPHATOKEN
, 1, "%c:", setplane
},
108 { RETTOKEN
, -1, "", NULL
},
110 { CRTOKEN
, -1, "", NULL
},
112 { HELPTOKEN
, 12, " [a-z]<ret>", NULL
}},
113 state1
[] = { { 't', 2, " turn", turn
},
114 { 'a', 3, " altitude:", NULL
},
115 { 'c', 4, " circle", circle
},
116 { 'm', 7, " mark", mark
},
117 { 'u', 7, " unmark", unmark
},
118 { 'i', 7, " ignore", ignore
},
119 { HELPTOKEN
, 12, " tacmui", NULL
}},
120 state2
[] = { { 'l', 6, " left", left
},
121 { 'r', 6, " right", right
},
122 { 'L', 4, " left 90", Left
},
123 { 'R', 4, " right 90", Right
},
124 { 't', 11, " towards", NULL
},
125 { 'w', 4, " to 0", to_dir
},
126 { 'e', 4, " to 45", to_dir
},
127 { 'd', 4, " to 90", to_dir
},
128 { 'c', 4, " to 135", to_dir
},
129 { 'x', 4, " to 180", to_dir
},
130 { 'z', 4, " to 225", to_dir
},
131 { 'a', 4, " to 270", to_dir
},
132 { 'q', 4, " to 315", to_dir
},
133 { HELPTOKEN
, 12, " lrLRt<dir>", NULL
}},
134 state3
[] = { { '+', 10, " climb", climb
},
135 { 'c', 10, " climb", climb
},
136 { '-', 10, " descend", descend
},
137 { 'd', 10, " descend", descend
},
138 { NUMTOKEN
, 7, " %c000 feet", setalt
},
139 { HELPTOKEN
, 12, " +-cd[0-9]", NULL
}},
140 state4
[] = { { '@', 9, " at", NULL
},
141 { 'a', 9, " at", NULL
},
142 { RETTOKEN
, -1, "", NULL
},
144 { CRTOKEN
, -1, "", NULL
},
146 { HELPTOKEN
, 12, " @a<ret>", NULL
}},
147 state5
[] = { { NUMTOKEN
, 7, "%c", delayb
},
148 { HELPTOKEN
, 12, " [0-9]", NULL
}},
149 state6
[] = { { '@', 9, " at", NULL
},
150 { 'a', 9, " at", NULL
},
151 { 'w', 4, " 0", rel_dir
},
152 { 'e', 4, " 45", rel_dir
},
153 { 'd', 4, " 90", rel_dir
},
154 { 'c', 4, " 135", rel_dir
},
155 { 'x', 4, " 180", rel_dir
},
156 { 'z', 4, " 225", rel_dir
},
157 { 'a', 4, " 270", rel_dir
},
158 { 'q', 4, " 315", rel_dir
},
159 { RETTOKEN
, -1, "", NULL
},
161 { CRTOKEN
, -1, "", NULL
},
163 { HELPTOKEN
, 12, " @a<dir><ret>",NULL
}},
164 state7
[] = { { RETTOKEN
, -1, "", NULL
},
166 { CRTOKEN
, -1, "", NULL
},
168 { HELPTOKEN
, 12, " <ret>", NULL
}},
169 state8
[] = { { NUMTOKEN
, 4, "%c", benum
},
170 { HELPTOKEN
, 12, " [0-9]", NULL
}},
171 state9
[] = { { 'b', 5, " beacon #", NULL
},
172 { '*', 5, " beacon #", NULL
},
173 { HELPTOKEN
, 12, " b*", NULL
}},
174 state10
[] = { { NUMTOKEN
, 7, " %c000 ft", setrelalt
},
175 { HELPTOKEN
, 12, " [0-9]", NULL
}},
176 state11
[] = { { 'b', 8, " beacon #", beacon
},
177 { '*', 8, " beacon #", beacon
},
178 { 'e', 8, " exit #", ex_it
},
179 { 'a', 8, " airport #", airport
},
180 { HELPTOKEN
, 12, " b*ea", NULL
}},
181 state12
[] = { { -1, -1, "", NULL
}};
183 #define DEF_STATE(s) { NUMELS(s), (s) }
186 DEF_STATE(state0
), DEF_STATE(state1
), DEF_STATE(state2
),
187 DEF_STATE(state3
), DEF_STATE(state4
), DEF_STATE(state5
),
188 DEF_STATE(state6
), DEF_STATE(state7
), DEF_STATE(state8
),
189 DEF_STATE(state9
), DEF_STATE(state10
), DEF_STATE(state11
),
194 STACK stack
[MAXDEPTH
];
197 int dest_type
, dest_no
, dir
;
227 int newstate
, newpos
;
229 (void)sprintf(T_STR
, st
[T_STATE
].rule
[ruleno
].str
, tval
);
232 newstate
= st
[T_STATE
].rule
[ruleno
].to_state
;
233 newpos
= T_POS
+ strlen(T_STR
);
235 ioaddstr(T_POS
, T_STR
);
256 if (c
== tty_new
.c_cc
[VERASE
]) {
259 } else if (c
== tty_new
.c_cc
[VKILL
]) {
264 for (i
= 0; i
< st
[T_STATE
].num_rules
; i
++) {
265 if (st
[T_STATE
].rule
[i
].token
== c
||
266 st
[T_STATE
].rule
[i
].token
== tval
) {
267 push(i
, (c
>= ALPHATOKEN
) ? tval
: c
);
275 } while (T_STATE
!= -1);
278 return (1); /* forced update */
280 dest_type
= T_NODEST
;
282 for (i
= 0; i
< level
; i
++) {
283 func
= st
[stack
[i
].state
].rule
[stack
[i
].rule
].func
;
285 if ((s
= (*func
)(stack
[i
].ch
)) != NULL
) {
286 ioerror(stack
[i
].pos
, strlen(stack
[i
].str
), s
);
291 pp
= findplane(p
.plane_no
);
292 if (pp
->new_altitude
!= p
.new_altitude
)
293 pp
->new_altitude
= p
.new_altitude
;
294 else if (pp
->status
!= p
.status
)
295 pp
->status
= p
.status
;
297 pp
->new_dir
= p
.new_dir
;
298 pp
->delayd
= p
.delayd
;
299 pp
->delayd_no
= p
.delayd_no
;
312 while ((tval
= getAChar()) == REDRAWTOKEN
|| tval
== SHELLTOKEN
)
314 if (tval
== SHELLTOKEN
)
317 struct itimerval itv
;
318 itv
.it_value
.tv_sec
= 0;
319 itv
.it_value
.tv_usec
= 0;
320 setitimer(ITIMER_REAL
, &itv
, NULL
);
326 if (fork() == 0) /* child */
328 char *shell
, *base
, *getenv(), *strrchr();
330 setuid(getuid()); /* turn off setuid bit */
333 /* run user's favorite shell */
334 if ((shell
= getenv("SHELL")) != NULL
)
336 base
= strrchr(shell
, '/');
341 execl(shell
, base
, 0);
344 execl(_PATH_BSHELL
, "sh", 0);
350 tcsetattr(fileno(stdin
), TCSADRAIN
, &tty_new
);
352 itv
.it_value
.tv_sec
= 0;
353 itv
.it_value
.tv_usec
= 1;
354 itv
.it_interval
.tv_sec
= sp
->update_secs
;
355 itv
.it_interval
.tv_usec
= 0;
356 setitimer(ITIMER_REAL
, &itv
, NULL
);
367 else if (isalpha(tval
))
378 pp
= findplane(number(c
));
380 return ("Unknown Plane");
381 memcpy(&p
, pp
, sizeof (p
));
390 return ("Planes at airports may not change direction");
398 return ("Planes cannot circle on the ground");
407 p
.new_dir
= p
.dir
- 1;
417 p
.new_dir
= p
.dir
+ 1;
418 if (p
.new_dir
> MAXDIR
)
426 p
.new_dir
= p
.dir
- 2;
435 p
.new_dir
= p
.dir
+ 2;
436 if (p
.new_dir
> MAXDIR
)
448 if (c
>= sp
->num_beacons
)
449 return ("Unknown beacon");
450 xdiff
= sp
->beacon
[c
].x
- p
.xpos
;
452 ydiff
= sp
->beacon
[c
].y
- p
.ypos
;
454 if (xdiff
!= displacement
[p
.dir
].dx
|| ydiff
!= displacement
[p
.dir
].dy
)
455 return ("Beacon is not in flight path");
459 if (dest_type
!= T_NODEST
) {
462 xdiff
= sp
->beacon
[dest_no
].x
- sp
->beacon
[c
].x
;
463 ydiff
= sp
->beacon
[dest_no
].y
- sp
->beacon
[c
].y
;
466 xdiff
= sp
->exit
[dest_no
].x
- sp
->beacon
[c
].x
;
467 ydiff
= sp
->exit
[dest_no
].y
- sp
->beacon
[c
].y
;
470 xdiff
= sp
->airport
[dest_no
].x
- sp
->beacon
[c
].x
;
471 ydiff
= sp
->airport
[dest_no
].y
- sp
->beacon
[c
].y
;
474 return ("Bad case in delayb! Get help!");
477 if (xdiff
== 0 && ydiff
== 0)
478 return ("Would already be there");
479 p
.new_dir
= DIR_FROM_DXDY(xdiff
, ydiff
);
480 if (p
.new_dir
== p
.dir
)
481 return ("Already going in that direction");
489 dest_type
= T_BEACON
;
503 dest_type
= T_AIRPORT
;
524 if ((p
.altitude
== c
- '0') && (p
.new_altitude
== p
.altitude
))
525 return ("Already at that altitude");
526 p
.new_altitude
= c
- '0';
534 return ("altitude not changed");
538 p
.new_altitude
= p
.altitude
+ c
- '0';
541 p
.new_altitude
= p
.altitude
- (c
- '0');
544 return ("Unknown case in setrelalt! Get help!");
547 if (p
.new_altitude
< 0)
548 return ("Altitude would be too low");
549 else if (p
.new_altitude
> 9)
550 return ("Altitude would be too high");
561 if (c
>= sp
->num_beacons
)
562 return ("Unknown beacon");
563 p
.new_dir
= DIR_FROM_DXDY(sp
->beacon
[c
].x
- p
.xpos
,
564 sp
->beacon
[c
].y
- p
.ypos
);
567 if (c
>= sp
->num_exits
)
568 return ("Unknown exit");
569 p
.new_dir
= DIR_FROM_DXDY(sp
->exit
[c
].x
- p
.xpos
,
570 sp
->exit
[c
].y
- p
.ypos
);
573 if (c
>= sp
->num_airports
)
574 return ("Unknown airport");
575 p
.new_dir
= DIR_FROM_DXDY(sp
->airport
[c
].x
- p
.xpos
,
576 sp
->airport
[c
].y
- p
.ypos
);
579 return ("Unknown case in benum! Get help!");
588 p
.new_dir
= dir_no(c
);
600 p
.new_dir
= p
.dir
- angle
;
605 p
.new_dir
= p
.dir
+ angle
;
606 if (p
.new_dir
>= MAXDIR
)
610 return ("Bizarre direction in rel_dir! Get help!");
620 return ("Cannot mark planes on the ground");
621 if (p
.status
== S_MARKED
)
622 return ("Already marked");
631 return ("Cannot unmark planes on the ground");
632 if (p
.status
== S_UNMARKED
)
633 return ("Already unmarked");
634 p
.status
= S_UNMARKED
;
642 return ("Cannot ignore planes on the ground");
643 if (p
.status
== S_IGNORED
)
644 return ("Already ignored");
645 p
.status
= S_IGNORED
;
655 case 'w': dir
= 0; break;
656 case 'e': dir
= 1; break;
657 case 'd': dir
= 2; break;
658 case 'c': dir
= 3; break;
659 case 'x': dir
= 4; break;
660 case 'z': dir
= 5; break;
661 case 'a': dir
= 6; break;
662 case 'q': dir
= 7; break;
664 fprintf(stderr
, "bad character in dir_no\n");