]> 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-2020, 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-2016
34  */
35
36 #include <config.h>
37
38 #include <errno.h>
39 #include <sys/stat.h>
40 #include <unistd.h>
41 #include "nat.h"
42 #include "optlist.h"
43 #include "prototypes.h"
44 #include "tel.h"
45 #include "version.h"
46
47 static void
48 print_usage(char *program_name)
49 {
50     printf("Usage: %s [OPTION]...\n"
51            "  -e CONFIG-FILE  configuration file\n"
52            "                  (default %s)\n"
53            "  -f              force overwrite of existing game\n"
54            "  -h              display this help and exit\n"
55            "  -v              display version information and exit\n",
56            program_name, dflt_econfig);
57 }
58
59 int
60 main(int argc, char *argv[])
61 {
62     char buf[255];
63     int i;
64     int opt;
65     char *config_file = NULL;
66     int force = 0;
67
68     while ((opt = getopt(argc, argv, "e:fhv")) != EOF) {
69         switch (opt) {
70         case 'e':
71             config_file = optarg;
72             break;
73         case 'f':
74             force = 1;
75             break;
76         case 'h':
77             print_usage(argv[0]);
78             exit(0);
79         case 'v':
80             printf("%s\n\n%s", version, legal);
81             exit(0);
82         default:
83             fprintf(stderr, "Try -h for help.\n");
84             exit(1);
85         }
86     }
87
88     if (argv[optind]) {
89         fprintf(stderr, "%s: does not take operands\n", argv[0]);
90         fprintf(stderr, "Try -h for help.\n");
91         exit(1);
92     }
93
94     empfile_init();
95     if (emp_config(config_file) < 0)
96         exit(1);
97     empfile_fixup();
98
99     if (mkdir(gamedir, S_IRWXU | S_IRWXG) < 0 && errno != EEXIST) {
100         fprintf(stderr, "Can't make game directory %s (%s)\n",
101                 gamedir, strerror(errno));
102         exit(1);
103     }
104     if (chdir(gamedir)) {
105         fprintf(stderr, "Can't chdir to %s (%s)\n",
106                 gamedir, strerror(errno));
107         exit(EXIT_FAILURE);
108     }
109
110     if (!force) {
111         printf("WARNING: this blasts the existing game in %s (if any)\n",
112                gamedir);
113         printf("continue? ");
114         if (!fgets(buf, sizeof(buf), stdin) || (*buf != 'y' && *buf != 'Y'))
115             exit(1);
116     }
117
118     for (i = 0; i < EF_MAX; i++) {
119         if (!EF_IS_GAME_STATE(i))
120             continue;
121         if (!ef_open(i, EFF_CREATE | EFF_NOTIME))
122             exit(1);
123     }
124
125     if (mkdir(teldir, S_IRWXU | S_IRWXG) < 0 && errno != EEXIST) {
126         fprintf(stderr, "Can't make telegram directory %s (%s)\n",
127                 teldir, strerror(errno));
128         exit(1);
129     }
130     for (i = 0; i < MAXNOC; i++) {
131         if (mailbox_create(mailbox(buf, i)) < 0)
132             exit(1);
133     }
134     if (mailbox_create(annfil) < 0)
135         exit(1);
136
137     nat_reset(0, "POGO", "peter", STAT_GOD);
138     printf("All praise to POGO!\n");
139
140     for (i = 0; i < EF_MAX; i++) {
141         if (!EF_IS_GAME_STATE(i))
142             continue;
143         ef_close(i);
144     }
145
146     exit(0);
147 }