/* * Empire - A multi-player, client/server Internet based war game. * Copyright (C) 1986-2009, Dave Pare, Jeff Bailey, Thomas Ruschak, * Ken Stevens, Steve McClure * * This program 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 2 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, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * --- * * 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-2008 */ /* * 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 #include #include #include #include #include #include #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 == 0 || *command == 0) return NULL; for (kp = tbl; kp->km_key != 0; 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"); }