/* * XPilot NG, a multiplayer space 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #ifndef DEFAULTS_H #define DEFAULTS_H #ifndef MAP_H # include "map.h" #endif enum valType { valVoid, /* variable is not a variable */ valInt, /* variable is type int */ valReal, /* variable is type float */ valBool, /* variable is type bool */ valIPos, /* variable is type ipos */ valString, /* variable is type char* */ valList /* variable is a list of elements of type char* */ }; /* * bitflags for the origin of an option. */ enum _optOrigin { OPT_INIT = 0, OPT_MAP = 1, OPT_DEFAULTS = 2, OPT_COMMAND = 4, OPT_PASSWORD = 8 }; typedef enum _optOrigin optOrigin; /* * extended bitflags for option origin. */ enum _optOriginAny { OPT_NONE = 0, /* not settable */ OPT_ORIGIN_ANY = 7, /* allow any of {map,defaults,command} */ OPT_VISIBLE = 16 /* can we query this option value? */ }; typedef struct _option_desc { const char *name; const char *commandLineOption; const char *defaultValue; void *variable; enum valType type; void (*tuner)(void); const char *helpLine; int flags; /* allowable option origins. */ } option_desc; option_desc* Find_option_by_name(const char* name); option_desc* Get_option_descs(int *count_ptr); bool Option_add_desc(option_desc *desc); void Option_set_value( const char *name, const char *value, int override, optOrigin opt_origin); char* Option_get_value(const char *name, optOrigin *origin_ptr); #endif