]> git.pond.sub.org Git - empserver/blob - src/util/files.c
Remove some redundant declarations.
[empserver] / src / util / files.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2000, 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 #endif
48 #include <stdio.h>
49
50 #include "options.h"
51 #include "misc.h"
52 #include "var.h"
53 #include "sect.h"
54 #include "nat.h"
55 #include "ship.h"
56 #include "land.h"
57 #include "plane.h"
58 #include "nuke.h"
59 #include "power.h"
60 #include "trade.h"
61 #include "file.h"
62 #include "tel.h"
63 #include "prototypes.h"
64 #include "optlist.h"
65
66 s_char program[] = "file";
67
68 static void comminit(int fd);
69 static int make(char *filename);
70 static void file_sct_init(coord x, coord y, s_char *ptr);
71
72 int
73 main(int argc, char *argv[])
74 {
75     extern s_char *timestampfil;
76     extern s_char *commfil;
77     s_char buf[255];
78     s_char tbuf[512];
79     s_char *filename;
80     int x, y;
81     struct natstr nat;
82     struct sctstr sct;
83     int i;
84     s_char *map;
85     extern char *optarg;
86     int opt;
87     char *config_file = NULL;
88
89 #if !defined(_WIN32)
90     while ((opt = getopt(argc, argv, "e:")) != EOF) {
91         switch (opt) {
92         case 'e':
93             config_file = optarg;
94             break;
95         }
96     }
97 #endif
98
99     /* Try to use the existing data directory */
100     if (config_file == NULL) {
101         sprintf(tbuf, "%s/econfig", datadir);
102         config_file = tbuf;
103     }
104     emp_config(config_file);
105     empfile[EF_MAP].size = (WORLD_X * WORLD_Y) / 2;
106     empfile[EF_BMAP].size = (WORLD_X * WORLD_Y) / 2;
107
108 #if !defined(_WIN32)
109     if (access(datadir, F_OK) < 0 && mkdir(datadir, 0750) < 0) {
110 #else
111     if (_access(datadir, 06) < 0 && _mkdir(datadir) < 0) {
112 #endif
113         perror(datadir);
114         printf("Can't make game directory\n");
115         exit(1);
116     }
117     printf("WARNING: this blasts the existing game in %s (if any)\n",
118            datadir);
119     printf("continue? ");
120     fgets(buf, sizeof(buf) - 1, stdin);
121     if (*buf != 'y' && *buf != 'Y')
122         exit(1);
123     for (i = 0; i < EF_MAX; i++) {
124         if (ef_open(i, O_RDWR | O_CREAT | O_TRUNC, 0) < 0) {
125             perror("ef_open");
126             exit(1);
127         }
128     }
129     memset(&nat, 0, sizeof(nat));
130     nat.ef_type = EF_NATION;
131     if (nat.nat_cnam[0] == 0)
132         strcpy(nat.nat_cnam, "POGO");
133     if (nat.nat_pnam[0] == 0)
134         strcpy(nat.nat_pnam, "peter");
135     nat.nat_stat = STAT_INUSE | STAT_NORM | STAT_GOD | STAT_ABS;
136     nat.nat_btu = 255;
137     nat.nat_money = 123456789;
138     nat.nat_cnum = 0;
139     nat.nat_flags |= NF_FLASH;
140     for (x = 0; x < SCT_MAXDEF + 8; x++)
141         nat.nat_priorities[x] = -1;
142     putnat((&nat));
143     printf("All praise to %s!\n", nat.nat_cnam);
144     memset(&nat, 0, sizeof(nat));
145     for (x = 0; x < SCT_MAXDEF + 8; x++)
146         nat.nat_priorities[x] = -1;
147     for (i = 1; i < MAXNOC; i++) {
148         nat.ef_type = EF_NATION;
149         nat.nat_cnum = i;
150         putnat((&nat));
151     }
152     ef_close(EF_NATION);
153     comminit(make(commfil));
154 #if !defined(_WIN32)
155     if (access(teldir, F_OK) < 0 && mkdir(teldir, 0750) < 0) {
156 #else
157     if (access(teldir, 06) < 0 && _mkdir(teldir) < 0) {
158 #endif
159         perror(teldir);
160         printf("Can't make telegram directory\n");
161         exit(1);
162     }
163     for (x = MAXNOC - 1; x >= 0; x--) {
164         filename = mailbox(buf, x);
165         close(creat(filename, 0600));
166         chmod(filename, 0600);
167     }
168     close(creat(timestampfil, 0600));
169     close(creat(annfil, 0600));
170     chmod(infodir, 0750);
171     chmod(datadir, 0770);
172     chmod(teldir, 0770);
173
174     /* create a zero-filled sector file */
175     memset(&sct, 0, sizeof(sct));
176     for (y = 0; y < WORLD_Y; y++) {
177         for (x = 0; x < WORLD_X / 2; x++) {
178             file_sct_init(x * 2 + (y & 01), y, (s_char *)&sct);
179             putsect(&sct);
180         }
181     }
182     map = (s_char *)calloc(WORLD_X * WORLD_Y / 2, sizeof(*map));
183     for (i = 0; i < MAXNOC; i++) {
184         ef_write(EF_MAP, i, map);
185     }
186     map = (s_char *)calloc(WORLD_X * WORLD_Y / 2, sizeof(*map));
187     for (i = 0; i < MAXNOC; i++) {
188         ef_write(EF_BMAP, i, map);
189     }
190     for (i = 0; i < EF_MAX; i++) {
191         ef_close(i);
192     }
193
194     exit(0);
195 }
196
197 static int
198 make(char *filename)
199 {
200     register int fd;
201
202 #if !defined(_WIN32)
203     fd = open(filename, O_RDWR | O_CREAT | O_TRUNC, 0600);
204 #else
205     fd = open(filename, O_RDWR | O_CREAT | O_TRUNC | O_BINARY, 0600);
206 #endif
207     if (fd < 0)
208         printf("Creation of %s failed.\n", filename);
209     return fd;
210 }
211
212
213 /*
214  * commodity trading file special initialization
215  */
216 float file_comm[MAXNOC][I_MAX + 1];
217 float file_price[MAXNOC][I_MAX + 1];
218 float file_mult[MAXNOC][MAXNOC];
219
220 #if !defined(_WIN32)
221 static struct iovec tradevec[3] = {
222     {(caddr_t)file_comm, sizeof(file_comm)}
223     ,
224     {(caddr_t)file_price, sizeof(file_price)}
225     ,
226     {(caddr_t)file_mult, sizeof(file_mult)}
227 };
228 #endif
229
230 static void
231 comminit(int fd)
232 {
233     int i;
234     int j;
235
236     for (i = 0; i < MAXNOC; i++)
237         for (j = 0; j < MAXNOC; j++)
238             file_mult[i][j] = 1.0;
239 #if !defined(_WIN32)
240     writev(fd, tradevec, 3);
241 #else
242     write(fd, file_comm, sizeof(file_comm));
243     write(fd, file_price, sizeof(file_price));
244     write(fd, file_mult, sizeof(file_mult));
245 #endif
246     close(fd);
247 }
248
249 static void
250 file_sct_init(coord x, coord y, s_char *ptr)
251 {
252     struct sctstr *sp = (struct sctstr *)ptr;
253
254     sp->ef_type = EF_SECTOR;
255     sp->sct_x = x;
256     sp->sct_y = y;
257     sp->sct_dist_x = x;
258     sp->sct_dist_y = y;
259 }
260
261 void
262 log_last_commands(void)
263 {
264 }