Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/core5/src/libraries/core/Identifier.h @ 5778

Last change on this file since 5778 was 5778, checked in by landauf, 15 years ago

Removed the Factory class.
Moved the networkID↔Identifier map from Factory to Identifier.
Replaced the name↔Identifier map from Factory with the already existing Identifier map in Identifier. This map additionally contains Identifiers without Factory. You can separate them with the new function identifier→hasFactory().

  • Property svn:eol-style set to native
File size: 30.8 KB
Line 
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
31    @brief Definition of the Identifier class, definition and implementation of the ClassIdentifier class.
32
33    The Identifier contains all needed information about the class it belongs to:
34     - the name
35     - a list with all objects
36     - parents and children
37     - the factory (if available)
38     - the networkID that can be synchronised with the server
39     - all configurable variables (if available)
40
41    Every object has a pointer to the Identifier of its class. This allows the use isA(...),
42    isExactlyA(...), isChildOf(...) and isParentOf(...).
43
44    To create the class-hierarchy, the Identifier has some intern functions and variables.
45
46    Every Identifier is in fact a ClassIdentifier, but they are derived from Identifier.
47*/
48
49#ifndef _Identifier_H__
50#define _Identifier_H__
51
52#include "CorePrereqs.h"
53
54#include <cassert>
55#include <map>
56#include <set>
57#include <string>
58#include <typeinfo>
59
60#include "util/Debug.h"
61#include "util/TypeTraits.h"
62#include "MetaObjectList.h"
63#include "ObjectList.h"
64#include "ObjectListBase.h"
65#include "Super.h"
66
67namespace orxonox
68{
69    // ###############################
70    // ###       Identifier        ###
71    // ###############################
72    //! The Identifier is used to identify the class of an object and to store information about the class.
73    /**
74        The Identifier contains all needed information about the class it belongs to:
75         - the name
76         - a list with all objects
77         - parents and children
78         - the factory (if available)
79         - the networkID that can be synchronised with the server
80         - all configurable variables (if available)
81
82        Every object has a pointer to the Identifier of its class. This allows the use isA(...),
83        isExactlyA(...), isChildOf(...) and isParentOf(...).
84
85        You can't directly create an Identifier, it's just the base-class for ClassIdentifier.
86    */
87    class _CoreExport Identifier
88    {
89        public:
90            /** @brief Returns the name of the class the Identifier belongs to. @return The name */
91            inline const std::string& getName() const { return this->name_; }
92            void setName(const std::string& name);
93
94            /** @brief Returns the network ID to identify a class through the network. @return the network ID */
95            inline const uint32_t getNetworkID() const { return this->networkID_; }
96            void setNetworkID(uint32_t id);
97
98            /** @brief Returns the unique ID of the class */
99            FORCEINLINE unsigned int getClassID() const { return this->classID_; }
100
101            /** @brief Returns the list of all existing objects of this class. @return The list */
102            inline ObjectListBase* getObjects() const { return this->objects_; }
103
104            /** @brief Sets the Factory. @param factory The factory to assign */
105            inline void addFactory(BaseFactory* factory) { this->factory_ = factory; }
106            /** @brief Returns true if the Identifier has a Factory. */
107            inline bool hasFactory() const { return (this->factory_ != 0); }
108
109            BaseObject* fabricate(BaseObject* creator);
110
111            /** @brief Returns true if the class can be loaded through XML. */
112            inline bool isLoadable() const { return this->bLoadable_; }
113            /** @brief Set the class to be loadable through XML or not. */
114            inline void setLoadable(bool bLoadable) { this->bLoadable_ = bLoadable; }
115
116            bool isA(const Identifier* identifier) const;
117            bool isExactlyA(const Identifier* identifier) const;
118            bool isChildOf(const Identifier* identifier) const;
119            bool isDirectChildOf(const Identifier* identifier) const;
120            bool isParentOf(const Identifier* identifier) const;
121            bool isDirectParentOf(const Identifier* identifier) const;
122
123
124            /////////////////////////////
125            ////// Class Hierarchy //////
126            /////////////////////////////
127            static void createClassHierarchy();
128
129            /** @brief Returns true, if a branch of the class-hierarchy is being created, causing all new objects to store their parents. @return The status of the class-hierarchy creation */
130            inline static bool isCreatingHierarchy() { return (hierarchyCreatingCounter_s > 0); }
131
132            /** @brief Returns the parents of the class the Identifier belongs to. @return The list of all parents */
133            inline const std::set<const Identifier*>& getParents() const { return this->parents_; }
134            /** @brief Returns the begin-iterator of the parents-list. @return The begin-iterator */
135            inline std::set<const Identifier*>::const_iterator getParentsBegin() const { return this->parents_.begin(); }
136            /** @brief Returns the end-iterator of the parents-list. @return The end-iterator */
137            inline std::set<const Identifier*>::const_iterator getParentsEnd() const { return this->parents_.end(); }
138
139            /** @brief Returns the children of the class the Identifier belongs to. @return The list of all children */
140            inline const std::set<const Identifier*>& getChildren() const { return (*this->children_); }
141            /** @brief Returns the begin-iterator of the children-list. @return The begin-iterator */
142            inline std::set<const Identifier*>::const_iterator getChildrenBegin() const { return this->children_->begin(); }
143            /** @brief Returns the end-iterator of the children-list. @return The end-iterator */
144            inline std::set<const Identifier*>::const_iterator getChildrenEnd() const { return this->children_->end(); }
145
146            /** @brief Returns the direct parents of the class the Identifier belongs to. @return The list of all direct parents */
147            inline const std::set<const Identifier*>& getDirectParents() const { return this->directParents_; }
148            /** @brief Returns the begin-iterator of the direct-parents-list. @return The begin-iterator */
149            inline std::set<const Identifier*>::const_iterator getDirectParentsBegin() const { return this->directParents_.begin(); }
150            /** @brief Returns the end-iterator of the direct-parents-list. @return The end-iterator */
151            inline std::set<const Identifier*>::const_iterator getDirectParentsEnd() const { return this->directParents_.end(); }
152
153            /** @brief Returns the direct children the class the Identifier belongs to. @return The list of all direct children */
154            inline const std::set<const Identifier*>& getDirectChildren() const { return (*this->directChildren_); }
155            /** @brief Returns the begin-iterator of the direct-children-list. @return The begin-iterator */
156            inline std::set<const Identifier*>::const_iterator getDirectChildrenBegin() const { return this->directChildren_->begin(); }
157            /** @brief Returns the end-iterator of the direct-children-list. @return The end-iterator */
158            inline std::set<const Identifier*>::const_iterator getDirectChildrenEnd() const { return this->directChildren_->end(); }
159
160
161            //////////////////////////
162            ///// Identifier Map /////
163            //////////////////////////
164            static void destroyAllIdentifiers();
165
166            static Identifier* getIdentifierByString(const std::string& name);
167            static Identifier* getIdentifierByID(uint32_t id);
168
169            static void clearNetworkIDs();
170
171            /** @brief Returns the map that stores all Identifiers with their names. @return The map */
172            static inline const std::map<std::string, Identifier*>& getStringIdentifierMap() { return Identifier::getStringIdentifierMapIntern(); }
173            /** @brief Returns a const_iterator to the beginning of the map that stores all Identifiers with their names. @return The const_iterator */
174            static inline std::map<std::string, Identifier*>::const_iterator getStringIdentifierMapBegin() { return Identifier::getStringIdentifierMap().begin(); }
175            /** @brief Returns a const_iterator to the end of the map that stores all Identifiers with their names. @return The const_iterator */
176            static inline std::map<std::string, Identifier*>::const_iterator getStringIdentifierMapEnd() { return Identifier::getStringIdentifierMap().end(); }
177
178            /** @brief Returns the map that stores all Identifiers with their names in lowercase. @return The map */
179            static inline const std::map<std::string, Identifier*>& getLowercaseStringIdentifierMap() { return Identifier::getLowercaseStringIdentifierMapIntern(); }
180            /** @brief Returns a const_iterator to the beginning of the map that stores all Identifiers with their names in lowercase. @return The const_iterator */
181            static inline std::map<std::string, Identifier*>::const_iterator getLowercaseStringIdentifierMapBegin() { return Identifier::getLowercaseStringIdentifierMap().begin(); }
182            /** @brief Returns a const_iterator to the end of the map that stores all Identifiers with their names in lowercase. @return The const_iterator */
183            static inline std::map<std::string, Identifier*>::const_iterator getLowercaseStringIdentifierMapEnd() { return Identifier::getLowercaseStringIdentifierMap().end(); }
184
185            /** @brief Returns the map that stores all Identifiers with their IDs. @return The map */
186            static inline const std::map<uint32_t, Identifier*>& getIDIdentifierMap() { return Identifier::getIDIdentifierMapIntern(); }
187            /** @brief Returns a const_iterator to the beginning of the map that stores all Identifiers with their IDs. @return The const_iterator */
188            static inline std::map<uint32_t, Identifier*>::const_iterator getIDIdentifierMapBegin() { return Identifier::getIDIdentifierMap().begin(); }
189            /** @brief Returns a const_iterator to the end of the map that stores all Identifiers with their IDs. @return The const_iterator */
190            static inline std::map<uint32_t, Identifier*>::const_iterator getIDIdentifierMapEnd() { return Identifier::getIDIdentifierMap().end(); }
191
192
193            /////////////////////////
194            ///// Config Values /////
195            /////////////////////////
196            virtual void updateConfigValues(bool updateChildren = true) const = 0;
197
198            /** @brief Returns true if this class has at least one config value. @return True if this class has at least one config value */
199            inline bool hasConfigValues() const { return this->bHasConfigValues_; }
200
201            /** @brief Returns the map that stores all config values. @return The const_iterator */
202            inline const std::map<std::string, ConfigValueContainer*>& getConfigValueMap() const { return this->configValues_; }
203            /** @brief Returns a const_iterator to the beginning of the map that stores all config values. @return The const_iterator */
204            inline std::map<std::string, ConfigValueContainer*>::const_iterator getConfigValueMapBegin() const { return this->configValues_.begin(); }
205            /** @brief Returns a const_iterator to the end of the map that stores all config values. @return The const_iterator */
206            inline std::map<std::string, ConfigValueContainer*>::const_iterator getConfigValueMapEnd() const { return this->configValues_.end(); }
207
208            /** @brief Returns the map that stores all config values with their names in lowercase. @return The const_iterator */
209            inline const std::map<std::string, ConfigValueContainer*>& getLowercaseConfigValueMap() const { return this->configValues_LC_; }
210            /** @brief Returns a const_iterator to the beginning of the map that stores all config values with their names in lowercase. @return The const_iterator */
211            inline std::map<std::string, ConfigValueContainer*>::const_iterator getLowercaseConfigValueMapBegin() const { return this->configValues_LC_.begin(); }
212            /** @brief Returns a const_iterator to the end of the map that stores all config values with their names in lowercase. @return The const_iterator */
213            inline std::map<std::string, ConfigValueContainer*>::const_iterator getLowercaseConfigValueMapEnd() const { return this->configValues_LC_.end(); }
214
215            void addConfigValueContainer(const std::string& varname, ConfigValueContainer* container);
216            ConfigValueContainer* getConfigValueContainer(const std::string& varname);
217            ConfigValueContainer* getLowercaseConfigValueContainer(const std::string& varname);
218
219
220            ////////////////////////////
221            ///// Console Commands /////
222            ////////////////////////////
223            /** @brief Returns true if this class has at least one console command. @return True if this class has at least one console command */
224            inline bool hasConsoleCommands() const { return this->bHasConsoleCommands_; }
225
226            /** @brief Returns the map that stores all console commands. @return The const_iterator */
227            inline const std::map<std::string, ConsoleCommand*>& getConsoleCommandMap() const { return this->consoleCommands_; }
228            /** @brief Returns a const_iterator to the beginning of the map that stores all console commands. @return The const_iterator */
229            inline std::map<std::string, ConsoleCommand*>::const_iterator getConsoleCommandMapBegin() const { return this->consoleCommands_.begin(); }
230            /** @brief Returns a const_iterator to the end of the map that stores all console commands. @return The const_iterator */
231            inline std::map<std::string, ConsoleCommand*>::const_iterator getConsoleCommandMapEnd() const { return this->consoleCommands_.end(); }
232
233            /** @brief Returns the map that stores all console commands with their names in lowercase. @return The const_iterator */
234            inline const std::map<std::string, ConsoleCommand*>& getLowercaseConsoleCommandMap() const { return this->consoleCommands_LC_; }
235            /** @brief Returns a const_iterator to the beginning of the map that stores all console commands with their names in lowercase. @return The const_iterator */
236            inline std::map<std::string, ConsoleCommand*>::const_iterator getLowercaseConsoleCommandMapBegin() const { return this->consoleCommands_LC_.begin(); }
237            /** @brief Returns a const_iterator to the end of the map that stores all console commands with their names in lowercase. @return The const_iterator */
238            inline std::map<std::string, ConsoleCommand*>::const_iterator getLowercaseConsoleCommandMapEnd() const { return this->consoleCommands_LC_.end(); }
239
240            ConsoleCommand& addConsoleCommand(ConsoleCommand* command, bool bCreateShortcut);
241            ConsoleCommand* getConsoleCommand(const std::string& name) const;
242            ConsoleCommand* getLowercaseConsoleCommand(const std::string& name) const;
243
244
245            ///////////////////
246            ///// XMLPort /////
247            ///////////////////
248            /** @brief Returns the map that stores all XMLPort params. @return The const_iterator */
249            inline const std::map<std::string, XMLPortParamContainer*>& getXMLPortParamMap() const { return this->xmlportParamContainers_; }
250            /** @brief Returns a const_iterator to the beginning of the map that stores all XMLPort params. @return The const_iterator */
251            inline std::map<std::string, XMLPortParamContainer*>::const_iterator getXMLPortParamMapBegin() const { return this->xmlportParamContainers_.begin(); }
252            /** @brief Returns a const_iterator to the end of the map that stores all XMLPort params. @return The const_iterator */
253            inline std::map<std::string, XMLPortParamContainer*>::const_iterator getXMLPortParamMapEnd() const { return this->xmlportParamContainers_.end(); }
254
255            /** @brief Returns the map that stores all XMLPort objects. @return The const_iterator */
256            inline const std::map<std::string, XMLPortObjectContainer*>& getXMLPortObjectMap() const { return this->xmlportObjectContainers_; }
257            /** @brief Returns a const_iterator to the beginning of the map that stores all XMLPort objects. @return The const_iterator */
258            inline std::map<std::string, XMLPortObjectContainer*>::const_iterator getXMLPortObjectMapBegin() const { return this->xmlportObjectContainers_.begin(); }
259            /** @brief Returns a const_iterator to the end of the map that stores all XMLPort objects. @return The const_iterator */
260            inline std::map<std::string, XMLPortObjectContainer*>::const_iterator getXMLPortObjectMapEnd() const { return this->xmlportObjectContainers_.end(); }
261
262            /** @brief Returns the map that stores all XMLPort events. @return The const_iterator */
263            inline const std::map<std::string, XMLPortObjectContainer*>& getXMLPortEventMap() const { return this->xmlportEventContainers_; }
264            /** @brief Returns a const_iterator to the beginning of the map that stores all XMLPort events. @return The const_iterator */
265            inline std::map<std::string, XMLPortObjectContainer*>::const_iterator getXMLPortEventMapBegin() const { return this->xmlportEventContainers_.begin(); }
266            /** @brief Returns a const_iterator to the end of the map that stores all XMLPort events. @return The const_iterator */
267            inline std::map<std::string, XMLPortObjectContainer*>::const_iterator getXMLPortEventMapEnd() const { return this->xmlportEventContainers_.end(); }
268
269            void addXMLPortParamContainer(const std::string& paramname, XMLPortParamContainer* container);
270            XMLPortParamContainer* getXMLPortParamContainer(const std::string& paramname);
271
272            void addXMLPortObjectContainer(const std::string& sectionname, XMLPortObjectContainer* container);
273            XMLPortObjectContainer* getXMLPortObjectContainer(const std::string& sectionname);
274
275            void addXMLPortEventContainer(const std::string& eventname, XMLPortObjectContainer* container);
276            XMLPortObjectContainer* getXMLPortEventContainer(const std::string& eventname);
277
278
279        protected:
280            Identifier();
281            Identifier(const Identifier& identifier); // don't copy
282            virtual ~Identifier();
283
284            static Identifier* getIdentifierSingleton(const std::string& name, Identifier* proposal);
285            virtual void createSuperFunctionCaller() const = 0;
286
287            void initializeClassHierarchy(std::set<const Identifier*>* parents, bool bRootClass);
288
289            /** @brief Returns the map that stores all Identifiers with their names. @return The map */
290            static std::map<std::string, Identifier*>& getStringIdentifierMapIntern();
291            /** @brief Returns the map that stores all Identifiers with their names in lowercase. @return The map */
292            static std::map<std::string, Identifier*>& getLowercaseStringIdentifierMapIntern();
293            /** @brief Returns the map that stores all Identifiers with their network IDs. @return The map */
294            static std::map<uint32_t, Identifier*>& getIDIdentifierMapIntern();
295
296            /** @brief Returns the children of the class the Identifier belongs to. @return The list of all children */
297            inline std::set<const Identifier*>& getChildrenIntern() const { return (*this->children_); }
298            /** @brief Returns the direct children of the class the Identifier belongs to. @return The list of all direct children */
299            inline std::set<const Identifier*>& getDirectChildrenIntern() const { return (*this->directChildren_); }
300
301            ObjectListBase* objects_;                                      //!< The list of all objects of this class
302
303        private:
304            /**
305                @brief Increases the hierarchyCreatingCounter_s variable, causing all new objects to store their parents.
306            */
307            inline static void startCreatingHierarchy()
308            {
309                hierarchyCreatingCounter_s++;
310                COUT(4) << "*** Identifier: Increased Hierarchy-Creating-Counter to " << hierarchyCreatingCounter_s << std::endl;
311            }
312
313            /**
314                @brief Decreases the hierarchyCreatingCounter_s variable, causing the objects to stop storing their parents.
315            */
316            inline static void stopCreatingHierarchy()
317            {
318                hierarchyCreatingCounter_s--;
319                COUT(4) << "*** Identifier: Decreased Hierarchy-Creating-Counter to " << hierarchyCreatingCounter_s << std::endl;
320            }
321
322            static std::map<std::string, Identifier*>& getTypeIDIdentifierMap();
323
324            void initialize(std::set<const Identifier*>* parents);
325
326            std::set<const Identifier*> parents_;                          //!< The parents of the class the Identifier belongs to
327            std::set<const Identifier*>* children_;                        //!< The children of the class the Identifier belongs to
328
329            std::set<const Identifier*> directParents_;                    //!< The direct parents of the class the Identifier belongs to
330            std::set<const Identifier*>* directChildren_;                  //!< The direct children of the class the Identifier belongs to
331
332            bool bCreatedOneObject_;                                       //!< True if at least one object of the given type was created (used to determine the need of storing the parents)
333            bool bSetName_;                                                //!< True if the name is set
334            bool bLoadable_;                                               //!< False = it's not permitted to load the object through XML
335            std::string name_;                                             //!< The name of the class the Identifier belongs to
336            BaseFactory* factory_;                                         //!< The Factory, able to create new objects of the given class (if available)
337            static int hierarchyCreatingCounter_s;                         //!< Bigger than zero if at least one Identifier stores its parents (its an int instead of a bool to avoid conflicts with multithreading)
338            uint32_t networkID_;                                           //!< The network ID to identify a class through the network
339            const unsigned int classID_;                                   //!< Uniquely identifies a class (might not be the same as the networkID_)
340            static unsigned int classIDCounter_s;                          //!< Static counter for the unique classIDs
341
342            bool bHasConfigValues_;                                        //!< True if this class has at least one assigned config value
343            std::map<std::string, ConfigValueContainer*> configValues_;    //!< A map to link the string of configurable variables with their ConfigValueContainer
344            std::map<std::string, ConfigValueContainer*> configValues_LC_; //!< A map to link the string of configurable variables with their ConfigValueContainer
345
346            bool bHasConsoleCommands_;                                     //!< True if this class has at least one assigned console command
347            std::map<std::string, ConsoleCommand*> consoleCommands_;       //!< All console commands of this class
348            std::map<std::string, ConsoleCommand*> consoleCommands_LC_;    //!< All console commands of this class with their names in lowercase
349
350            std::map<std::string, XMLPortParamContainer*> xmlportParamContainers_;     //!< All loadable parameters
351            std::map<std::string, XMLPortObjectContainer*> xmlportObjectContainers_;   //!< All attachable objects
352            std::map<std::string, XMLPortObjectContainer*> xmlportEventContainers_;    //!< All events
353    };
354
355    _CoreExport std::ostream& operator<<(std::ostream& out, const std::set<const Identifier*>& list);
356
357
358    // ###############################
359    // ###     ClassIdentifier     ###
360    // ###############################
361    //! The ClassIdentifier is derived from Identifier and holds all class-specific functions and variables the Identifier cannot have.
362    /**
363        ClassIdentifier is a Singleton, which means that only one object of a given type T exists.
364        This makes it possible to store information about a class, sharing them with all
365        objects of that class without defining static variables in every class.
366
367        To be really sure that not more than exactly one object exists (even with libraries),
368        ClassIdentifiers are stored in the Identifier Singleton.
369    */
370    template <class T>
371    class ClassIdentifier : public Identifier
372    {
373        #define SUPER_INTRUSIVE_DECLARATION_INCLUDE
374        #include "Super.h"
375
376        public:
377            static ClassIdentifier<T>* getIdentifier();
378            static ClassIdentifier<T>* getIdentifier(const std::string& name);
379
380            bool initialiseObject(T* object, const std::string& className, bool bRootClass);
381
382            void updateConfigValues(bool updateChildren = true) const;
383
384        private:
385            static void initialiseIdentifier();
386            ClassIdentifier(const ClassIdentifier<T>& identifier) {}    // don't copy
387            ClassIdentifier()
388            {
389                SuperFunctionInitialization<0, T>::initialize(this);
390            }
391            ~ClassIdentifier()
392            {
393                SuperFunctionDestruction<0, T>::destroy(this);
394            }
395
396            static ClassIdentifier<T>* classIdentifier_s;
397    };
398
399    template <class T>
400    ClassIdentifier<T>* ClassIdentifier<T>::classIdentifier_s = 0;
401
402    /**
403        @brief Returns the only instance of this class.
404        @return The unique Identifier
405    */
406    template <class T>
407    inline ClassIdentifier<T>* ClassIdentifier<T>::getIdentifier()
408    {
409        // check if the Identifier already exists
410        if (!ClassIdentifier<T>::classIdentifier_s)
411            ClassIdentifier<T>::initialiseIdentifier();
412
413        return ClassIdentifier<T>::classIdentifier_s;
414    }
415
416    /**
417        @brief Does the same as getIdentifier() but sets the name if this wasn't done yet.
418        @param name The name of this Identifier
419        @return The Identifier
420    */
421    template <class T>
422    inline ClassIdentifier<T>* ClassIdentifier<T>::getIdentifier(const std::string& name)
423    {
424        ClassIdentifier<T>* identifier = ClassIdentifier<T>::getIdentifier();
425        identifier->setName(name);
426        return identifier;
427    }
428
429    /**
430        @brief Assigns the static field for the identifier singleton.
431    */
432    template <class T>
433    void ClassIdentifier<T>::initialiseIdentifier()
434    {
435        // Get the name of the class
436        std::string name = typeid(T).name();
437
438        // create a new identifier anyway. Will be deleted in Identifier::getIdentifier if not used.
439        ClassIdentifier<T>* proposal = new ClassIdentifier<T>();
440
441        // Get the entry from the map
442        ClassIdentifier<T>::classIdentifier_s = (ClassIdentifier<T>*)Identifier::getIdentifierSingleton(name, proposal);
443
444        if (ClassIdentifier<T>::classIdentifier_s == proposal)
445        {
446            COUT(4) << "*** Identifier: Requested Identifier for " << name << " was not yet existing and got created." << std::endl;
447        }
448        else
449        {
450            COUT(4) << "*** Identifier: Requested Identifier for " << name << " was already existing and got assigned." << std::endl;
451        }
452    }
453
454    /**
455        @brief Adds an object of the given type to the ObjectList.
456        @param object The object to add
457    */
458    template <class T>
459    bool ClassIdentifier<T>::initialiseObject(T* object, const std::string& className, bool bRootClass)
460    {
461        if (bRootClass)
462            COUT(5) << "*** Register Root-Object: " << className << std::endl;
463        else
464            COUT(5) << "*** Register Object: " << className << std::endl;
465
466        object->identifier_ = this;
467        if (Identifier::isCreatingHierarchy())
468        {
469            if (bRootClass && !object->parents_)
470                object->parents_ = new std::set<const Identifier*>();
471
472            if (object->parents_)
473            {
474                this->initializeClassHierarchy(object->parents_, bRootClass);
475                object->parents_->insert(object->parents_->end(), this);
476            }
477
478            object->setConfigValues();
479            return true;
480        }
481        else
482        {
483            COUT(5) << "*** ClassIdentifier: Added object to " << this->getName() << "-list." << std::endl;
484            object->metaList_->add(this->objects_, this->objects_->add(new ObjectListElement<T>(object)));
485
486            // Add pointer of type T to the map in the OrxonoxClass instance that enables "dynamic_casts"
487            object->objectPointers_.push_back(std::make_pair(this->getClassID(), static_cast<void*>(object)));
488            return false;
489        }
490    }
491
492    /**
493        @brief Updates the config-values of all existing objects of this class by calling their setConfigValues() function.
494    */
495    template <class T>
496    void ClassIdentifier<T>::updateConfigValues(bool updateChildren) const
497    {
498        if (!this->hasConfigValues())
499            return;
500
501        for (ObjectListIterator<T> it = ObjectList<T>::begin(); it; ++it)
502            it->setConfigValues();
503
504        if (updateChildren)
505            for (std::set<const Identifier*>::const_iterator it = this->getChildrenBegin(); it != this->getChildrenEnd(); ++it)
506                (*it)->updateConfigValues(false);
507    }
508
509
510    // ###############################
511    // ###      orxonox_cast       ###
512    // ###############################
513    /**
514    @brief
515        Casts on object of type OrxonoxClass to any derived type that is
516        registered in the class hierarchy.
517    @return
518        Returns NULL if the cast is not possible
519    @note
520        In case of NULL return (and using MSVC), a dynamic_cast might still be possible if
521        a class forgot to register its objects.
522        Also note that the function is implemented differently for GCC/MSVC.
523    */
524    template <class T, class U>
525    FORCEINLINE T orxonox_cast(U source)
526    {
527#ifdef ORXONOX_COMPILER_MSVC
528        typedef Loki::TypeTraits<typename Loki::TypeTraits<T>::PointeeType>::NonConstType ClassType;
529        if (source != NULL)
530            return source->template getDerivedPointer<ClassType>(ClassIdentifier<ClassType>::getIdentifier()->getClassID());
531        else
532            return NULL;
533#else
534        return dynamic_cast<T>(source);
535#endif
536    }
537}
538
539#endif /* _Identifier_H__ */
Note: See TracBrowser for help on using the repository browser.