]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - sail/pl_7.c
Generate <>& symbolically. I'm avoiding .../dist/... directories for now.
[bsdgames-darwin.git] / sail / pl_7.c
index b876edcade547e1ce1114669c04a2ed497a3a972..82a4afbd19eb72ebb93e5c3c051d62699991da45 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: pl_7.c,v 1.16 2001/01/01 21:57:38 jwise Exp $  */
+/*     $NetBSD: pl_7.c,v 1.26 2001/12/06 12:21:00 blymn Exp $  */
 
 /*
  * Copyright (c) 1983, 1993
 #if 0
 static char sccsid[] = "@(#)pl_7.c     8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: pl_7.c,v 1.16 2001/01/01 21:57:38 jwise Exp $");
+__RCSID("$NetBSD: pl_7.c,v 1.26 2001/12/06 12:21:00 blymn Exp $");
 #endif
 #endif /* not lint */
 
-#include <sys/ttydefaults.h>
-#include "player.h"
-#ifdef __STDC__
+#include <curses.h>
+#include <signal.h>
 #include <stdarg.h>
-#else
-#include <varargs.h>
-#endif
+#include <stdio.h>
 #include <stdlib.h>
 #include <unistd.h>
+#include <string.h>
+#include "extern.h"
+#include "player.h"
+#include "display.h"
 
+static void    Scroll(void);
+static void    endprompt(int);
+static void    adjustview(void);
 
 /*
  * Display interface
@@ -68,9 +72,9 @@ WINDOW *scroll_w;
 WINDOW *stat_w;
 WINDOW *turn_w;
 
-char done_curses;
-char loaded, fired, changed, repaired;
-char dont_adjust;
+int done_curses;
+int loaded, fired, changed, repaired;
+int dont_adjust;
 int viewrow, viewcol;
 char movebuf[sizeof SHIP(0)->file->movebuf];
 int player;
@@ -97,7 +101,7 @@ initscreen(void)
        leaveok(stat_w, 1);
        leaveok(turn_w, 1);
        noecho();
-       crmode();
+       cbreak();
 }
 
 void
@@ -174,9 +178,9 @@ Signal(const char *fmt, struct ship *ship, ...)
        va_list ap;
        char format[BUFSIZ];
 
-       va_start(ap, ship);
        if (!done_curses)
                return;
+       va_start(ap, ship);
        if (*fmt == '\7')
                putchar(*fmt++);
        fmtship(format, sizeof(format), fmt, ship);
@@ -191,9 +195,9 @@ Msg(const char *fmt, ...)
 {
        va_list ap;
 
-       va_start(ap, fmt);
        if (!done_curses)
                return;
+       va_start(ap, fmt);
        if (*fmt == '\7')
                putchar(*fmt++);
        vwprintw(scroll_w, fmt, ap);
@@ -201,7 +205,7 @@ Msg(const char *fmt, ...)
        Scroll();
 }
 
-void
+static void
 Scroll(void)
 {
        if (++sc_line >= SCROLL_Y)
@@ -211,9 +215,7 @@ Scroll(void)
 }
 
 void
-prompt(p, ship)
-       const char *p;
-       struct ship *ship;
+prompt(const char *p, struct ship *ship)
 {
        static char buf[BUFSIZ];
 
@@ -224,7 +226,7 @@ prompt(p, ship)
        waddstr(scroll_w, buf);
 }
 
-void
+static void
 endprompt(int flag)
 {
        sc_hasprompt = 0;
@@ -510,7 +512,7 @@ rightview(void)
        viewcol += VIEW_X / 5;
 }
 
-void
+static void
 adjustview(void)
 {
        if (dont_adjust)