]> git.pond.sub.org Git - empserver/blob - src/util/files.c
Update copyright notice
[empserver] / src / util / files.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2014, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                Ken Stevens, Steve McClure, Markus Armbruster
5  *
6  *  Empire 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 3 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, see <http://www.gnu.org/licenses/>.
18  *
19  *  ---
20  *
21  *  See files README, COPYING and CREDITS in the root of the source
22  *  tree for related information and legal notices.  It is expected
23  *  that future projects/authors will amend these files as needed.
24  *
25  *  ---
26  *
27  *  files.c: Create all the misc files
28  *
29  *  Known contributors to this file:
30  *     Thomas Ruschak
31  *     Ken Stevens, 1995
32  *     Steve McClure, 1998
33  *     Markus Armbruster, 2004-2011
34  */
35
36 #include <config.h>
37
38 #include <errno.h>
39 #include <sys/stat.h>
40 #include <unistd.h>
41 #include "file.h"
42 #include "nat.h"
43 #include "optlist.h"
44 #include "prototypes.h"
45 #include "tel.h"
46 #include "version.h"
47
48 static void
49 print_usage(char *program_name)
50 {
51     printf("Usage: %s [OPTION]...\n"
52            "  -e CONFIG-FILE  configuration file\n"
53            "                  (default %s)\n"
54            "  -f              force overwrite of existing game\n"
55            "  -h              display this help and exit\n"
56            "  -v              display version information and exit\n",
57            program_name, dflt_econfig);
58 }
59
60 int
61 main(int argc, char *argv[])
62 {
63     char buf[255];
64     struct natstr nat;
65     int i;
66     int opt;
67     char *config_file = NULL;
68     int force = 0;
69
70     while ((opt = getopt(argc, argv, "e:fhv")) != EOF) {
71         switch (opt) {
72         case 'e':
73             config_file = optarg;
74             break;
75         case 'f':
76             force = 1;
77             break;
78         case 'h':
79             print_usage(argv[0]);
80             exit(0);
81         case 'v':
82             printf("%s\n\n%s", version, legal);
83             exit(0);
84         default:
85             fprintf(stderr, "Try -h for help.\n");
86             exit(1);
87         }
88     }
89
90     if (argv[optind]) {
91         fprintf(stderr, "%s: does not take operands\n", argv[0]);
92         fprintf(stderr, "Try -h for help.\n");
93         exit(1);
94     }
95
96     empfile_init();
97     if (emp_config(config_file) < 0)
98         exit(1);
99     empfile_fixup();
100
101     if (mkdir(gamedir, S_IRWXU | S_IRWXG) < 0 && errno != EEXIST) {
102         fprintf(stderr, "Can't make game directory %s (%s)\n",
103                 gamedir, strerror(errno));
104         exit(1);
105     }
106     if (chdir(gamedir)) {
107         fprintf(stderr, "Can't chdir to %s (%s)\n",
108                 gamedir, strerror(errno));
109         exit(EXIT_FAILURE);
110     }
111
112     if (!force) {
113         printf("WARNING: this blasts the existing game in %s (if any)\n",
114                gamedir);
115         printf("continue? ");
116         if (!fgets(buf, sizeof(buf), stdin) || (*buf != 'y' && *buf != 'Y'))
117             exit(1);
118     }
119
120     for (i = 0; i < EF_MAX; i++) {
121         if (!EF_IS_GAME_STATE(i))
122             continue;
123         if (!ef_open(i, EFF_CREATE | EFF_NOTIME))
124             exit(1);
125     }
126
127     if (mkdir(teldir, S_IRWXU | S_IRWXG) < 0 && errno != EEXIST) {
128         fprintf(stderr, "Can't make telegram directory %s (%s)\n",
129                 teldir, strerror(errno));
130         exit(1);
131     }
132     for (i = 0; i < MAXNOC; i++) {
133         if (mailbox_create(mailbox(buf, i)) < 0)
134             exit(1);
135     }
136     if (mailbox_create(annfil) < 0)
137         exit(1);
138
139     nat_reset(&nat, 0, "POGO", "peter", STAT_GOD);
140     putnat(&nat);
141     printf("All praise to %s!\n", nat.nat_cnam);
142
143     for (i = 0; i < EF_MAX; i++) {
144         if (!EF_IS_GAME_STATE(i))
145             continue;
146         ef_close(i);
147     }
148
149     exit(0);
150 }