2013-09-29 11:56:50 -07:00
|
|
|
/* Copyright (C) 2013 Wildfire Games.
|
2009-04-18 10:00:33 -07:00
|
|
|
* This file is part of 0 A.D.
|
|
|
|
|
*
|
|
|
|
|
* 0 A.D. 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.
|
|
|
|
|
*
|
|
|
|
|
* 0 A.D. 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 0 A.D. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
*/
|
|
|
|
|
|
2004-06-09 06:53:32 -07:00
|
|
|
/*
|
|
|
|
|
CConfigDB - Load, access and store configuration variables
|
|
|
|
|
|
2012-12-11 15:04:03 -08:00
|
|
|
TDD : http://www.wildfiregames.com/forum/index.php?showtopic=1125
|
2004-06-09 06:53:32 -07:00
|
|
|
OVERVIEW:
|
2004-07-04 08:36:48 -07:00
|
|
|
|
2013-09-29 11:56:50 -07:00
|
|
|
JavaScript: Check this documentation: http://trac.wildfiregames.com/wiki/Exposed_ConfigDB_Functions
|
2004-06-09 06:53:32 -07:00
|
|
|
*/
|
|
|
|
|
|
2007-05-07 09:33:24 -07:00
|
|
|
#ifndef INCLUDED_CONFIGDB
|
|
|
|
|
#define INCLUDED_CONFIGDB
|
2004-06-09 06:53:32 -07:00
|
|
|
|
|
|
|
|
#include "Parser.h"
|
|
|
|
|
#include "CStr.h"
|
|
|
|
|
#include "Singleton.h"
|
|
|
|
|
|
2011-02-16 12:40:15 -08:00
|
|
|
#include "lib/file/vfs/vfs_path.h"
|
|
|
|
|
|
2004-10-23 07:39:28 -07:00
|
|
|
// Namespace priorities: User supersedes mod supersedes system.
|
|
|
|
|
// Command-line arguments override everything.
|
|
|
|
|
|
2004-06-09 06:53:32 -07:00
|
|
|
enum EConfigNamespace
|
|
|
|
|
{
|
2009-06-23 10:48:34 -07:00
|
|
|
CFG_DEFAULT,
|
2004-06-09 06:53:32 -07:00
|
|
|
CFG_SYSTEM,
|
|
|
|
|
CFG_MOD,
|
|
|
|
|
CFG_USER,
|
2004-10-23 07:39:28 -07:00
|
|
|
CFG_COMMAND,
|
2004-06-09 06:53:32 -07:00
|
|
|
CFG_LAST
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
typedef CParserValue CConfigValue;
|
2004-07-21 09:34:07 -07:00
|
|
|
typedef std::vector<CParserValue> CConfigValueSet;
|
|
|
|
|
|
2004-06-09 06:53:32 -07:00
|
|
|
#define g_ConfigDB CConfigDB::GetSingleton()
|
|
|
|
|
|
|
|
|
|
class CConfigDB: public Singleton<CConfigDB>
|
|
|
|
|
{
|
2004-07-21 09:34:07 -07:00
|
|
|
static std::map <CStr, CConfigValueSet> m_Map[];
|
2011-02-16 12:40:15 -08:00
|
|
|
static VfsPath m_ConfigFile[];
|
2004-06-09 06:53:32 -07:00
|
|
|
|
|
|
|
|
public:
|
2004-07-04 08:36:48 -07:00
|
|
|
CConfigDB();
|
|
|
|
|
|
2010-10-22 19:37:00 -07:00
|
|
|
/**
|
2012-12-25 14:49:18 -08:00
|
|
|
* Attempt to find a config variable with the given name; will search
|
|
|
|
|
* CFG_COMMAND first, and then all namespaces from the specified namespace
|
|
|
|
|
* down to system.
|
2010-10-22 19:37:00 -07:00
|
|
|
*
|
|
|
|
|
* Returns a pointer to the config value structure for the variable, or
|
2012-12-25 14:49:18 -08:00
|
|
|
* NULL if such a variable could not be found.
|
2010-10-22 19:37:00 -07:00
|
|
|
*/
|
2006-07-20 07:37:58 -07:00
|
|
|
CConfigValue *GetValue(EConfigNamespace ns, const CStr& name);
|
2012-12-25 14:49:18 -08:00
|
|
|
|
2010-10-22 19:37:00 -07:00
|
|
|
/**
|
|
|
|
|
* Attempt to retrieve a vector of values corresponding to the given setting;
|
2012-12-25 14:49:18 -08:00
|
|
|
* will search CFG_COMMAND first, and then all namespaces from the specified
|
|
|
|
|
* namespace down to system.
|
2010-10-22 19:37:00 -07:00
|
|
|
*
|
|
|
|
|
* Returns a pointer to the vector, or NULL if the setting could not be found.
|
|
|
|
|
*/
|
2006-07-20 07:37:58 -07:00
|
|
|
CConfigValueSet *GetValues(EConfigNamespace ns, const CStr& name);
|
2004-07-21 09:34:07 -07:00
|
|
|
|
2011-03-02 17:49:49 -08:00
|
|
|
/**
|
|
|
|
|
* Returns the namespace that the value returned by GetValues was defined in,
|
|
|
|
|
* or CFG_LAST if it wasn't defined at all.
|
|
|
|
|
*/
|
|
|
|
|
EConfigNamespace GetValueNamespace(EConfigNamespace ns, const CStr& name);
|
|
|
|
|
|
2010-10-22 19:37:00 -07:00
|
|
|
/**
|
2012-04-17 06:14:34 -07:00
|
|
|
* Retrieve a map of values corresponding to settings whose names begin
|
2010-10-22 19:37:00 -07:00
|
|
|
* with the given prefix;
|
|
|
|
|
* will search all namespaces from system up to the specified namespace.
|
|
|
|
|
*/
|
2012-04-17 06:14:34 -07:00
|
|
|
std::map<CStr, CConfigValueSet> GetValuesWithPrefix(EConfigNamespace ns, const CStr& prefix);
|
2010-10-22 19:37:00 -07:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Create a new config value in the specified namespace. If such a
|
2012-12-25 14:49:18 -08:00
|
|
|
* variable already exists in this namespace, the old value is returned.
|
2010-10-22 19:37:00 -07:00
|
|
|
*
|
|
|
|
|
* Returns a pointer to the value of the newly created config variable, or
|
|
|
|
|
* that of the already existing config variable.
|
|
|
|
|
*/
|
2006-07-20 07:37:58 -07:00
|
|
|
CConfigValue *CreateValue(EConfigNamespace ns, const CStr& name);
|
2004-06-09 06:53:32 -07:00
|
|
|
|
2010-10-22 19:37:00 -07:00
|
|
|
/**
|
|
|
|
|
* Set the path to the config file used to populate the specified namespace
|
|
|
|
|
* Note that this function does not actually load the config file. Use
|
|
|
|
|
* the Reload() method if you want to read the config file at the same time.
|
|
|
|
|
*
|
|
|
|
|
* 'path': The path to the config file.
|
|
|
|
|
*/
|
2011-02-16 12:40:15 -08:00
|
|
|
void SetConfigFile(EConfigNamespace ns, const VfsPath& path);
|
2004-06-09 06:53:32 -07:00
|
|
|
|
2010-10-22 19:37:00 -07:00
|
|
|
/**
|
|
|
|
|
* Reload the config file associated with the specified config namespace
|
|
|
|
|
* (the last config file path set with SetConfigFile)
|
|
|
|
|
*
|
|
|
|
|
* Returns:
|
|
|
|
|
* true: if the reload succeeded,
|
|
|
|
|
* false: if the reload failed
|
|
|
|
|
*/
|
2004-06-09 06:53:32 -07:00
|
|
|
bool Reload(EConfigNamespace);
|
|
|
|
|
|
2010-10-22 19:37:00 -07:00
|
|
|
/**
|
|
|
|
|
* Write the current state of the specified config namespace to the file
|
|
|
|
|
* specified by 'path'
|
|
|
|
|
*
|
|
|
|
|
* Returns:
|
|
|
|
|
* true: if the config namespace was successfully written to the file
|
|
|
|
|
* false: if an error occurred
|
|
|
|
|
*/
|
2011-02-16 12:40:15 -08:00
|
|
|
bool WriteFile(EConfigNamespace ns, const VfsPath& path);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Write the current state of the specified config namespace to the file
|
|
|
|
|
* it was originally loaded from.
|
|
|
|
|
*
|
|
|
|
|
* Returns:
|
|
|
|
|
* true: if the config namespace was successfully written to the file
|
|
|
|
|
* false: if an error occurred
|
|
|
|
|
*/
|
|
|
|
|
bool WriteFile(EConfigNamespace ns);
|
2004-06-09 06:53:32 -07:00
|
|
|
};
|
|
|
|
|
|
2005-08-09 08:55:44 -07:00
|
|
|
|
|
|
|
|
// stores the value of the given key into <destination>. this quasi-template
|
|
|
|
|
// convenience wrapper on top of CConfigValue::Get* simplifies user code and
|
|
|
|
|
// avoids "assignment within condition expression" warnings.
|
2013-01-01 10:33:53 -08:00
|
|
|
#define CFG_GET_VAL(name, type, destination)\
|
2005-08-09 08:55:44 -07:00
|
|
|
STMT(\
|
|
|
|
|
CConfigValue* val = g_ConfigDB.GetValue(CFG_USER, name);\
|
|
|
|
|
if(val)\
|
|
|
|
|
val->Get##type(destination);\
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
2004-06-09 06:53:32 -07:00
|
|
|
#endif
|