Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/core6/src/libraries/core/CoreIncludes.h @ 9644

Last change on this file since 9644 was 9644, checked in by landauf, 11 years ago

small refactoring

  • Property svn:eol-style set to native
File size: 7.2 KB
RevLine 
[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/**
[9638]30    @defgroup Factory RegisterObject() and RegisterClass()
[7401]31    @ingroup Object
32*/
33
34/**
[2171]35    @file
[8858]36    @ingroup Object Factory Class Identifier
[9638]37    @brief Defines several very important macros used to register objects, register classes, and to work with identifiers.
[1505]38
[7401]39    Every class needs the @c RegisterObject(class) macro in its constructor. If the class is an interface
40    or the @c BaseObject itself, it needs the macro @c RegisterRootObject(class) instead.
[1505]41
[9638]42    To register @a class in the class-hierarchy, use the @c RegisterClass(class) macro outside of the class implementation,
43    so it gets executed statically before @c main(). If you don't want @a class to be loadable, but still register it, call
44    @c RegisterUnloadableClass(class).
[7401]45
46    Example:
47    @code
[9638]48    // register MyClass
49    RegisterClass(MyClass);
[7401]50
51    // Constructor:
52    MyClass::MyClass()
53    {
54        // Register the object in the Identifier of MyClass
55        RegisterObject(MyClass);
56    }
57    @endcode
58
59    This file also defines a number of other useful macros, like, for example, @c Class(class) which
60    returns the @ref orxonox::Identifier "Identifier" of @a class, or @c ClassByString("class") which
61    returns the Identifier of a class with name @a "class".
62
63    Example:
64    @code
65    // Assigns the Identifier of MyClass
66    Identifier* identifier = Class(MyClass);
67    @endcode
68    @code
69    // Assigns the Identifier of a class named "MyClass"
70    Identifier* identifier = ClassByString("MyClass");
71    @endcode
[1505]72*/
73
74#ifndef _CoreIncludes_H__
75#define _CoreIncludes_H__
76
77#include "CorePrereqs.h"
78
[8858]79#include "util/Output.h"
[9564]80#include "class/IdentifierManager.h"
[9557]81#include "object/ClassFactory.h"
82#include "object/ObjectList.h"
[1505]83
[9638]84// resolve macro conflict on windows
85#if defined(ORXONOX_PLATFORM_WINDOWS)
86#   include <windows.h>
87#   undef RegisterClass
88#endif
[1505]89
[9638]90
[1505]91/**
[7401]92    @brief Intern macro, containing the common parts of @c RegisterObject and @c RegisterRootObject.
[1505]93    @param ClassName The name of the class
[7401]94    @param bRootClass True if the class is directly derived from orxonox::OrxonoxClass
[1505]95*/
96#define InternRegisterObject(ClassName, bRootClass) \
[9644]97    if (ClassIdentifier<ClassName>::getIdentifier(#ClassName)->initializeObject(this, #ClassName, bRootClass)) \
[1747]98        return; \
[3325]99    else \
100        ((void)0)
[1505]101
102/**
[9638]103    @brief Registers a newly created object in the framework. Has to be called at the beginning of the constructor of @a ClassName.
[1505]104    @param ClassName The name of the class
105*/
106#define RegisterObject(ClassName) \
107    InternRegisterObject(ClassName, false)
108
109/**
[9638]110    @brief Registers a newly created object in the framework. Has to be called at the beginning of the constructor of @a ClassName.
[1505]111    @param ClassName The name of the class
[7401]112
113    In contrast to RegisterObject, this is used for classes that inherit directly from
114    orxonox::OrxonoxClass, namely all interfaces and orxonox::BaseObject.
[1505]115*/
116#define RegisterRootObject(ClassName) \
[3325]117    InternRegisterObject(ClassName, true)
[1505]118
119/**
[9638]120    @brief Registers the class in the framework.
[1856]121    @param ClassName The name of the class
122*/
[9638]123#define RegisterClass(ClassName) \
124    RegisterClassWithFactory(ClassName, new orxonox::ClassFactoryWithContext<ClassName>(), true)
[1856]125
126/**
[9638]127    @brief Registers the class in the framework (for classes which should not be loaded through XML).
[5781]128    @param ClassName The name of the class
129*/
[9638]130#define RegisterUnloadableClass(ClassName) \
131    RegisterClassWithFactory(ClassName, new orxonox::ClassFactoryWithContext<ClassName>(), false)
[5781]132
133/**
[9638]134    @brief Registers the class in the framework with a given Factory.
[9635]135    @param ClassName The name of the class
136*/
[9638]137#define RegisterClassWithFactory(ClassName, FactoryInstance, bLoadable) \
[9637]138    Identifier* _##ClassName##Identifier = orxonox::registerClass<ClassName>(#ClassName, FactoryInstance, bLoadable)
[9635]139
140/**
[1505]141    @brief Returns the Identifier of the given class.
142    @param ClassName The name of the class
143*/
[1789]144#define Class(ClassName) \
[2087]145    orxonox::ClassIdentifier<ClassName>::getIdentifier()
[1505]146
147
[3325]148namespace orxonox
149{
150    /**
[9637]151     * @brief Overload of registerClass() which determines T implicitly by the template argument of the ClassFactory.
152     */
153    template <class T>
154    inline Identifier* registerClass(const std::string& name, ClassFactory<T>* factory, bool bLoadable = true)
155    {
156        return registerClass<T>(name, static_cast<Factory*>(factory), bLoadable);
157    }
158
159    /**
160     * @brief Registers a class in the framework.
161     * @param name The name of the class
162     * @param factory The factory which is able to create new instances of this class
163     * @param bLoadable Whether the class is allowed to be loaded through XML
164     */
165    template <class T>
166    inline Identifier* registerClass(const std::string& name, Factory* factory, bool bLoadable = true)
167    {
168        orxout(verbose, context::misc::factory) << "Create entry for " << name << " in Factory." << endl;
169        Identifier* identifier = ClassIdentifier<T>::getIdentifier(name);
170        identifier->setFactory(factory);
171        identifier->setLoadable(bLoadable);
172        return identifier;
173    }
174
175    /**
[5929]176        @brief Returns the Identifier with a given name.
[7401]177        @param name The name of the class
[3325]178    */
179    inline Identifier* ClassByString(const std::string& name)
180    {
[9640]181        return IdentifierManager::getInstance().getIdentifierByString(name);
[3325]182    }
[1505]183
[3325]184    /**
[5929]185        @brief Returns the Identifier with a given lowercase name.
[7401]186        @param name The lowercase name of the class
[5929]187    */
188    inline Identifier* ClassByLowercaseString(const std::string& name)
189    {
[9640]190        return IdentifierManager::getInstance().getIdentifierByLowercaseString(name);
[5929]191    }
192
193    /**
194        @brief Returns the Identifier with a given network ID.
[7401]195        @param id The network ID of the class
[3325]196    */
197    inline Identifier* ClassByID(uint32_t id)
198    {
[9640]199        return IdentifierManager::getInstance().getIdentifierByID(id);
[3325]200    }
[6423]201
202    /**
203        @brief Returns the Identifier with a given 'this' pointer.
[9567]204        @note This of course only works with Identifiables.
[6423]205              The only use is in conjunction with macros that don't know the class type.
[9567]206        @param object Pointer to an Identifiable
[6423]207    */
208    template <class T>
[8706]209    inline Identifier* ClassByObjectType(const T*)
[6423]210    {
211        return ClassIdentifier<T>::getIdentifier();
212    }
[3325]213}
214
[1505]215#endif /* _CoreIncludes_H__ */
Note: See TracBrowser for help on using the repository browser.