summaryrefslogtreecommitdiffstats
path: root/phantasia/setup.c
diff options
context:
space:
mode:
authorjmc <jmc@NetBSD.org>2004-12-09 05:15:59 +0000
committerjmc <jmc@NetBSD.org>2004-12-09 05:15:59 +0000
commit4a8f378569210334d20eb525298086b7ea2eb672 (patch)
tree6f3b777f63a5fdca2370e27a17df4ba1219a297d /phantasia/setup.c
parent0fbe5608ca10d704142f0c4b1c5b92a7ccde7379 (diff)
downloadbsdgames-darwin-4a8f378569210334d20eb525298086b7ea2eb672.tar.gz
bsdgames-darwin-4a8f378569210334d20eb525298086b7ea2eb672.tar.zst
bsdgames-darwin-4a8f378569210334d20eb525298086b7ea2eb672.zip
Redo how void gets init'd.
setup now just creates an empty file. When main starts and loads it in, it stats and if zero size init's a new location and saves it back out. Now games.tgz can be shared among MACHINE_ARCH's
Diffstat (limited to 'phantasia/setup.c')
-rw-r--r--phantasia/setup.c19
1 files changed, 4 insertions, 15 deletions
diff --git a/phantasia/setup.c b/phantasia/setup.c
index 8e7a3ed7..ea0aafa4 100644
--- a/phantasia/setup.c
+++ b/phantasia/setup.c
@@ -1,4 +1,4 @@
-/* $NetBSD: setup.c,v 1.13 2004/04/07 17:46:47 ross Exp $ */
+/* $NetBSD: setup.c,v 1.14 2004/12/09 05:15:59 jmc Exp $ */
/*
* setup.c - set up all files for Phantasia
@@ -109,21 +109,10 @@ main(argc, argv)
++filename; /* process next file */
}
- /* put holy grail info into energy void file */
- Enrgyvoid.ev_active = 1;
- Enrgyvoid.ev_x = ROLL(-1.0e6, 2.0e6);
- Enrgyvoid.ev_y = ROLL(-1.0e6, 2.0e6);
- path = strrchr(_PATH_VOID, '/') + 1;
+ /* Initialize an empty file placeholder for the grail location. */
if ((fp = fopen(path, "w")) == NULL)
- Error("Cannot update %s.\n", path);
- else
- {
- fwrite(&Enrgyvoid, SZ_VOIDSTRUCT, 1, fp);
- fflush(fp);
- if (ferror(fp))
- Error("Writing %s.\n", path);
- fclose(fp);
- }
+ Error("Cannot create %s.\n", path);
+ fclose(fp);
/* create binary monster data base */
path = strrchr(_PATH_MONST, '/') + 1;