2010-11-21 22:48:58 +01:00
|
|
|
/* The MIT License
|
|
|
|
*
|
|
|
|
* Copyright (c) 2010 OTClient, https://github.com/edubart/otclient
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2011-04-17 21:14:24 +02:00
|
|
|
#include <prerequisites.h>
|
|
|
|
#include <core/configs.h>
|
|
|
|
#include <core/resources.h>
|
2010-11-21 22:48:58 +01:00
|
|
|
|
2011-04-06 22:53:00 +02:00
|
|
|
Configs g_configs;
|
2010-11-21 22:48:58 +01:00
|
|
|
|
2011-04-06 21:46:58 +02:00
|
|
|
bool Configs::load(const std::string& fileName)
|
2010-11-21 22:48:58 +01:00
|
|
|
{
|
2010-11-22 02:19:20 +01:00
|
|
|
m_fileName = fileName;
|
|
|
|
|
|
|
|
if(!g_resources.fileExists(fileName))
|
2010-11-21 22:48:58 +01:00
|
|
|
return false;
|
|
|
|
|
2010-11-22 02:19:20 +01:00
|
|
|
std::string fileContents = g_resources.loadTextFile(fileName);
|
2011-04-12 07:51:09 +02:00
|
|
|
if(!fileContents.size())
|
2010-11-22 02:19:20 +01:00
|
|
|
return false;
|
|
|
|
|
|
|
|
std::istringstream fin(fileContents);
|
2010-11-21 22:48:58 +01:00
|
|
|
|
|
|
|
try {
|
|
|
|
YAML::Parser parser(fin);
|
|
|
|
|
|
|
|
YAML::Node doc;
|
|
|
|
parser.GetNextDocument(doc);
|
|
|
|
|
2011-04-07 02:58:36 +02:00
|
|
|
for(auto it = doc.begin(); it != doc.end(); ++it) {
|
2010-11-21 22:48:58 +01:00
|
|
|
std::string key, value;
|
|
|
|
it.first() >> key;
|
|
|
|
it.second() >> value;
|
|
|
|
m_confsMap[key] = value;
|
|
|
|
}
|
2011-04-10 22:40:44 +02:00
|
|
|
} catch (YAML::Exception& e) {
|
|
|
|
logError("Malformed config file: %s", e.what());
|
2010-11-21 22:48:58 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-04-06 21:46:58 +02:00
|
|
|
void Configs::save()
|
2010-11-21 22:48:58 +01:00
|
|
|
{
|
2010-11-25 00:36:15 +01:00
|
|
|
if(!m_fileName.empty()) {
|
|
|
|
YAML::Emitter out;
|
|
|
|
out << m_confsMap;
|
2011-04-06 22:18:00 +02:00
|
|
|
g_resources.saveFile(m_fileName, (const uchar*)out.c_str(), out.size());
|
2010-11-25 00:36:15 +01:00
|
|
|
}
|
2010-11-21 22:48:58 +01:00
|
|
|
}
|
|
|
|
|
2011-04-06 21:46:58 +02:00
|
|
|
void Configs::setValue(const std::string &key, const std::string &value)
|
2010-11-21 22:48:58 +01:00
|
|
|
{
|
|
|
|
m_confsMap[key] = value;
|
|
|
|
}
|
|
|
|
|
2011-04-06 21:46:58 +02:00
|
|
|
void Configs::setValue(const std::string &key, const char *value)
|
2010-11-21 22:48:58 +01:00
|
|
|
{
|
|
|
|
m_confsMap[key] = value;
|
|
|
|
}
|
|
|
|
|
2011-04-06 21:46:58 +02:00
|
|
|
void Configs::setValue(const std::string &key, int value)
|
2010-11-21 22:48:58 +01:00
|
|
|
{
|
2011-04-02 23:19:07 +02:00
|
|
|
setValue(key, convertType<std::string, int>(value));
|
2010-11-21 22:48:58 +01:00
|
|
|
}
|
|
|
|
|
2011-04-06 21:46:58 +02:00
|
|
|
void Configs::setValue(const std::string &key, float value)
|
2010-11-21 22:48:58 +01:00
|
|
|
{
|
2011-04-02 23:19:07 +02:00
|
|
|
setValue(key, convertType<std::string, float>(value));
|
2010-11-21 22:48:58 +01:00
|
|
|
}
|
|
|
|
|
2011-04-06 21:46:58 +02:00
|
|
|
void Configs::setValue(const std::string &key, bool value)
|
2010-11-21 22:48:58 +01:00
|
|
|
{
|
|
|
|
if(value)
|
|
|
|
setValue(key,"true");
|
|
|
|
else
|
|
|
|
setValue(key,"false");
|
|
|
|
}
|
|
|
|
|
2011-04-06 22:53:00 +02:00
|
|
|
const std::string &Configs::getString(const std::string &key) const
|
2010-11-21 22:48:58 +01:00
|
|
|
{
|
2011-04-06 22:53:00 +02:00
|
|
|
auto it = m_confsMap.find(key);
|
|
|
|
if(it == m_confsMap.end()) {
|
2011-04-07 11:36:02 +02:00
|
|
|
logWarning("Config value %s not found", key.c_str());
|
2010-11-21 22:48:58 +01:00
|
|
|
static std::string emptystr;
|
|
|
|
return emptystr;
|
|
|
|
}
|
2011-04-06 22:53:00 +02:00
|
|
|
return it->second;
|
2010-11-21 22:48:58 +01:00
|
|
|
}
|
|
|
|
|
2011-04-06 22:53:00 +02:00
|
|
|
float Configs::getFloat(const std::string &key) const
|
2010-11-21 22:48:58 +01:00
|
|
|
{
|
2011-04-06 22:53:00 +02:00
|
|
|
auto it = m_confsMap.find(key);
|
|
|
|
if(it == m_confsMap.end()) {
|
2011-04-07 11:36:02 +02:00
|
|
|
logWarning("Config value %s not found", key.c_str());
|
2010-11-21 22:48:58 +01:00
|
|
|
return 0;
|
|
|
|
}
|
2011-04-06 22:53:00 +02:00
|
|
|
return convertType<float, std::string>(it->second);
|
2010-11-21 22:48:58 +01:00
|
|
|
}
|
|
|
|
|
2011-04-06 22:53:00 +02:00
|
|
|
bool Configs::getBoolean(const std::string &key) const
|
2010-11-21 22:48:58 +01:00
|
|
|
{
|
2011-04-06 22:53:00 +02:00
|
|
|
auto it = m_confsMap.find(key);
|
|
|
|
if(it == m_confsMap.end()) {
|
2011-04-07 11:36:02 +02:00
|
|
|
logWarning("Config value %s not found", key.c_str());
|
2010-11-21 22:48:58 +01:00
|
|
|
return 0;
|
|
|
|
}
|
2011-04-06 22:53:00 +02:00
|
|
|
return (it->second == "true");
|
2010-11-21 22:48:58 +01:00
|
|
|
}
|
|
|
|
|
2011-04-06 22:53:00 +02:00
|
|
|
int Configs::getInteger(const std::string &key) const
|
2010-11-21 22:48:58 +01:00
|
|
|
{
|
2011-04-06 22:53:00 +02:00
|
|
|
auto it = m_confsMap.find(key);
|
|
|
|
if(it == m_confsMap.end()) {
|
2011-04-07 11:36:02 +02:00
|
|
|
logWarning("Config value %s not found", key.c_str());
|
2010-11-21 22:48:58 +01:00
|
|
|
return 0;
|
|
|
|
}
|
2011-04-06 22:53:00 +02:00
|
|
|
return convertType<int, std::string>(it->second);
|
2010-11-21 22:48:58 +01:00
|
|
|
}
|