summaryrefslogtreecommitdiffstats
path: root/sail/main.c
diff options
context:
space:
mode:
authordholland <dholland@NetBSD.org>2010-08-06 09:14:40 +0000
committerdholland <dholland@NetBSD.org>2010-08-06 09:14:40 +0000
commit240117cdf638c185d8469527e583276e546bf666 (patch)
tree5f45461542b4f87b9eb0c8e1a70e7c8f59449efd /sail/main.c
parentc20418e9c57794ae8f5522f5e5ea962112bde704 (diff)
downloadbsdgames-darwin-240117cdf638c185d8469527e583276e546bf666.tar.gz
bsdgames-darwin-240117cdf638c185d8469527e583276e546bf666.tar.zst
bsdgames-darwin-240117cdf638c185d8469527e583276e546bf666.zip
Rework the game startup so it uses curses nicely. There are now menus
and stuff for picking scenarios and ships and all that.
Diffstat (limited to 'sail/main.c')
-rw-r--r--sail/main.c63
1 files changed, 53 insertions, 10 deletions
diff --git a/sail/main.c b/sail/main.c
index 0c9897f1..fdb9d830 100644
--- a/sail/main.c
+++ b/sail/main.c
@@ -1,4 +1,4 @@
-/* $NetBSD: main.c,v 1.25 2009/03/14 23:51:35 dholland Exp $ */
+/* $NetBSD: main.c,v 1.26 2010/08/06 09:14:40 dholland Exp $ */
/*
* Copyright (c) 1983, 1993
@@ -39,12 +39,14 @@ __COPYRIGHT("@(#) Copyright (c) 1983, 1993\
#if 0
static char sccsid[] = "@(#)main.c 8.2 (Berkeley) 4/28/95";
#else
-__RCSID("$NetBSD: main.c,v 1.25 2009/03/14 23:51:35 dholland Exp $");
+__RCSID("$NetBSD: main.c,v 1.26 2010/08/06 09:14:40 dholland Exp $");
#endif
#endif /* not lint */
+#include <ctype.h>
#include <err.h>
#include <fcntl.h>
+#include <pwd.h>
#include <setjmp.h>
#include <stdio.h>
#include <stdlib.h>
@@ -55,12 +57,13 @@ __RCSID("$NetBSD: main.c,v 1.25 2009/03/14 23:51:35 dholland Exp $");
#include "pathnames.h"
#include "restart.h"
-int
-main(int argc, char **argv)
+static void
+initialize(void)
{
- char *p;
- int a,i;
int fd;
+ const char *name;
+ struct passwd *pw;
+ char *s;
gid = getgid();
egid = getegid();
@@ -77,6 +80,43 @@ main(int argc, char **argv)
srandom((u_long)time(NULL));
+ name = getenv("SAILNAME");
+ if (name != NULL && *name != '\0') {
+ strlcpy(myname, name, sizeof(myname));
+ } else {
+ pw = getpwuid(getuid());
+ if (pw != NULL) {
+ strlcpy(myname, pw->pw_gecos, sizeof(myname));
+ /* trim to just the realname */
+ s = strchr(myname, ',');
+ if (s != NULL) {
+ *s = '\0';
+ }
+ /* use just the first name */
+ s = strchr(myname, ' ');
+ if (s != NULL) {
+ *s = '\0';
+ }
+ /* should really do &-expansion properly */
+ if (!strcmp(myname, "&")) {
+ strlcpy(myname, pw->pw_name, sizeof(myname));
+ myname[0] = toupper((unsigned char)myname[0]);
+ }
+ }
+ }
+ if (*myname == '\0') {
+ strlcpy(myname, "Anonymous", sizeof(myname));
+ }
+}
+
+int
+main(int argc, char **argv)
+{
+ char *p;
+ int a, i;
+
+ initialize();
+
if ((p = strrchr(*argv, '/')) != NULL)
p++;
else
@@ -98,13 +138,13 @@ main(int argc, char **argv)
mode = MODE_LOGGER;
break;
case 'x':
- randomize++;
+ randomize = true;
break;
case 'l':
- longfmt++;
+ longfmt = true;
break;
case 'b':
- nobells++;
+ nobells = true;
break;
default:
errx(1, "Usage: %s [-bdlsx] [scenario-number]", p);
@@ -123,7 +163,10 @@ main(int argc, char **argv)
switch (mode) {
case MODE_PLAYER:
- return pl_main();
+ initscreen();
+ startup();
+ cleanupscreen();
+ return 0;
case MODE_DRIVER:
return dr_main();
case MODE_LOGGER: