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