[1505] | 1 | /* |
---|
| 2 | * ORXONOX - the hottest 3D action shooter ever to exist |
---|
| 3 | * > www.orxonox.net < |
---|
| 4 | * |
---|
| 5 | * |
---|
| 6 | * License notice: |
---|
| 7 | * |
---|
| 8 | * This program is free software; you can redistribute it and/or |
---|
| 9 | * modify it under the terms of the GNU General Public License |
---|
| 10 | * as published by the Free Software Foundation; either version 2 |
---|
| 11 | * of the License, or (at your option) any later version. |
---|
| 12 | * |
---|
| 13 | * This program is distributed in the hope that it will be useful, |
---|
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 16 | * GNU General Public License for more details. |
---|
| 17 | * |
---|
| 18 | * You should have received a copy of the GNU General Public License |
---|
| 19 | * along with this program; if not, write to the Free Software |
---|
| 20 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
---|
| 21 | * |
---|
| 22 | * Author: |
---|
| 23 | * Fabian 'x3n' Landau |
---|
| 24 | * Co-authors: |
---|
| 25 | * ... |
---|
| 26 | * |
---|
| 27 | */ |
---|
| 28 | |
---|
| 29 | /** |
---|
| 30 | @file ConfigValueIncludes.h |
---|
| 31 | @brief Definition of macros for config-values. |
---|
| 32 | */ |
---|
| 33 | |
---|
| 34 | #ifndef _ConfigValueIncludes_H__ |
---|
| 35 | #define _ConfigValueIncludes_H__ |
---|
| 36 | |
---|
| 37 | #include "CorePrereqs.h" |
---|
| 38 | |
---|
| 39 | #include "Identifier.h" |
---|
| 40 | #include "ConfigValueContainer.h" |
---|
| 41 | #include "ConfigFileManager.h" |
---|
| 42 | |
---|
| 43 | |
---|
| 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 |
---|
| 48 | */ |
---|
[1747] | 49 | #define SetConfigValueGeneric(type, varname, defvalue) \ |
---|
| 50 | static orxonox::Identifier* identifier##varname = this->getIdentifier(); \ |
---|
| 51 | orxonox::ConfigValueContainer* container##varname = identifier##varname->getConfigValueContainer(#varname); \ |
---|
[1505] | 52 | if (!container##varname) \ |
---|
| 53 | { \ |
---|
[1887] | 54 | container##varname = new orxonox::ConfigValueContainer(CFT_Settings, identifier##varname, identifier##varname->getName(), #varname, defvalue, varname); \ |
---|
[1747] | 55 | identifier##varname->addConfigValueContainer(#varname, container##varname); \ |
---|
[1505] | 56 | } \ |
---|
[1747] | 57 | container##varname->getValue(&varname, this) |
---|
[1505] | 58 | |
---|
[1747] | 59 | #define SetConfigValue(varname, defvalue) SetConfigValueGeneric(CFT_Settings, varname, defvalue) |
---|
| 60 | #define SetKeybindingValue(varname, defvalue) SetConfigValueGeneric(CFT_Keybindings, varname, defvalue) |
---|
[1505] | 61 | |
---|
[1747] | 62 | |
---|
[1505] | 63 | /** |
---|
| 64 | @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). |
---|
| 65 | @param varname The name of the std::vector |
---|
| 66 | @param defvalue The default-value |
---|
| 67 | */ |
---|
[1747] | 68 | #define SetConfigValueVectorGeneric(type, varname, defvalue) \ |
---|
| 69 | static orxonox::Identifier* identifier##varname = this->getIdentifier(); \ |
---|
| 70 | orxonox::ConfigValueContainer* container##varname = identifier##varname->getConfigValueContainer(#varname); \ |
---|
[1505] | 71 | if (!container##varname) \ |
---|
| 72 | { \ |
---|
[1887] | 73 | container##varname = new orxonox::ConfigValueContainer(CFT_Settings, identifier##varname, identifier##varname->getName(), #varname, defvalue); \ |
---|
[1747] | 74 | identifier##varname->addConfigValueContainer(#varname, container##varname); \ |
---|
[1505] | 75 | } \ |
---|
[1747] | 76 | container##varname->getValue(&varname, this) |
---|
[1505] | 77 | |
---|
[1747] | 78 | #define SetConfigValueVector(varname, defvalue) SetConfigValueVectorGeneric(CFT_Settings, varname, defvalue) |
---|
| 79 | #define SetKeybindingValueVector(varname, defvalue) SetConfigValueVectorGeneric(CFT_Keybindings, varname, defvalue) |
---|
| 80 | |
---|
| 81 | |
---|
[1505] | 82 | /** |
---|
| 83 | @brief Sets the variable and the config-file entry back to the previously defined default-value. |
---|
| 84 | @param varname The name of the variable |
---|
| 85 | */ |
---|
| 86 | #define ResetConfigValue(varname) \ |
---|
| 87 | orxonox::ConfigValueContainer* container##varname##reset = this->getIdentifier()->getConfigValueContainer(#varname); \ |
---|
| 88 | if (container##varname##reset) \ |
---|
| 89 | { \ |
---|
| 90 | container##varname##reset->reset(); \ |
---|
[1747] | 91 | container##varname##reset->getValue(&varname, this); \ |
---|
[1505] | 92 | } \ |
---|
| 93 | else \ |
---|
| 94 | { \ |
---|
| 95 | COUT(2) << "Warning: Couldn't reset config-value '" << #varname << "', corresponding container doesn't exist." << std::endl; \ |
---|
| 96 | } |
---|
| 97 | |
---|
[1747] | 98 | |
---|
[1505] | 99 | /** |
---|
| 100 | @brief Modifies a config-value by using a modifier and some arguments. |
---|
| 101 | @param varname The name of the config-value |
---|
| 102 | @param modifier The name of the modifier: set, tset, add, remove, reset, update |
---|
| 103 | */ |
---|
| 104 | #define ModifyConfigValue(varname, modifier, ...) \ |
---|
| 105 | orxonox::ConfigValueContainer* container##varname##modify##modifier = this->getIdentifier()->getConfigValueContainer(#varname); \ |
---|
| 106 | if (container##varname##modify##modifier) \ |
---|
| 107 | { \ |
---|
| 108 | container##varname##modify##modifier->modifier(__VA_ARGS__); \ |
---|
[1747] | 109 | container##varname##modify##modifier->getValue(&varname, this); \ |
---|
[1505] | 110 | } \ |
---|
| 111 | else \ |
---|
| 112 | { \ |
---|
| 113 | COUT(2) << "Warning: Couln't modify config-value '" << #varname << "', corresponding container doesn't exist." << std::endl; \ |
---|
| 114 | } |
---|
| 115 | |
---|
| 116 | #endif /* _ConfigValueIncludes_H__ */ |
---|