Changeset 6243
- Timestamp:
- Dec 4, 2009, 3:12:10 PM (15 years ago)
- Location:
- code/branches/presentation2/src
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/presentation2/src/libraries/core/CMakeLists.txt
r6214 r6243 86 86 TOLUA_FILES 87 87 CommandExecutor.h 88 88 ConfigFileManager.h 89 89 Game.h 90 90 Loader.h -
code/branches/presentation2/src/libraries/core/ConfigValueContainer.h
r6219 r6243 121 121 @param defvalue The default-value 122 122 */ 123 template <class V>124 ConfigValueContainer(ConfigFileType type, Identifier* identifier, const std::string& sectionname, const std::string& varname, const std::vector< V>& defvalue)123 template <class D, class V> 124 ConfigValueContainer(ConfigFileType type, Identifier* identifier, const std::string& sectionname, const std::string& varname, const std::vector<D>& defvalue, const std::vector<V>& value) 125 125 { 126 126 this->init(type, identifier, sectionname, varname); -
code/branches/presentation2/src/libraries/core/ConfigValueIncludes.h
r6105 r6243 23 23 * Fabian 'x3n' Landau 24 24 * Co-authors: 25 * ...25 * Reto Grieder (functions) 26 26 * 27 27 */ 28 28 29 29 /** 30 @file 31 @brief Definition of macros for config-values. 30 @file 31 @brief 32 Definition of macros and functions for config-values. 32 33 */ 33 34 … … 41 42 #include "ConfigFileManager.h" 42 43 44 namespace orxonox 45 { 46 /** Sets a runtime configurable value. 47 If the container for the value doesn't yet exist, a new one is created. 48 Also, the @a variable argument will be modified and set to the new value (default or from ini file). 49 @param object 50 Class instance that the config value should belong to (usually just 'this') 51 @param variable 52 Pointer to the variable where the value should be written to 53 @param type 54 Type of the config file, usually ConfigFileType::Settings 55 @param sectionName 56 Name of the section in the ini file (e.g. [MySection]) 57 @param entryName 58 Name of the entry in the ini file (e.g. [MySection] myValue) 59 @param defaultValue 60 Value to be used if it cannot be read from the ini file 61 */ 62 template <class T, class D, class V> 63 inline ConfigValueContainer& setConfigValueGeneric(T* object, V* variable, ConfigFileType type, const std::string& sectionName, const std::string& entryName, const D& defaultValue) 64 { 65 ConfigValueContainer* container = object->getIdentifier()->getConfigValueContainer(entryName); 66 if (!container) 67 { 68 container = new ConfigValueContainer(type, object->getIdentifier(), sectionName, entryName, defaultValue, *variable); 69 object->getIdentifier()->addConfigValueContainer(entryName, container); 70 } 71 return container->getValue(variable, object); 72 } 73 } 43 74 44 /** 45 @brief Assigns the value, defined in the config-file, to the variable (or the default-value, if there is no entry in the file). 46 @param varname The name of the variable 47 @param defvalue The default-value of the variable 75 /** Sets a runtime configurable value (simplified macro version of setConfigValueGeneric) 76 If the container for the value doesn't yet exist, a new one is created. 77 Also, the @a varname argument will be modified and set to the new value (default or from ini file). 78 @param varname 79 Variable name as C++ identifier. It will be used as entry name and as variable pointer 80 @param defaultValue 81 Value to be used if it cannot be read from the ini file 48 82 */ 49 #define SetConfigValueGeneric(type, varname, entryname, sectionname, defvalue) \ 50 static orxonox::Identifier* identifier##varname = this->getIdentifier(); \ 51 orxonox::ConfigValueContainer* container##varname = identifier##varname->getConfigValueContainer(entryname); \ 52 if (!container##varname) \ 53 { \ 54 container##varname = new orxonox::ConfigValueContainer(type, identifier##varname, sectionname, entryname, defvalue, varname); \ 55 identifier##varname->addConfigValueContainer(entryname, container##varname); \ 56 } \ 57 container##varname->getValue(&varname, this) 58 59 #define SetConfigValue(varname, defvalue) SetConfigValueGeneric(ConfigFileType::Settings, varname, #varname, identifier##varname->getName(), defvalue) 83 #define SetConfigValue(varname, defaultValue) \ 84 orxonox::setConfigValueGeneric(this, &varname, ConfigFileType::Settings, this->getIdentifier()->getName(), #varname, defaultValue) 60 85 61 86 62 /** 63 @brief Assigns the vector-values, defined in the config-file, to the vector (or the default-value, if there are no entries in the file). 64 @param varname The name of the std::vector 65 @param defvalue The default-value 87 namespace orxonox 88 { 89 /** Resets a runtime configurable value to its default. 90 If the container for the value doesn't yet exist, a warning is displayed. 91 Also, the @a variable argument will be modified and set to the default value. 92 @param object 93 Class instance that the config value should belong to (usually just 'this') 94 @param variable 95 Pointer to the variable where the value should be written to 96 @param entryName 97 Name of the entry in the ini file (e.g. [MySection] myValue) 98 */ 99 template <class T, class V> 100 inline void resetConfigValueGeneric(T* object, V* variable, const std::string& entryName) 101 { 102 ConfigValueContainer* container = object->getIdentifier()->getConfigValueContainer(entryName); 103 if (container) 104 { 105 container->reset(); 106 container->getValue(variable, object); 107 } 108 else 109 { 110 COUT(2) << "Warning: Couldn't reset config-value '" << entryName << "' in class '" 111 << object->getIdentifier()->getName() << "', corresponding container doesn't exist." << std::endl; 112 } 113 } 114 } 115 116 /** Resets a runtime configurable value to its default (simplified macro version of modifyConfigValueGeneric) 117 If the container for the value doesn't yet exist, a warning is displayed. 118 Also, the @a varname argument will be modified and set to the default value. 119 @param varname 120 Variable name as C++ identifier. It will be used as entry name and as variable pointer 66 121 */ 67 #define SetConfigValueVectorGeneric(type, varname, defvalue) \ 68 static orxonox::Identifier* identifier##varname = this->getIdentifier(); \ 69 orxonox::ConfigValueContainer* container##varname = identifier##varname->getConfigValueContainer(#varname); \ 70 if (!container##varname) \ 71 { \ 72 container##varname = new orxonox::ConfigValueContainer(type, identifier##varname, identifier##varname->getName(), #varname, defvalue); \ 73 identifier##varname->addConfigValueContainer(#varname, container##varname); \ 74 } \ 75 container##varname->getValue(&varname, this) 76 77 #define SetConfigValueVector(varname, defvalue) SetConfigValueVectorGeneric(ConfigFileType::Settings, varname, defvalue) 122 #define ResetConfigValue(varname) \ 123 orxonox::resetConfigValueGeneric(this, &varname, #varname) 78 124 79 125 80 /** 81 @brief Sets the variable and the config-file entry back to the previously defined default-value. 82 @param varname The name of the variable 126 /** Modifies a runtime configurable value by using a modifier and some arguments. 127 If the container for the value doesn't yet exist, a warning is displayed. 128 Also, the @a variable argument will be modified and set to the current value. 129 @param object 130 Class instance that the config value should belong to (usually just 'this') 131 @param variable 132 Pointer to the variable where the value should be written to 133 @param entryName 134 Name of the entry in the ini file (e.g. [MySection] myValue) 135 @param modifier 136 On of these functions: set, tset, add, remove, reset, update 137 @param ... 138 Arguments for the modifier function 83 139 */ 84 #define ResetConfigValue(varname) \ 85 orxonox::ConfigValueContainer* container##varname##reset = this->getIdentifier()->getConfigValueContainer(#varname); \ 86 if (container##varname##reset) \ 140 #define ModifyConfigValueGeneric(object, variable, entryName, modifier, ...) \ 141 if (orxonox::ConfigValueContainer* container = object->getIdentifier()->getConfigValueContainer(entryName)) \ 87 142 { \ 88 container ##varname##reset->reset(); \89 container ##varname##reset->getValue(&varname, this); \143 container->modifier(__VA_ARGS__); \ 144 container->getValue(variable, object); \ 90 145 } \ 91 146 else \ 92 147 { \ 93 COUT(2) << "Warning: Couldn't reset config-value '" << #varname << "', corresponding container doesn't exist." << std::endl; \ 148 COUT(2) << "Warning: Couln't modify config-value '" << entryName << "' in class '" \ 149 << object->getIdentifier()->getName() << "', corresponding container doesn't exist." << std::endl; \ 94 150 } 95 151 96 97 /** 98 @brief Modifies a config-value by using a modifier and some arguments. 99 @param varname The name of the config-value 100 @param modifier The name of the modifier: set, tset, add, remove, reset, update 152 /** Modifies a runtime configurable value by using a modifier and some arguments. 153 If the container for the value doesn't yet exist, a warning is displayed. 154 Also, the @a varname argument will be modified and set to the current value. 155 @param varname 156 Variable name as C++ identifier. It will be used as entry name and as variable pointer 157 @param modifier 158 On of these functions: set, tset, add, remove, reset, update 159 @param ... 160 Arguments for the modifier function 101 161 */ 102 162 #define ModifyConfigValue(varname, modifier, ...) \ 103 orxonox::ConfigValueContainer* container##varname##modify##modifier = this->getIdentifier()->getConfigValueContainer(#varname); \ 104 if (container##varname##modify##modifier) \ 105 { \ 106 container##varname##modify##modifier->modifier(__VA_ARGS__); \ 107 container##varname##modify##modifier->getValue(&varname, this); \ 108 } \ 109 else \ 110 { \ 111 COUT(2) << "Warning: Couln't modify config-value '" << #varname << "', corresponding container doesn't exist." << std::endl; \ 112 } 163 ModifyConfigValueGeneric(this, &varname, #varname, modifier, __VA_ARGS__) 113 164 114 165 #endif /* _ConfigValueIncludes_H__ */ -
code/branches/presentation2/src/libraries/core/Core.cc
r6183 r6243 183 183 const unsigned int defaultLevelLogFile = 4; 184 184 #endif 185 SetConfigValueGeneric(ConfigFileType::Settings, softDebugLevelLogFile_, "softDebugLevelLogFile", "OutputHandler", defaultLevelLogFile)185 setConfigValueGeneric(this, &this->softDebugLevelLogFile_, ConfigFileType::Settings, "OutputHandler", "softDebugLevelLogFile", defaultLevelLogFile) 186 186 .description("The maximum level of debug output shown in the log file"); 187 187 OutputHandler::getInstance().setSoftDebugLevel(OutputHandler::logFileOutputListenerName_s, this->softDebugLevelLogFile_); -
code/branches/presentation2/src/libraries/core/Shell.cc
r6190 r6243 98 98 SetConfigValue(historyOffset_, 0) 99 99 .callback(this, &Shell::commandHistoryOffsetChanged); 100 SetConfigValueVectorGeneric(commandHistoryConfigFileType_, commandHistory_, std::vector<std::string>());100 setConfigValueGeneric(this, &commandHistory_, commandHistoryConfigFileType_, "Shell", "commandHistory_", std::vector<std::string>()); 101 101 102 102 #ifdef ORXONOX_RELEASE … … 105 105 const unsigned int defaultLevel = 3; 106 106 #endif 107 SetConfigValueGeneric(ConfigFileType::Settings, softDebugLevel_, "softDebugLevel" + this->consoleName_, "OutputHandler", defaultLevel)107 setConfigValueGeneric(this, &softDebugLevel_, ConfigFileType::Settings, "OutputHandler", "softDebugLevel" + this->consoleName_, defaultLevel) 108 108 .description("The maximal level of debug output shown in the Shell"); 109 109 this->setSoftDebugLevel(this->softDebugLevel_); -
code/branches/presentation2/src/orxonox/gametypes/TeamDeathmatch.cc
r5929 r6243 61 61 static std::vector<ColourValue> defaultcolours(colours, colours + sizeof(colours) / sizeof(ColourValue)); 62 62 63 SetConfigValue Vector(teamcolours_, defaultcolours);63 SetConfigValue(teamcolours_, defaultcolours); 64 64 } 65 65 -
code/branches/presentation2/src/orxonox/infos/Bot.cc
r5781 r6243 94 94 static std::vector<std::string> defaultnames(names, names + sizeof(names) / sizeof(std::string)); 95 95 96 SetConfigValue Vector(names_, defaultnames);96 SetConfigValue(names_, defaultnames); 97 97 } 98 98 }
Note: See TracChangeset
for help on using the changeset viewer.