| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- /*
- Copyright (C) 2011 by Ivan Safrin
-
- 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.
- */
- #include "PolyConfig.h"
- #include "tinyxml.h"
- using namespace Polycode;
- Config::Config() {
-
- }
- Config::~Config() {
-
- }
- void Config::loadConfig(const String& configNamespace, const String& fileName) {
- TiXmlDocument doc(fileName.c_str());
-
- Logger::log("Loading config: %s\n", fileName.c_str());
-
- if(!doc.LoadFile()) {
- Logger::log("Error loading config file...\n");
- Logger::log("Error: %s\n", doc.ErrorDesc());
- return;
- }
-
- TiXmlElement *rootElement = doc.RootElement();
-
- TiXmlNode *pChild;
- ConfigEntry *entry;
- for(pChild = rootElement->FirstChild(); pChild != 0; pChild = pChild->NextSibling()) {
- TiXmlElement *pChildElement = pChild->ToElement();
- if (!pChildElement) continue; // Skip comment nodes
-
- entry = getEntry(configNamespace, pChild->Value());
- entry->stringVal = pChildElement->GetText();
- entry->numVal = atof(pChildElement->GetText());
- entry->isString = true;
- entry->configNamespace = configNamespace;
- }
-
- }
- void Config::saveConfig(const String& configNamespace, const String& fileName) {
- TiXmlDocument doc;
- TiXmlElement* node;
-
- TiXmlDeclaration* decl = new TiXmlDeclaration( "1.0", "", "" );
- doc.LinkEndChild( decl );
- TiXmlElement * root = new TiXmlElement( "PolyConfig" );
- doc.LinkEndChild( root );
-
-
- for(int i=0; i < entries.size(); i++) {
- if(entries[i]->configNamespace == configNamespace) {
- node = new TiXmlElement(entries[i]->key.c_str());
- if(entries[i]->isString)
- node->LinkEndChild( new TiXmlText(entries[i]->stringVal.c_str()));
- else
- node->LinkEndChild( new TiXmlText(String::NumberToString(entries[i]->numVal).c_str()));
- root->LinkEndChild( node);
- }
- }
- doc.SaveFile(fileName.c_str());
- }
- ConfigEntry *Config::getEntry(const String& configNamespace, const String& key) {
-
- for(int i=0; i < entries.size(); i++) {
- ConfigEntry *entry = entries[i];
- if(entry->key == key && entry->configNamespace == configNamespace) {
- return entry;
- }
- }
- ConfigEntry *newEntry = new ConfigEntry();
- newEntry->key = key;
- newEntry->isString = false;
- newEntry->numVal = 0;
- newEntry->configNamespace = configNamespace;
- entries.push_back(newEntry);
- return newEntry;
- }
- void Config::setStringValue(const String& configNamespace, const String& key, const String& value) {
- getEntry(configNamespace, key)->stringVal = value;
- getEntry(configNamespace, key)->isString = true;
- }
- void Config::setNumericValue(const String& configNamespace, const String& key, Number value) {
- getEntry(configNamespace, key)->numVal = value;
- getEntry(configNamespace, key)->isString = false;
- }
- Number Config::getNumericValue(const String& configNamespace, const String& key) {
- return getEntry(configNamespace, key)->numVal;
- }
- const String& Config::getStringValue(const String& configNamespace, const String& key) {
- return getEntry(configNamespace, key)->stringVal;
- }
|