/*==LICENSE==* CyanWorlds.com Engine - MMOG client, server and tools Copyright (C) 2011 Cyan Worlds, Inc. 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 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 General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Additional permissions under GNU GPL version 3 section 7 If you modify this Program, or any covered work, by linking or combining it with any of RAD Game Tools Bink SDK, Autodesk 3ds Max SDK, NVIDIA PhysX SDK, Microsoft DirectX SDK, OpenSSL library, Independent JPEG Group JPEG library, Microsoft Windows Media SDK, or Apple QuickTime SDK (or a modified version of those libraries), containing parts covered by the terms of the Bink SDK EULA, 3ds Max EULA, PhysX SDK EULA, DirectX SDK EULA, OpenSSL and SSLeay licenses, IJG JPEG Library README, Windows Media SDK EULA, or QuickTime SDK EULA, the licensors of this Program grant you additional permission to convey the resulting work. Corresponding Source for a non-source form of such a combination shall include the source code for the parts of OpenSSL and IJG JPEG Library used as well as that of the covered work. You can contact Cyan Worlds, Inc. by email legal@cyan.com or by snail mail at: Cyan Worlds, Inc. 14617 N Newport Hwy Mead, WA 99021 *==LICENSE==*/ #include "plConfigInfo.h" plConfigInfoLogging::plConfigInfoLogging() { } plConfigInfoLogging::~plConfigInfoLogging() { } bool plConfigInfoLogging::GetValue(plString& retval, const plString & section, const plString & key, const plString & desc, const plString& defval) { plString descwdef = plString::Format("%s # %s",defval.c_str(),desc.c_str()); fLog.AddValue(section,key,descwdef,kReplaceIfExists); bool found; retval = fConfigInfo.GetValue(section,key,defval,&found); return found; } bool plConfigInfoLogging::GetValue(int& retval, const plString & section, const plString & key, const plString & desc, int defval) { plString descwdef = plString::Format("%d # %s",defval,desc.c_str()); fLog.AddValue(section,key,descwdef,kReplaceIfExists); bool found; retval = fConfigInfo.GetValue(section,key,defval,&found); return found; } bool plConfigInfoLogging::GetValue(bool& retval, const plString & section, const plString & key, const plString & desc, bool defval) { plString descwdef = plString::Format("%d # %s",defval,desc.c_str()); fLog.AddValue(section,key,descwdef,kReplaceIfExists); bool found; retval = ( fConfigInfo.GetValue(section,key,(int)defval,&found)!=0 ); return found; } bool plConfigInfoLogging::GetValue(float& retval, const plString & section, const plString & key, const plString & desc, float defval) { plString descwdef = plString::Format("%f # %s",defval,desc.c_str()); fLog.AddValue(section,key,descwdef,kReplaceIfExists); bool found; double retvald = fConfigInfo.GetValue(section,key,defval,&found); retval = (float)retvald; return found; } bool plConfigInfoLogging::GetValue(double& retval, const plString & section, const plString & key, const plString & desc, double defval) { plString descwdef = plString::Format("%f # %s",defval,desc.c_str()); fLog.AddValue(section,key,descwdef,kReplaceIfExists); bool found; retval = fConfigInfo.GetValue(section,key,defval,&found); return found; } bool plConfigInfoLogging::GetAllValues(std::vector& values, const plString & section, const plString & key, const plString & desc) { plString descwdef = plString::Format("%s # %s","\"Multiple Entries\"",desc.c_str()); fLog.AddValue(section,key,descwdef,kReplaceIfExists); values = fConfigInfo.GetAllValues(section,key); return values.size() != 0; } #if USE_MULT_SECTIONS bool plConfigInfoLogging::GetValueAny(plString& retval, const plString & key, const plString & desc, const plString & defval) { fLog.AddValue("ANY SECTION",key,desc,kReplaceIfExists); bool found; retval = fConfigInfo.GetValueAny(key,defval,&found); return found; } bool plConfigInfoLogging::GetValueAny(int &retval, const plString & key, const plString & desc, int defval) { fLog.AddValue("ANY SECTION",key,desc,kReplaceIfExists); bool found; retval = fConfigInfo.GetValueAny(key,defval,&found); return found; } bool plConfigInfoLogging::GetValueAny(bool &retval, const plString & key, const plString & desc, bool defval) { fLog.AddValue("ANY SECTION",key,desc,kReplaceIfExists); bool found; retval = ( fConfigInfo.GetValueAny(key,(int)defval,&found)!=0 ); return found; } bool plConfigInfoLogging::GetValueAny(float& retval, const plString & key, const plString & desc, float defval) { fLog.AddValue("ANY SECTION",key,desc,kReplaceIfExists); bool found; retval = fConfigInfo.GetValueAny(key,defval,&found); return found; } bool plConfigInfoLogging::GetValueAny(double& retval, const plString & key, const plString & desc, double defval) { fLog.AddValue("ANY SECTION",key,desc,kReplaceIfExists); bool found; retval = fConfigInfo.GetValueAny(key,defval,&found); return found; } bool plConfigInfoLogging::GetAllValuesAny(std::vector& values, const plString & key, const plString & desc) { fLog.AddValue("ANY SECTION",key,desc,kReplaceIfExists); values = fConfigInfo.GetAllValuesAny(key); return values.size() != 0; } bool plConfigInfoLogging::GetValueIn(plString& retval, const plString & key, const plString & desc, const plString & defval, const char * section1, ... /*, nil*/) { const char * section = section1; va_list va; va_start(va,section1); std::vector sections; while (section) { sections.push_back( section ); section = va_arg(va,const char *); } va_end(va); return GetValueIn(retval,key,desc,defval,sections); } bool plConfigInfoLogging::GetValueIn(plString& retval, const plString & key, const plString & desc, const plString & defval, std::vector & sections ) { std::vector::iterator si = sections.begin(); while (si != sections.end()) { fLog.AddValue(*si,key,desc,kReplaceIfExists); si++; } bool found; retval = fConfigInfo.GetValueIn(key,defval,&found,sections); return found; } bool plConfigInfoLogging::GetValueIn(int& retval, const plString & key, const plString & desc, int defval, const char * section1, ... /*, nil*/) { const char * section = section1; va_list va; va_start(va,section1); std::vector sections; while (section) { sections.push_back( section ); section = va_arg(va,const char *); } va_end(va); return GetValueIn(retval,key,desc,defval,sections); } bool plConfigInfoLogging::GetValueIn(int& retval, const plString & key, const plString & desc, int defval, std::vector & sections ) { std::vector::iterator si = sections.begin(); while (si != sections.end()) { fLog.AddValue(*si,key,desc,kReplaceIfExists); si++; } bool found; retval = fConfigInfo.GetValueIn(key,defval,&found,sections); return found; } bool plConfigInfoLogging::GetValueIn(bool& retval, const plString & key, const plString & desc, bool defval, const char * section1, ... /*, nil*/) { const char * section = section1; va_list va; va_start(va,section1); std::vector sections; while (section) { sections.push_back( section ); section = va_arg(va,const char *); } va_end(va); return GetValueIn(retval,key,desc,defval,sections); } bool plConfigInfoLogging::GetValueIn(bool& retval, const plString & key, const plString & desc, bool defval, std::vector & sections ) { std::vector::iterator si = sections.begin(); while (si != sections.end()) { fLog.AddValue(*si,key,desc,kReplaceIfExists); si++; } bool found; retval = ( fConfigInfo.GetValueIn(key,(int)defval,&found,sections)!=0 ); return found; } bool plConfigInfoLogging::GetValueIn(float& retval, const plString & key, const plString & desc, double defval, const char * section1, ... /*, nil*/) { const char * section = section1; va_list va; va_start(va,section1); std::vector sections; while (section) { sections.push_back( section ); section = va_arg(va,const char *); } va_end(va); return GetValueIn(retval,key,desc,defval,sections); } bool plConfigInfoLogging::GetValueIn(float& retval, const plString & key, const plString & desc, double defval, std::vector & sections ) { std::vector::iterator si = sections.begin(); while (si != sections.end()) { fLog.AddValue(*si,key,desc,kReplaceIfExists); si++; } bool found; retval = fConfigInfo.GetValueIn(key,defval,&found,sections); return found; } bool plConfigInfoLogging::GetValueIn(double& retval, const plString & key, const plString & desc, double defval, const char * section1, ... /*, nil*/) { const char * section = section1; va_list va; va_start(va,section1); std::vector sections; while (section) { sections.push_back( section ); section = va_arg(va,const char *); } va_end(va); return GetValueIn(retval,key,desc,defval,sections); } bool plConfigInfoLogging::GetValueIn(double& retval, const plString & key, const plString & desc, double defval, std::vector & sections ) { std::vector::iterator si = sections.begin(); while (si != sections.end()) { fLog.AddValue(*si,key,desc,kReplaceIfExists); si++; } bool found; retval = fConfigInfo.GetValueIn(key,defval,&found,sections); return found; } #endif