Why upgrade? I'm not a lawyer, but here's my take on the differences to version 2: * Software patents: better protection against abuse of patents to prevent users from exercising the rights under the GPL. I doubt we'll get hit with a patent suit, but it's a good move just on general principles. * License compatibility: compatible with more free licenses, i.e. can "steal" more free software for use in Empire. I don't expect to steal much, but it's nice to have the option. * Definition of "source code": modernization of some details for today's networked world, to make it easier to distribute the software. Not really relevant to us now, as we normally distribute full source code. * Tivoization: this is about putting GPL-licensed software in hardware, then make the hardware refuse to run modified software. "Neat" trick to effectively deny its users their rights under the GPL. Abuse was "pioneered" by TiVo (popular digital video recorders). GPLv3 forbids it. Unlikely to become a problem for us. * Internationalization: more careful wording, to harden the license outside the US. The lawyers tell us it better be done that way. * License violations: friendlier way to deal with license violations. This has come out of past experience enforcing the GPL. * Additional permissions: Probably not relevant to us. Also include myself in the list of principal authors.
235 lines
5.5 KiB
C
235 lines
5.5 KiB
C
/*
|
|
* Empire - A multi-player, client/server Internet based war game.
|
|
* Copyright (C) 1986-2011, Dave Pare, Jeff Bailey, Thomas Ruschak,
|
|
* Ken Stevens, Steve McClure, Markus Armbruster
|
|
*
|
|
* Empire is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* ---
|
|
*
|
|
* See files README, COPYING and CREDITS in the root of the source
|
|
* tree for related information and legal notices. It is expected
|
|
* that future projects/authors will amend these files as needed.
|
|
*
|
|
* ---
|
|
*
|
|
* emp_config.c: Allows config file to control server config. from a file
|
|
*
|
|
* Known contributors to this file:
|
|
* Julian Onions, 1995
|
|
* Steve McClure, 1998-2000
|
|
* Markus Armbruster, 2004-2009
|
|
*/
|
|
|
|
/*
|
|
* STILL TO DO
|
|
*
|
|
* Change other constants - such as MAXNOC etc.
|
|
* Just requires variables to be assigned, then dynamic allocation in
|
|
* a few places. Some checks needed in the server to check the world
|
|
* hasn't changed size etc.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include <assert.h>
|
|
#include <ctype.h>
|
|
#include <errno.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
|
|
#include "file.h"
|
|
#include "misc.h"
|
|
#include "optlist.h"
|
|
#include "prototypes.h"
|
|
|
|
static struct keymatch *keylookup(char *key, struct keymatch tbl[]);
|
|
static int set_paths(char *);
|
|
|
|
/*
|
|
* read in empire configuration
|
|
*/
|
|
int
|
|
emp_config(char *file)
|
|
{
|
|
FILE *fp;
|
|
char scanspace[1024];
|
|
char *av[128];
|
|
char buf[1024];
|
|
struct keymatch *kp;
|
|
int lno = 0;
|
|
int errors = 0;
|
|
int i;
|
|
|
|
if (!file)
|
|
file = dflt_econfig;
|
|
errno = 0;
|
|
if ((fp = fopen(file, "r")) == NULL) {
|
|
if (file == dflt_econfig && errno == ENOENT)
|
|
goto done;
|
|
fprintf(stderr, "Can't open %s for reading (%s)\n",
|
|
file, strerror(errno));
|
|
return -1;
|
|
}
|
|
|
|
while (fgets(buf, sizeof(buf), fp) != NULL) {
|
|
++lno;
|
|
for (i = 0; buf[i] && isspace(buf[i]); ++i) ;
|
|
if (!buf[i] || buf[i] == '#')
|
|
continue;
|
|
if (parse(buf, scanspace, av, NULL, NULL, NULL) < 0) {
|
|
fprintf(stderr, "%s:%d: Can't parse line %s", file, lno, buf);
|
|
errors = 1;
|
|
continue;
|
|
}
|
|
if ((kp = keylookup(av[0], configkeys)) == NULL) {
|
|
fprintf(stderr, "%s:%d: Unknown config key %s\n",
|
|
file, lno, av[0]);
|
|
errors = 1;
|
|
continue;
|
|
}
|
|
if (av[1] == NULL) {
|
|
fprintf(stderr, "%s:%d: Config key %s needs a value\n",
|
|
file, lno, av[0]);
|
|
errors = 1;
|
|
continue;
|
|
}
|
|
i = 2;
|
|
switch (kp->km_type) {
|
|
case NSC_INT:
|
|
*(int *)kp->km_data = atoi(av[1]);
|
|
break;
|
|
case NSC_FLOAT:
|
|
*(float *)kp->km_data = atof(av[1]);
|
|
break;
|
|
case NSC_DOUBLE:
|
|
*(double *)kp->km_data = atof(av[1]);
|
|
break;
|
|
case NSC_LONG:
|
|
*(long *)kp->km_data = atol(av[1]);
|
|
break;
|
|
case NSC_STRING:
|
|
if (kp->km_flags & KM_ALLOC)
|
|
free(*(char **)kp->km_data);
|
|
*(char **)kp->km_data = strdup(av[1]);
|
|
kp->km_flags |= KM_ALLOC;
|
|
break;
|
|
default:
|
|
assert(0);
|
|
}
|
|
if (av[i] != NULL) {
|
|
fprintf(stderr, "%s:%d: Junk after value of config key %s\n",
|
|
file, lno, av[0]);
|
|
errors = 1;
|
|
}
|
|
}
|
|
|
|
fclose(fp);
|
|
|
|
done:
|
|
WORLD_X &= ~1; /* force even */
|
|
if (set_paths(file) < 0)
|
|
return -1;
|
|
|
|
return -errors;
|
|
}
|
|
|
|
/* find the key in the table */
|
|
static struct keymatch *
|
|
keylookup(char *command, struct keymatch *tbl)
|
|
{
|
|
struct keymatch *kp;
|
|
|
|
if (!command || !*command)
|
|
return NULL;
|
|
for (kp = tbl; kp->km_key; kp++) {
|
|
if (strcmp(kp->km_key, command) == 0)
|
|
return kp;
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
static int
|
|
set_paths(char *econfig)
|
|
{
|
|
char *p, *slash;
|
|
|
|
#ifdef _WIN32
|
|
p = _fullpath(NULL, econfig, 0);
|
|
slash = strrchr(p, '\\');
|
|
#else
|
|
char buf[1024];
|
|
char *cwd;
|
|
|
|
cwd = getcwd(buf, sizeof(buf));
|
|
p = fnameat(econfig, cwd);
|
|
if (p[0] != '/') {
|
|
fprintf(stderr, "Can't get current working directory (%s)\n",
|
|
strerror(errno));
|
|
return -1;
|
|
}
|
|
if (p == econfig)
|
|
p = strdup(p);
|
|
slash = strrchr(p, '/');
|
|
#endif /* !_WIN32 */
|
|
|
|
*slash = 0;
|
|
configdir = realloc(p, slash + 1 - p);
|
|
|
|
infodir = fnameat(infodir_conf, configdir);
|
|
gamedir = fnameat(gamedir_conf, configdir);
|
|
builtindir = fnameat(builtindir_conf, configdir);
|
|
schedulefil = fnameat("schedule", configdir);
|
|
|
|
return 0;
|
|
}
|
|
|
|
void
|
|
print_config(FILE *fp)
|
|
{
|
|
struct keymatch *kp;
|
|
|
|
fprintf(fp, "# Empire Configuration File:\n");
|
|
for (kp = configkeys; kp->km_key; kp++) {
|
|
if (kp->km_comment) {
|
|
if (kp->km_comment[0] != '\n' && kp->km_comment[0] != '#')
|
|
fprintf(fp, "\n# ");
|
|
fprintf(fp, "%s\n", kp->km_comment);
|
|
}
|
|
if (!kp->km_key[0])
|
|
continue;
|
|
switch (kp->km_type) {
|
|
case NSC_STRING:
|
|
fprintf(fp, "%s \"%s\"\n", kp->km_key, *(char **)kp->km_data);
|
|
break;
|
|
case NSC_INT:
|
|
fprintf(fp, "%s %d\n", kp->km_key, *(int *)kp->km_data);
|
|
break;
|
|
case NSC_FLOAT:
|
|
fprintf(fp, "%s %g\n", kp->km_key, *(float *)kp->km_data);
|
|
break;
|
|
case NSC_DOUBLE:
|
|
fprintf(fp, "%s %g\n", kp->km_key, *(double *)kp->km_data);
|
|
break;
|
|
case NSC_LONG:
|
|
fprintf(fp, "%s %ld\n", kp->km_key, *(long *)kp->km_data);
|
|
break;
|
|
default:
|
|
assert(0);
|
|
}
|
|
}
|
|
|
|
fprintf(fp, "\n");
|
|
}
|