/usr/include/OGRE/OgreStringInterface.h is in libogre-1.8-dev 1.8.0+dfsg1-7+b1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 | /*
-----------------------------------------------------------------------------
This source file is part of OGRE
(Object-oriented Graphics Rendering Engine)
For the latest info, see http://www.ogre3d.org/
Copyright (c) 2000-2012 Torus Knot Software Ltd
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.
-----------------------------------------------------------------------------
*/
#ifndef __StringInterface_H__
#define __StringInterface_H__
#include "OgrePrerequisites.h"
#include "OgreString.h"
#include "OgreCommon.h"
namespace Ogre {
/** \addtogroup Core
* @{
*/
/** \addtogroup General
* @{
*/
/// List of parameter types available
enum ParameterType
{
PT_BOOL,
PT_REAL,
PT_INT,
PT_UNSIGNED_INT,
PT_SHORT,
PT_UNSIGNED_SHORT,
PT_LONG,
PT_UNSIGNED_LONG,
PT_STRING,
PT_VECTOR3,
PT_MATRIX3,
PT_MATRIX4,
PT_QUATERNION,
PT_COLOURVALUE
};
/// Definition of a parameter supported by a StringInterface class, for introspection
class _OgreExport ParameterDef
{
public:
String name;
String description;
ParameterType paramType;
ParameterDef(const String& newName, const String& newDescription, ParameterType newType)
: name(newName), description(newDescription), paramType(newType) {}
};
typedef vector<ParameterDef>::type ParameterList;
/** Abstract class which is command object which gets/sets parameters.*/
class _OgreExport ParamCommand
{
public:
virtual String doGet(const void* target) const = 0;
virtual void doSet(void* target, const String& val) = 0;
virtual ~ParamCommand() { }
};
typedef map<String, ParamCommand* >::type ParamCommandMap;
/** Class to hold a dictionary of parameters for a single class. */
class _OgreExport ParamDictionary
{
friend class StringInterface;
protected:
/// Definitions of parameters
ParameterList mParamDefs;
/// Command objects to get/set
ParamCommandMap mParamCommands;
/** Retrieves the parameter command object for a named parameter. */
ParamCommand* getParamCommand(const String& name)
{
ParamCommandMap::iterator i = mParamCommands.find(name);
if (i != mParamCommands.end())
{
return i->second;
}
else
{
return 0;
}
}
const ParamCommand* getParamCommand(const String& name) const
{
ParamCommandMap::const_iterator i = mParamCommands.find(name);
if (i != mParamCommands.end())
{
return i->second;
}
else
{
return 0;
}
}
public:
ParamDictionary() {}
/** Method for adding a parameter definition for this class.
@param paramDef A ParameterDef object defining the parameter
@param paramCmd Pointer to a ParamCommand subclass to handle the getting / setting of this parameter.
NB this class will not destroy this on shutdown, please ensure you do
*/
void addParameter(const ParameterDef& paramDef, ParamCommand* paramCmd)
{
mParamDefs.push_back(paramDef);
mParamCommands[paramDef.name] = paramCmd;
}
/** Retrieves a list of parameters valid for this object.
@return
A reference to a static list of ParameterDef objects.
*/
const ParameterList& getParameters(void) const
{
return mParamDefs;
}
};
typedef map<String, ParamDictionary>::type ParamDictionaryMap;
/** Class defining the common interface which classes can use to
present a reflection-style, self-defining parameter set to callers.
@remarks
This class also holds a static map of class name to parameter dictionaries
for each subclass to use. See ParamDictionary for details.
@remarks
In order to use this class, each subclass must call createParamDictionary in their constructors
which will create a parameter dictionary for the class if it does not exist yet.
*/
class _OgreExport StringInterface
{
private:
OGRE_STATIC_MUTEX( msDictionaryMutex )
/// Dictionary of parameters
static ParamDictionaryMap msDictionary;
/// Class name for this instance to be used as a lookup (must be initialised by subclasses)
String mParamDictName;
ParamDictionary* mParamDict;
protected:
/** Internal method for creating a parameter dictionary for the class, if it does not already exist.
@remarks
This method will check to see if a parameter dictionary exist for this class yet,
and if not will create one. NB you must supply the name of the class (RTTI is not
used or performance).
@param
className the name of the class using the dictionary
@return
true if a new dictionary was created, false if it was already there
*/
bool createParamDictionary(const String& className)
{
OGRE_LOCK_MUTEX( msDictionaryMutex )
ParamDictionaryMap::iterator it = msDictionary.find(className);
if ( it == msDictionary.end() )
{
mParamDict = &msDictionary.insert( std::make_pair( className, ParamDictionary() ) ).first->second;
mParamDictName = className;
return true;
}
else
{
mParamDict = &it->second;
mParamDictName = className;
return false;
}
}
public:
StringInterface() : mParamDict(NULL) { }
/** Virtual destructor, see Effective C++ */
virtual ~StringInterface() {}
/** Retrieves the parameter dictionary for this class.
@remarks
Only valid to call this after createParamDictionary.
@return
Pointer to ParamDictionary shared by all instances of this class
which you can add parameters to, retrieve parameters etc.
*/
ParamDictionary* getParamDictionary(void)
{
return mParamDict;
}
const ParamDictionary* getParamDictionary(void) const
{
return mParamDict;
}
/** Retrieves a list of parameters valid for this object.
@return
A reference to a static list of ParameterDef objects.
*/
const ParameterList& getParameters(void) const;
/** Generic parameter setting method.
@remarks
Call this method with the name of a parameter and a string version of the value
to set. The implementor will convert the string to a native type internally.
If in doubt, check the parameter definition in the list returned from
StringInterface::getParameters.
@param
name The name of the parameter to set
@param
value String value. Must be in the right format for the type specified in the parameter definition.
See the StringConverter class for more information.
@return
true if set was successful, false otherwise (NB no exceptions thrown - tolerant method)
*/
virtual bool setParameter(const String& name, const String& value);
/** Generic multiple parameter setting method.
@remarks
Call this method with a list of name / value pairs
to set. The implementor will convert the string to a native type internally.
If in doubt, check the parameter definition in the list returned from
StringInterface::getParameters.
@param
paramList Name/value pair list
*/
virtual void setParameterList(const NameValuePairList& paramList);
/** Generic parameter retrieval method.
@remarks
Call this method with the name of a parameter to retrieve a string-format value of
the parameter in question. If in doubt, check the parameter definition in the
list returned from getParameters for the type of this parameter. If you
like you can use StringConverter to convert this string back into a native type.
@param
name The name of the parameter to get
@return
String value of parameter, blank if not found
*/
virtual String getParameter(const String& name) const
{
// Get dictionary
const ParamDictionary* dict = getParamDictionary();
if (dict)
{
// Look up command object
const ParamCommand* cmd = dict->getParamCommand(name);
if (cmd)
{
return cmd->doGet(this);
}
}
// Fallback
return "";
}
/** Method for copying this object's parameters to another object.
@remarks
This method takes the values of all the object's parameters and tries to set the
same values on the destination object. This provides a completely type independent
way to copy parameters to other objects. Note that because of the String manipulation
involved, this should not be regarded as an efficient process and should be saved for
times outside of the rendering loop.
@par
Any unrecognised parameters will be ignored as with setParameter method.
@param dest Pointer to object to have it's parameters set the same as this object.
*/
virtual void copyParametersTo(StringInterface* dest) const
{
// Get dictionary
const ParamDictionary* dict = getParamDictionary();
if (dict)
{
// Iterate through own parameters
ParameterList::const_iterator i;
for (i = dict->mParamDefs.begin();
i != dict->mParamDefs.end(); ++i)
{
dest->setParameter(i->name, getParameter(i->name));
}
}
}
/** Cleans up the static 'msDictionary' required to reset Ogre,
otherwise the containers are left with invalid pointers, which will lead to a crash
as soon as one of the ResourceManager implementers (e.g. MaterialManager) initializes.*/
static void cleanupDictionary () ;
};
/** @} */
/** @} */
}
#endif
|