mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-11 17:59:02 +00:00
64 lines
2.2 KiB
C++
64 lines
2.2 KiB
C++
// NeL - MMORPG Framework <http://dev.ryzom.com/projects/nel/>
|
|
// Copyright (C) 2010 Winch Gate Property Limited
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU Affero 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 Affero General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#ifndef SBCLIENT_CONFIGURATION_H
|
|
#define SBCLIENT_CONFIGURATION_H
|
|
#include <nel/misc/types_nl.h>
|
|
|
|
// STL includes
|
|
|
|
// NeL includes
|
|
#include <nel/misc/config_file.h>
|
|
#include <nel/misc/rgba.h>
|
|
#include <nel/misc/ucstring.h>
|
|
|
|
// Project includes
|
|
|
|
namespace SBCLIENT {
|
|
|
|
/**
|
|
* \brief CConfiguration
|
|
* \date 2008-11-06 16:25GMT
|
|
* \author Jan Boon (Kaetemi)
|
|
* CConfiguration
|
|
*/
|
|
class CConfiguration
|
|
{
|
|
public:
|
|
static bool init();
|
|
static bool release();
|
|
|
|
static void updateUtilities();
|
|
|
|
static void setAndCallback(const std::string &varName, void (*cb)(NLMISC::CConfigFile::CVar &var));
|
|
static void dropCallback(const std::string &varName);
|
|
|
|
static float getValue(const std::string &varName, float defaultValue);
|
|
static double getValue(const std::string &varName, double defaultValue);
|
|
static int getValue(const std::string &varName, int defaultValue);
|
|
static std::string getValue(const std::string &varName, const std::string &defaultValue);
|
|
static ucstring getValue(const std::string &varName, const ucstring &defaultValue);
|
|
static bool getValue(const std::string &varName, bool defaultValue);
|
|
static NLMISC::CRGBA getValue(const std::string &varName, const NLMISC::CRGBA &defaultValue);
|
|
static NLMISC::CRGBA getValue(const NLMISC::CConfigFile::CVar &var, const NLMISC::CRGBA &defaultValue);
|
|
|
|
}; /* class CConfiguration */
|
|
|
|
} /* namespace SBCLIENT */
|
|
|
|
#endif /* #ifndef SBCLIENT_CONFIGURATION_H */
|
|
|
|
/* end of file */
|