/* $Id: config.c,v 5.7 2002/01/26 13:01:01 bertg Exp $ * * XPilot, a multiplayer gravity war game. Copyright (C) 1991-2001 by * * Bjørn Stabell * Ken Ronny Schouten * Bert Gijsbers * Dick Balaska * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include #include #include #include "version.h" #include "config.h" #ifdef _WINDOWS /* #include "NT/winClient.h" */ /* #include "NT/winAudio.h" */ #endif /* _WINDOWS */ /* * Configure these, that's what they're here for. * Explanation about all these compile time configuration options * is in the Makefile.std and in the Imakefile. */ #ifndef LOCALGURU # define LOCALGURU "xpilot@xpilot.org" #endif #ifndef DEFAULT_MAP # ifdef _WINDOWS # define DEFAULT_MAP "default.xp" # else # define DEFAULT_MAP "globe.xp" # endif #endif #ifndef LIBDIR # if defined(_WINDOWS) # define LIBDIR "lib/" # else # define LIBDIR "/usr/local/games/lib/xpilot/" # endif #endif #ifndef DEFAULTS_FILE_NAME # if defined(_WINDOWS) # define DEFAULTS_FILE_NAME LIBDIR "defaults.txt" # else # define DEFAULTS_FILE_NAME LIBDIR "defaults" # endif #endif #ifndef PASSWORD_FILE_NAME # if defined(_WINDOWS) # define PASSWORD_FILE_NAME LIBDIR "password.txt" # else # define PASSWORD_FILE_NAME LIBDIR "password" # endif #endif #ifndef ROBOTFILE # if defined(_WINDOWS) # define ROBOTFILE LIBDIR "robots.txt" # else # define ROBOTFILE LIBDIR "robots" # endif #endif #ifndef SERVERMOTDFILE # if defined(_WINDOWS) # define SERVERMOTDFILE LIBDIR "servermotd.txt" # else # define SERVERMOTDFILE LIBDIR "servermotd" # endif #endif #ifndef LOCALMOTDFILE # if defined(_WINDOWS) # define LOCALMOTDFILE LIBDIR "localmotd.txt" # else # define LOCALMOTDFILE LIBDIR "localmotd" # endif #endif #ifndef LOGFILE # if defined(_WINDOWS) # define LOGFILE LIBDIR "log.txt" # else # define LOGFILE LIBDIR "log" # endif #endif #ifndef MAPDIR # define MAPDIR LIBDIR "maps/" #endif #ifndef SHIP_FILE # if defined(_WINDOWS) # define SHIP_FILE "XPilot.shp" # else # define SHIP_FILE "" # endif #endif #ifndef TEXTUREDIR # define TEXTUREDIR LIBDIR "textures/" #endif #ifndef SOUNDDIR # define SOUNDDIR LIBDIR "sound/" #endif #ifndef SOUNDFILE # if defined(_WINDOWS) # define SOUNDFILE LIBDIR "sounds.txt" # else # define SOUNDFILE LIBDIR "sounds" # endif #endif #ifndef ZCAT_EXT # define ZCAT_EXT ".gz" #endif #ifndef ZCAT_FORMAT # define ZCAT_FORMAT "gzip -d -c < %s" #endif /* * Please don't change this one. */ #ifndef CONTACTADDRESS # define CONTACTADDRESS "xpilot@xpilot.org" #endif char config_version[] = VERSION; char *Conf_libdir(void) { static char conf[] = LIBDIR; return conf; } char *Conf_defaults_file_name(void) { static char conf[] = DEFAULTS_FILE_NAME; return conf; } char *Conf_password_file_name(void) { static char conf[] = PASSWORD_FILE_NAME; return conf; } char *Conf_mapdir(void) { static char conf[] = MAPDIR; return conf; } static char conf_default_map_string[] = DEFAULT_MAP; char *Conf_default_map(void) { return conf_default_map_string; } char *Conf_servermotdfile(void) { static char conf[] = SERVERMOTDFILE; static char env[] = "XPILOTSERVERMOTD"; char *filename; filename = getenv(env); if (filename == NULL) { filename = conf; } return filename; } char *Conf_localmotdfile(void) { static char conf[] = LOCALMOTDFILE; return conf; } char conf_logfile_string[] = LOGFILE; char *Conf_logfile(void) { return conf_logfile_string; } /* needed by client/default.c */ char conf_ship_file_string[] = SHIP_FILE; char *Conf_ship_file(void) { return conf_ship_file_string; } /* needed by client/default.c */ char conf_texturedir_string[] = TEXTUREDIR; char *Conf_texturedir(void) { return conf_texturedir_string; } /* needed by client/default.c */ char conf_soundfile_string[] = SOUNDFILE; char *Conf_soundfile(void) { return conf_soundfile_string; } char *Conf_localguru(void) { static char conf[] = LOCALGURU; return conf; } char *Conf_contactaddress(void) { static char conf[] = CONTACTADDRESS; return conf; } static char conf_robotfile_string[] = ROBOTFILE; char *Conf_robotfile(void) { return conf_robotfile_string; } char *Conf_zcat_ext(void) { static char conf[] = ZCAT_EXT; return conf; } char *Conf_zcat_format(void) { static char conf[] = ZCAT_FORMAT; return conf; } char *Conf_sounddir(void) { static char conf[] = SOUNDDIR; return conf; }