]> git.pond.sub.org Git - empserver/blob - src/util/files.c
(print_usage): New.
[empserver] / src / util / files.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2004, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                           Ken Stevens, Steve McClure
5  *
6  *  This program is free software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation; either version 2 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  *  ---
21  *
22  *  See the "LEGAL", "LICENSE", "CREDITS" and "README" files for all the
23  *  related information and legal notices. It is expected that any future
24  *  projects/authors will amend these files as needed.
25  *
26  *  ---
27  *
28  *  files.c: Create all the misc files
29  * 
30  *  Known contributors to this file:
31  *     Thomas Ruschak
32  *     Ken Stevens, 1995
33  *     Steve McClure, 1998
34  */
35
36 #if defined(aix) || defined(linux) || defined(solaris)
37 #include <unistd.h>
38 #endif /* aix or linux */
39
40 #include <sys/types.h>
41 #include <fcntl.h>
42 #if !defined(_WIN32)
43 #include <sys/uio.h>
44 #include <sys/file.h>
45 #else
46 #include <direct.h>
47 #include "getopt.h"
48 #endif
49 #include <stdarg.h>
50 #include <stdio.h>
51
52 #include "options.h"
53 #include "misc.h"
54 #include "sect.h"
55 #include "nat.h"
56 #include "ship.h"
57 #include "land.h"
58 #include "plane.h"
59 #include "nuke.h"
60 #include "power.h"
61 #include "trade.h"
62 #include "file.h"
63 #include "tel.h"
64 #include "prototypes.h"
65 #include "optlist.h"
66
67 static void file_sct_init(coord x, coord y, s_char *ptr);
68
69 static void
70 print_usage(char *program_name)
71 {
72     printf("Usage: %s -f -e econfig_file\n", program_name);
73     printf("-f force mode\n");
74 }
75
76 int
77 main(int argc, char *argv[])
78 {
79     s_char buf[255];
80     s_char tbuf[512];
81     s_char *filename;
82     int x, y;
83     struct natstr nat;
84     struct sctstr sct;
85     int i;
86     s_char *map;
87     extern char *optarg;
88     int opt;
89     char *config_file = NULL;
90     int force = 0;
91
92     while ((opt = getopt(argc, argv, "e:f")) != EOF) {
93         switch (opt) {
94         case 'e':
95             config_file = optarg;
96             break;
97         case 'f':
98             force = 1;
99             break;
100         default:
101             print_usage(argv[0]);
102             exit(-1);
103         }
104     }
105
106     /* Try to use the existing data directory */
107     if (config_file == NULL) {
108         sprintf(tbuf, "%s/econfig", datadir);
109         config_file = tbuf;
110     }
111     emp_config(config_file);
112     empfile[EF_MAP].size = (WORLD_X * WORLD_Y) / 2;
113     empfile[EF_BMAP].size = (WORLD_X * WORLD_Y) / 2;
114
115     if (access(datadir, F_OK) < 0 && mkdir(datadir, 0750) < 0) {
116         perror(datadir);
117         printf("Can't make game directory\n");
118         exit(1);
119     }
120     if (!force) {
121         printf("WARNING: this blasts the existing game in %s (if any)\n",
122            datadir);
123         printf("continue? ");
124         fgets(buf, sizeof(buf) - 1, stdin);
125         if (*buf != 'y' && *buf != 'Y')
126             exit(1);
127     }
128     for (i = 0; i < EF_MAX; i++) {
129         if (ef_open(i, O_RDWR | O_CREAT | O_TRUNC, 0) < 0) {
130             perror("ef_open");
131             exit(1);
132         }
133     }
134     memset(&nat, 0, sizeof(nat));
135     nat.ef_type = EF_NATION;
136     if (nat.nat_cnam[0] == 0)
137         strcpy(nat.nat_cnam, "POGO");
138     if (nat.nat_pnam[0] == 0)
139         strcpy(nat.nat_pnam, "peter");
140     nat.nat_stat = STAT_INUSE | STAT_NORM | STAT_GOD | STAT_ABS;
141     nat.nat_btu = 255;
142     nat.nat_money = 123456789;
143     nat.nat_cnum = 0;
144     nat.nat_flags |= NF_FLASH;
145     for (i = 0; i <= PRI_MAX; i++)
146         nat.nat_priorities[i] = -1;
147     putnat((&nat));
148     printf("All praise to %s!\n", nat.nat_cnam);
149     memset(&nat, 0, sizeof(nat));
150     for (i = 1; i < MAXNOC; i++) {
151         nat.ef_type = EF_NATION;
152         nat.nat_cnum = i;
153         putnat((&nat));
154     }
155     ef_close(EF_NATION);
156     if (access(teldir, F_OK) < 0 && mkdir(teldir, 0750) < 0) {
157         perror(teldir);
158         printf("Can't make telegram directory\n");
159         exit(1);
160     }
161     for (x = MAXNOC - 1; x >= 0; x--) {
162         filename = mailbox(buf, x);
163         close(creat(filename, 0600));
164         chmod(filename, 0600);
165     }
166     close(creat(timestampfil, 0600));
167     close(creat(annfil, 0600));
168     chmod(infodir, 0750);
169     chmod(datadir, 0770);
170     chmod(teldir, 0770);
171
172     /* create a zero-filled sector file */
173     memset(&sct, 0, sizeof(sct));
174     for (y = 0; y < WORLD_Y; y++) {
175         for (x = 0; x < WORLD_X / 2; x++) {
176             file_sct_init(x * 2 + (y & 01), y, (s_char *)&sct);
177             putsect(&sct);
178         }
179     }
180     map = (s_char *)calloc(WORLD_X * WORLD_Y / 2, sizeof(*map));
181     for (i = 0; i < MAXNOC; i++) {
182         ef_write(EF_MAP, i, map);
183     }
184     map = (s_char *)calloc(WORLD_X * WORLD_Y / 2, sizeof(*map));
185     for (i = 0; i < MAXNOC; i++) {
186         ef_write(EF_BMAP, i, map);
187     }
188     for (i = 0; i < EF_MAX; i++) {
189         ef_close(i);
190     }
191
192     exit(0);
193 }
194
195 static void
196 file_sct_init(coord x, coord y, s_char *ptr)
197 {
198     struct sctstr *sp = (struct sctstr *)ptr;
199
200     sp->ef_type = EF_SECTOR;
201     sp->sct_x = x;
202     sp->sct_y = y;
203     sp->sct_dist_x = x;
204     sp->sct_dist_y = y;
205 }
206
207 void
208 logerror(s_char *format, ...)
209 {
210     va_list ap;
211
212     va_start(ap, format);
213     vfprintf(stderr, format, ap);
214     va_end(ap);
215 }
216
217 void
218 log_last_commands(void)
219 {
220 }