]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - games/worms/worms.c
Bmake bits for Gcc 3.1.
[FreeBSD/FreeBSD.git] / games / worms / worms.c
1 /*
2  * Copyright (c) 1980, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
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.
20  *
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
31  * SUCH DAMAGE.
32  */
33
34 #ifndef lint
35 static const char copyright[] =
36 "@(#) Copyright (c) 1980, 1993\n\
37         The Regents of the University of California.  All rights reserved.\n";
38 #endif /* not lint */
39
40 #ifndef lint
41 #if 0
42 static char sccsid[] = "@(#)worms.c     8.1 (Berkeley) 5/31/93";
43 #endif
44 static const char rcsid[] =
45  "$FreeBSD$";
46 #endif /* not lint */
47
48 /*
49  *
50  *       @@@        @@@    @@@@@@@@@@     @@@@@@@@@@@    @@@@@@@@@@@@
51  *       @@@        @@@   @@@@@@@@@@@@    @@@@@@@@@@@@   @@@@@@@@@@@@@
52  *       @@@        @@@  @@@@      @@@@   @@@@           @@@@ @@@  @@@@
53  *       @@@   @@   @@@  @@@        @@@   @@@            @@@  @@@   @@@
54  *       @@@  @@@@  @@@  @@@        @@@   @@@            @@@  @@@   @@@
55  *       @@@@ @@@@ @@@@  @@@        @@@   @@@            @@@  @@@   @@@
56  *        @@@@@@@@@@@@   @@@@      @@@@   @@@            @@@  @@@   @@@
57  *         @@@@  @@@@     @@@@@@@@@@@@    @@@            @@@  @@@   @@@
58  *          @@    @@       @@@@@@@@@@     @@@            @@@  @@@   @@@
59  *
60  *                               Eric P. Scott
61  *                        Caltech High Energy Physics
62  *                               October, 1980
63  *
64  */
65 #include <sys/types.h>
66 #include <curses.h>
67 #include <err.h>
68 #include <signal.h>
69 #include <stdio.h>
70 #include <stdlib.h>
71 #include <unistd.h>
72
73 static const struct options {
74         int nopts;
75         int opts[3];
76 }
77         normal[8] = {
78         { 3, { 7, 0, 1 } },
79         { 3, { 0, 1, 2 } },
80         { 3, { 1, 2, 3 } },
81         { 3, { 2, 3, 4 } },
82         { 3, { 3, 4, 5 } },
83         { 3, { 4, 5, 6 } },
84         { 3, { 5, 6, 7 } },
85         { 3, { 6, 7, 0 } }
86 },      upper[8] = {
87         { 1, { 1, 0, 0 } },
88         { 2, { 1, 2, 0 } },
89         { 0, { 0, 0, 0 } },
90         { 0, { 0, 0, 0 } },
91         { 0, { 0, 0, 0 } },
92         { 2, { 4, 5, 0 } },
93         { 1, { 5, 0, 0 } },
94         { 2, { 1, 5, 0 } }
95 },
96         left[8] = {
97         { 0, { 0, 0, 0 } },
98         { 0, { 0, 0, 0 } },
99         { 0, { 0, 0, 0 } },
100         { 2, { 2, 3, 0 } },
101         { 1, { 3, 0, 0 } },
102         { 2, { 3, 7, 0 } },
103         { 1, { 7, 0, 0 } },
104         { 2, { 7, 0, 0 } }
105 },
106         right[8] = {
107         { 1, { 7, 0, 0 } },
108         { 2, { 3, 7, 0 } },
109         { 1, { 3, 0, 0 } },
110         { 2, { 3, 4, 0 } },
111         { 0, { 0, 0, 0 } },
112         { 0, { 0, 0, 0 } },
113         { 0, { 0, 0, 0 } },
114         { 2, { 6, 7, 0 } }
115 },
116         lower[8] = {
117         { 0, { 0, 0, 0 } },
118         { 2, { 0, 1, 0 } },
119         { 1, { 1, 0, 0 } },
120         { 2, { 1, 5, 0 } },
121         { 1, { 5, 0, 0 } },
122         { 2, { 5, 6, 0 } },
123         { 0, { 0, 0, 0 } },
124         { 0, { 0, 0, 0 } }
125 },
126         upleft[8] = {
127         { 0, { 0, 0, 0 } },
128         { 0, { 0, 0, 0 } },
129         { 0, { 0, 0, 0 } },
130         { 0, { 0, 0, 0 } },
131         { 0, { 0, 0, 0 } },
132         { 1, { 3, 0, 0 } },
133         { 2, { 1, 3, 0 } },
134         { 1, { 1, 0, 0 } }
135 },
136         upright[8] = {
137         { 2, { 3, 5, 0 } },
138         { 1, { 3, 0, 0 } },
139         { 0, { 0, 0, 0 } },
140         { 0, { 0, 0, 0 } },
141         { 0, { 0, 0, 0 } },
142         { 0, { 0, 0, 0 } },
143         { 0, { 0, 0, 0 } },
144         { 1, { 5, 0, 0 } }
145 },
146         lowleft[8] = {
147         { 3, { 7, 0, 1 } },
148         { 0, { 0, 0, 0 } },
149         { 0, { 0, 0, 0 } },
150         { 1, { 1, 0, 0 } },
151         { 2, { 1, 7, 0 } },
152         { 1, { 7, 0, 0 } },
153         { 0, { 0, 0, 0 } },
154         { 0, { 0, 0, 0 } }
155 },
156         lowright[8] = {
157         { 0, { 0, 0, 0 } },
158         { 1, { 7, 0, 0 } },
159         { 2, { 5, 7, 0 } },
160         { 1, { 5, 0, 0 } },
161         { 0, { 0, 0, 0 } },
162         { 0, { 0, 0, 0 } },
163         { 0, { 0, 0, 0 } },
164         { 0, { 0, 0, 0 } }
165 };
166
167
168 static const char       flavor[] = {
169         'O', '*', '#', '$', '%', '0', '@', '~'
170 };
171 static const short      xinc[] = {
172         1,  1,  1,  0, -1, -1, -1,  0
173 }, yinc[] = {
174         -1,  0,  1,  1,  1,  0, -1, -1
175 };
176 static struct   worm {
177         int orientation, head;
178         short *xpos, *ypos;
179 } *worm;
180
181 volatile sig_atomic_t sig_caught = 0;
182 void    nomem(void);
183 void    onsig(int);
184
185 int
186 main(int argc, char *argv[])
187 {
188         int x, y, h, n;
189         struct worm *w;
190         const struct options *op;
191         short *ip;
192         int CO, LI, last, bottom, ch, length, number, trail;
193         short **ref;
194         const char *field;
195         char *mp;
196         unsigned int delay = 0;
197
198         mp = NULL;
199         length = 16;
200         number = 3;
201         trail = ' ';
202         field = NULL;
203         while ((ch = getopt(argc, argv, "d:fl:n:t")) != -1)
204                 switch(ch) {
205                 case 'd':
206                         if ((delay = (unsigned int)strtoul(optarg, (char **)NULL, 10)) < 1 || delay > 1000)
207                                 errx(1, "invalid delay (1-1000)");
208                         delay *= 1000;  /* ms -> us */
209                         break;
210                 case 'f':
211                         field = "WORM";
212                         break;
213                 case 'l':
214                         if ((length = atoi(optarg)) < 2 || length > 1024) {
215                                 errx(1, "invalid length (%d - %d).",
216                                      2, 1024);
217                         }
218                         break;
219                 case 'n':
220                         if ((number = atoi(optarg)) < 1) {
221                                 errx(1, "invalid number of worms.");
222                         }
223                         break;
224                 case 't':
225                         trail = '.';
226                         break;
227                 case '?':
228                 default:
229                         (void)fprintf(stderr,
230                             "usage: worms [-ft] [-d delay] [-l length] [-n number]\n");
231                         exit(1);
232                 }
233
234         if (!(worm = malloc((size_t)number *
235             sizeof(struct worm))) || !(mp = malloc((size_t)1024)))
236                 nomem();
237         initscr();
238         CO = COLS;
239         LI = LINES;
240         last = CO - 1;
241         bottom = LI - 1;
242         if (!(ip = malloc((size_t)(LI * CO * sizeof(short)))))
243                 nomem();
244         if (!(ref = malloc((size_t)(LI * sizeof(short *)))))
245                 nomem();
246         for (n = 0; n < LI; ++n) {
247                 ref[n] = ip;
248                 ip += CO;
249         }
250         for (ip = ref[0], n = LI * CO; --n >= 0;)
251                 *ip++ = 0;
252         for (n = number, w = &worm[0]; --n >= 0; w++) {
253                 w->orientation = w->head = 0;
254                 if (!(ip = malloc((size_t)(length * sizeof(short)))))
255                         nomem();
256                 w->xpos = ip;
257                 for (x = length; --x >= 0;)
258                         *ip++ = -1;
259                 if (!(ip = malloc((size_t)(length * sizeof(short)))))
260                         nomem();
261                 w->ypos = ip;
262                 for (y = length; --y >= 0;)
263                         *ip++ = -1;
264         }
265
266         (void)signal(SIGHUP, onsig);
267         (void)signal(SIGINT, onsig);
268         (void)signal(SIGQUIT, onsig);
269         (void)signal(SIGSTOP, onsig);
270         (void)signal(SIGTSTP, onsig);
271         (void)signal(SIGTERM, onsig);
272
273         if (field) {
274                 const char *p = field;
275
276                 for (y = LI; --y >= 0;) {
277                         for (x = CO; --x >= 0;) {
278                                 addch(*p++);
279                                 if (!*p)
280                                         p = field;
281                         }
282                         refresh();
283                 }
284         }
285         for (;;) {
286                 refresh();
287                 if (sig_caught) {
288                         endwin();
289                         exit(0);
290                 }
291                 for (n = 0, w = &worm[0]; n < number; n++, w++) {
292                         if ((x = w->xpos[h = w->head]) < 0) {
293                                 mvaddch(y = w->ypos[h] = bottom,
294                                 x = w->xpos[h] = 0,
295                                 flavor[n % sizeof(flavor)]);
296                                 ref[y][x]++;
297                         }
298                         else
299                                 y = w->ypos[h];
300                         if (++h == length)
301                                 h = 0;
302                         if (w->xpos[w->head = h] >= 0) {
303                                 int x1, y1;
304
305                                 x1 = w->xpos[h];
306                                 y1 = w->ypos[h];
307                                 if (--ref[y1][x1] == 0) {
308                                         mvaddch(y1, x1, trail);
309                                 }
310                         }
311                         op = &(!x ? (!y ? upleft : (y == bottom ? lowleft : left)) : (x == last ? (!y ? upright : (y == bottom ? lowright : right)) : (!y ? upper : (y == bottom ? lower : normal))))[w->orientation];
312                         switch (op->nopts) {
313                         case 0:
314                                 refresh();
315                                 abort();
316                                 return(1);
317                         case 1:
318                                 w->orientation = op->opts[0];
319                                 break;
320                         default:
321                                 w->orientation =
322                                     op->opts[(int)random() % op->nopts];
323                         }
324                         mvaddch(y += yinc[w->orientation],
325                                 x += xinc[w->orientation],
326                                 flavor[n % sizeof(flavor)]);
327                         ref[w->ypos[h] = y][w->xpos[h] = x]++;
328                 }
329                 if (usleep(delay))
330                         onsig(SIGTERM);
331         }
332 }
333
334 void
335 onsig(int signo)
336 {
337         sig_caught = 1;
338 }
339
340 void
341 nomem(void)
342 {
343         errx(1, "not enough memory.");
344 }