]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - worm/worm.c
fix main() prototype, as per PR#5867
[bsdgames-darwin.git] / worm / worm.c
index f0ea1c9558c627ba9feede8d43ee535a684c62a7..0a7b96ef5eed80a50720a67191509af280a387df 100644 (file)
@@ -1,6 +1,8 @@
+/*     $NetBSD: worm.c,v 1.8 1997/10/12 02:12:48 lukem Exp $   */
+
 /*
 /*
- * Copyright (c) 1980 Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1980, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
  * SUCH DAMAGE.
  */
 
  * SUCH DAMAGE.
  */
 
+#include <sys/cdefs.h>
 #ifndef lint
 #ifndef lint
-char copyright[] =
-"@(#) Copyright (c) 1980 Regents of the University of California.\n\
- All rights reserved.\n";
+__COPYRIGHT("@(#) Copyright (c) 1980, 1993\n\
+       The Regents of the University of California.  All rights reserved.\n");
 #endif /* not lint */
 
 #ifndef lint
 #endif /* not lint */
 
 #ifndef lint
-/*static char sccsid[] = "from: @(#)worm.c     5.8 (Berkeley) 2/28/91";*/
-static char rcsid[] = "$Id: worm.c,v 1.4 1993/12/03 10:12:57 mycroft Exp $";
+#if 0
+static char sccsid[] = "@(#)worm.c     8.1 (Berkeley) 5/31/93";
+#else
+__RCSID("$NetBSD: worm.c,v 1.8 1997/10/12 02:12:48 lukem Exp $");
+#endif
 #endif /* not lint */
 
 /*
 #endif /* not lint */
 
 /*
@@ -50,6 +55,9 @@ static char rcsid[] = "$Id: worm.c,v 1.4 1993/12/03 10:12:57 mycroft Exp $";
 #include <ctype.h>
 #include <curses.h>
 #include <signal.h>
 #include <ctype.h>
 #include <curses.h>
 #include <signal.h>
+#include <stdlib.h>
+#include <termios.h>
+#include <unistd.h>
 
 #define newlink() (struct body *) malloc(sizeof (struct body));
 #define HEAD '@'
 
 #define newlink() (struct body *) malloc(sizeof (struct body));
 #define HEAD '@'
@@ -57,9 +65,6 @@ static char rcsid[] = "$Id: worm.c,v 1.4 1993/12/03 10:12:57 mycroft Exp $";
 #define LENGTH 7
 #define RUNLEN 8
 #define CNTRL(p) (p-'A'+1)
 #define LENGTH 7
 #define RUNLEN 8
 #define CNTRL(p) (p-'A'+1)
-#ifndef baudrate
-# define       baudrate()      _tty.sg_ospeed
-#endif
 
 WINDOW *tv;
 WINDOW *stw;
 
 WINDOW *tv;
 WINDOW *stw;
@@ -77,8 +82,20 @@ int start_len = LENGTH;
 char lastch;
 char outbuf[BUFSIZ];
 
 char lastch;
 char outbuf[BUFSIZ];
 
-void leave(), wake(), suspend();
+void   crash __P((void));
+void   display __P((struct body *, char));
+int    main __P((int, char **));
+void   leave __P((int));
+void   life __P((void));
+void   newpos __P((struct body *));
+void   process __P((char));
+void   prize __P((void));
+int    rnd __P((int));
+void   setup __P((void));
+void   suspend __P((int));
+void   wake __P((int));
 
 
+int
 main(argc, argv)
        int argc;
        char **argv;
 main(argc, argv)
        int argc;
        char **argv;
@@ -128,11 +145,13 @@ main(argc, argv)
        }
 }
 
        }
 }
 
+void
 life()
 {
 life()
 {
-       register struct body *bp, *np;
-       register int i;
+       struct body *bp, *np;
+       int i;
 
 
+       np = NULL;
        head = newlink();
        head->x = start_len+2;
        head->y = 12;
        head = newlink();
        head->x = start_len+2;
        head->y = 12;
@@ -150,36 +169,42 @@ life()
        tail->prev = NULL;
 }
 
        tail->prev = NULL;
 }
 
+void
 display(pos, chr)
 display(pos, chr)
-struct body *pos;
-char chr;
+       struct body *pos;
+       char chr;
 {
        wmove(tv, pos->y, pos->x);
        waddch(tv, chr);
 }
 
 void
 {
        wmove(tv, pos->y, pos->x);
        waddch(tv, chr);
 }
 
 void
-leave()
+leave(dummy)
+       int dummy;
 {
        endwin();
        exit(0);
 }
 
 void
 {
        endwin();
        exit(0);
 }
 
 void
-wake()
+wake(dummy)
+       int dummy;
 {
        signal(SIGALRM, wake);
        fflush(stdout);
        process(lastch);
 }
 
 {
        signal(SIGALRM, wake);
        fflush(stdout);
        process(lastch);
 }
 
+int
 rnd(range)
 rnd(range)
+       int range;
 {
        return abs((rand()>>5)+(rand()>>5)) % range;
 }
 
 {
        return abs((rand()>>5)+(rand()>>5)) % range;
 }
 
+void
 newpos(bp)
 newpos(bp)
-struct body * bp;
+       struct body * bp;
 {
        do {
                bp->y = rnd(LINES-3)+ 2;
 {
        do {
                bp->y = rnd(LINES-3)+ 2;
@@ -188,6 +213,7 @@ struct body * bp;
        } while(winch(tv) != ' ');
 }
 
        } while(winch(tv) != ' ');
 }
 
+void
 prize()
 {
        int value;
 prize()
 {
        int value;
@@ -198,10 +224,11 @@ prize()
        wrefresh(tv);
 }
 
        wrefresh(tv);
 }
 
+void
 process(ch)
 process(ch)
-char ch;
+       char ch;
 {
 {
-       register int x,y;
+       int x,y;
        struct body *nh;
 
        alarm(0);
        struct body *nh;
 
        alarm(0);
@@ -218,7 +245,7 @@ char ch;
                case 'K': y--; running = RUNLEN/2; ch = tolower(ch); break;
                case 'L': x++; running = RUNLEN; ch = tolower(ch); break;
                case '\f': setup(); return;
                case 'K': y--; running = RUNLEN/2; ch = tolower(ch); break;
                case 'L': x++; running = RUNLEN; ch = tolower(ch); break;
                case '\f': setup(); return;
-               case CNTRL('Z'): suspend(); return;
+               case CNTRL('Z'): suspend(0); return;
                case CNTRL('C'): crash(); return;
                case CNTRL('D'): crash(); return;
                default: if (! running) alarm(1);
                case CNTRL('C'): crash(); return;
                case CNTRL('D'): crash(); return;
                default: if (! running) alarm(1);
@@ -261,6 +288,7 @@ char ch;
                alarm(1);
 }
 
                alarm(1);
 }
 
+void
 crash()
 {
        sleep(2);
 crash()
 {
        sleep(2);
@@ -269,14 +297,13 @@ crash()
        refresh();
        printf("Well, you ran into something and the game is over.\n");
        printf("Your final score was %d\n", score);
        refresh();
        printf("Well, you ran into something and the game is over.\n");
        printf("Your final score was %d\n", score);
-       leave();
+       leave(0);
 }
 
 void
 }
 
 void
-suspend()
+suspend(dummy)
+       int dummy;
 {
 {
-       char *sh;
-
        move(LINES-1, 0);
        refresh();
        endwin();
        move(LINES-1, 0);
        refresh();
        endwin();
@@ -288,6 +315,7 @@ suspend()
        setup();
 }
 
        setup();
 }
 
+void
 setup()
 {
        clear();
 setup()
 {
        clear();