Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/core7/src/libraries/core/class/IdentifierManager.h @ 10483

Last change on this file since 10483 was 10483, checked in by landauf, 9 years ago

avoid dependency on IdentifierManager for as long as possible

  • Property svn:eol-style set to native
File size: 4.9 KB
RevLine 
[790]1/*
2 *   ORXONOX - the hottest 3D action shooter ever to exist
[1505]3 *                    > www.orxonox.net <
[790]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
[871]29/**
[2171]30    @file
[7401]31    @ingroup Class Identifier
[790]32*/
33
[9564]34#ifndef _IdentifierManager_H__
35#define _IdentifierManager_H__
[1052]36
[9563]37#include "core/CorePrereqs.h"
[1062]38
[3196]39#include <map>
[10399]40#include <set>
[10372]41#include <list>
[790]42#include <string>
43
44namespace orxonox
45{
[9564]46    class _CoreExport IdentifierManager
47    {
[9667]48        public:
49            static IdentifierManager& getInstance();
[790]50
[10395]51            void addIdentifier(Identifier* identifier);
[10481]52            void removeIdentifier(Identifier* identifier);
[9667]53
54
[5929]55            /////////////////////////////
56            ////// Class Hierarchy //////
57            /////////////////////////////
[9667]58            void createClassHierarchy();
[10361]59            void verifyClassHierarchy();
[10403]60            void destroyClassHierarchy();
[790]61
[9667]62            void createdObject(Identifiable* identifiable);
63
[7401]64            /// Returns true, if a branch of the class-hierarchy is being created, causing all new objects to store their parents.
[9667]65            inline bool isCreatingHierarchy()
[9564]66                { return (hierarchyCreatingCounter_s > 0); }
[790]67
[1052]68
[5929]69            //////////////////////////
70            ///// Identifier Map /////
71            //////////////////////////
[9667]72            Identifier* getIdentifierByString(const std::string& name);
73            Identifier* getIdentifierByLowercaseString(const std::string& name);
74            Identifier* getIdentifierByID(uint32_t id);
[10399]75            Identifier* getIdentifierByTypeInfo(const std::type_info& typeInfo);
[1052]76
[9667]77            void clearNetworkIDs();
[5929]78
[7401]79            /// Returns the map that stores all Identifiers with their names.
[9667]80            inline const std::map<std::string, Identifier*>& getIdentifierByStringMap()
81                { return this->identifierByString_; }
[7401]82            /// Returns the map that stores all Identifiers with their names in lowercase.
[9667]83            inline const std::map<std::string, Identifier*>& getIdentifierByLowercaseStringMap()
84                { return this->identifierByLowercaseString_; }
[7401]85            /// Returns the map that stores all Identifiers with their IDs.
[9667]86            inline const std::map<uint32_t, Identifier*>& getIdentifierByNetworkIdMap()
87                { return this->identifierByNetworkId_; }
[1052]88
[10403]89            void destroyAllIdentifiers();
90
[9667]91        private:
92            IdentifierManager();
93            IdentifierManager(const IdentifierManager&);
94            ~IdentifierManager() {}
[1747]95
[7401]96            /// Increases the hierarchyCreatingCounter_s variable, causing all new objects to store their parents.
[9667]97            inline void startCreatingHierarchy()
[9564]98                { hierarchyCreatingCounter_s++; }
[7401]99            /// Decreases the hierarchyCreatingCounter_s variable, causing the objects to stop storing their parents.
[9667]100            inline void stopCreatingHierarchy()
[9564]101                { hierarchyCreatingCounter_s--; }
[790]102
[10399]103            std::set<Identifier*> identifiers_;                              //!< All identifiers. This is only used internally.
[9667]104            std::map<std::string, Identifier*> identifierByString_;          //!< Map that stores all Identifiers with their names.
105            std::map<std::string, Identifier*> identifierByLowercaseString_; //!< Map that stores all Identifiers with their names in lowercase.
106            std::map<uint32_t, Identifier*> identifierByNetworkId_;          //!< Returns the map that stores all Identifiers with their network IDs.
107
108            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)
[10366]109
110            /// Used while creating the object hierarchy to keep track of the identifiers of a newly created object (and all other objects that get created as
111            /// a consequence of this, e.g. nested member objects).
[10372]112            std::map<Identifiable*, std::list<const Identifier*> > identifierTraceOfNewObject_;
[10370]113            Identifier* recordTraceForIdentifier_; //!< The identifier for which we want to record the trace of identifiers during object creation. If null, no trace is recorded.
[790]114    };
115}
116
[9564]117#endif /* _IdentifierManager_H__ */
Note: See TracBrowser for help on using the repository browser.