Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/core/src/orxonox/core/IdentifierDistributor.cc @ 809

Last change on this file since 809 was 809, checked in by landauf, 16 years ago

commented and documented ClassManager, IdentifierDistributor and ClassTreeMask

File size: 2.2 KB
Line 
1/*
2 *   ORXONOX - the hottest 3D action shooter ever to exist
3 *
4 *
5 *   License notice:
6 *
7 *   This program is free software; you can redistribute it and/or
8 *   modify it under the terms of the GNU General Public License
9 *   as published by the Free Software Foundation; either version 2
10 *   of the License, or (at your option) any later version.
11 *
12 *   This program is distributed in the hope that it will be useful,
13 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
14 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 *   GNU General Public License for more details.
16 *
17 *   You should have received a copy of the GNU General Public License
18 *   along with this program; if not, write to the Free Software
19 *   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20 *
21 *   Author:
22 *      Fabian 'x3n' Landau
23 *   Co-authors:
24 *      ...
25 *
26 */
27
28/*!
29    @file IdentifierDistributor.cc
30    @brief Implementation of the IdentifierDistributor class.
31*/
32
33#include "IdentifierDistributor.h"
34#include "Identifier.h"
35
36namespace orxonox
37{
38    /**
39        @brief Returns the only instance of a ClassIdentifier for a given class.
40        @param name The name of the class
41        @param proposal A proposal for the ClassIdentifier in case there is no entry yet.
42        @return The unique ClassIdentifier
43    */
44    Identifier* IdentifierDistributor::getIdentifier(const std::string& name, Identifier* proposal)
45    {
46        // Create the only instance of the IdentifierDistributor-singleton
47        static IdentifierDistributor theOneAndOnlyInstance = IdentifierDistributor();
48
49        // Look for an entry in the map
50        std::map<std::string, Identifier*>::const_iterator it = theOneAndOnlyInstance.identifiers_.find(name);
51        if (it != theOneAndOnlyInstance.identifiers_.end())
52        {
53            // There is already an entry: return it
54            return (*it).second;
55        }
56        else
57        {
58            // There is no entry: put the proposal into the map and return it
59            theOneAndOnlyInstance.identifiers_[name] = proposal;
60            return proposal;
61        }
62    }
63}
Note: See TracBrowser for help on using the repository browser.