[670] | 1 | /* |
---|
| 2 | * ORXONOX - the hottest 3D action shooter ever to exist |
---|
[1056] | 3 | * > www.orxonox.net < |
---|
[670] | 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 | |
---|
[497] | 29 | /** |
---|
| 30 | @file CoreIncludes.h |
---|
[1052] | 31 | @brief Definition of macros for Identifier and Factory. |
---|
[497] | 32 | |
---|
| 33 | Every class needs the RegisterObject(class) macro in its constructor. If the class is an interface |
---|
| 34 | or the BaseObject itself, it needs the macro RegisterRootObject(class) instead. |
---|
| 35 | |
---|
| 36 | To allow the object being created through the factory, use the CreateFactory(class) macro outside |
---|
| 37 | the of the class implementation, so it gets executed before main(). |
---|
| 38 | */ |
---|
| 39 | |
---|
[682] | 40 | #ifndef _CoreIncludes_H__ |
---|
| 41 | #define _CoreIncludes_H__ |
---|
| 42 | |
---|
[1062] | 43 | #include "CorePrereqs.h" |
---|
| 44 | |
---|
[497] | 45 | #include "Identifier.h" |
---|
[871] | 46 | #include "ClassManager.h" |
---|
[497] | 47 | #include "Factory.h" |
---|
| 48 | #include "ClassFactory.h" |
---|
| 49 | #include "Debug.h" |
---|
| 50 | |
---|
[871] | 51 | |
---|
[497] | 52 | /** |
---|
| 53 | @brief Intern macro, containing the common parts of RegisterObject and RegisterRootObject. |
---|
| 54 | @param ClassName The name of the class |
---|
| 55 | @param bRootClass True if the class is directly derived from OrxonoxClass |
---|
| 56 | */ |
---|
| 57 | #define InternRegisterObject(ClassName, bRootClass) \ |
---|
[871] | 58 | this->setIdentifier(orxonox::ClassManager<ClassName>::getIdentifier()->registerClass(this->getParents(), #ClassName, bRootClass)); \ |
---|
[497] | 59 | if (orxonox::Identifier::isCreatingHierarchy() && this->getParents()) \ |
---|
[871] | 60 | this->getParents()->insert(this->getParents()->end(), this->getIdentifier()); \ |
---|
[1293] | 61 | orxonox::ClassManager<ClassName>::getIdentifier()->addObject(this); \ |
---|
| 62 | if (orxonox::Identifier::isCreatingHierarchy()) \ |
---|
| 63 | return |
---|
[497] | 64 | |
---|
| 65 | /** |
---|
| 66 | @brief Intern macro, containing the specific part of RegisterRootObject. |
---|
| 67 | @param ClassName The name of the class |
---|
| 68 | */ |
---|
| 69 | #define InternRegisterRootObject(ClassName) \ |
---|
| 70 | if (orxonox::Identifier::isCreatingHierarchy() && !this->getParents()) \ |
---|
[871] | 71 | this->createParents(); \ |
---|
[497] | 72 | InternRegisterObject(ClassName, true) |
---|
| 73 | |
---|
| 74 | /** |
---|
| 75 | @brief RegisterObject - with and without debug output. |
---|
| 76 | @param ClassName The name of the class |
---|
| 77 | */ |
---|
| 78 | #define RegisterObject(ClassName) \ |
---|
[871] | 79 | COUT(5) << "*** Register Object: " << #ClassName << std::endl; \ |
---|
[497] | 80 | InternRegisterObject(ClassName, false) |
---|
| 81 | |
---|
| 82 | /** |
---|
| 83 | @brief RegisterRootObject - with and without debug output. |
---|
| 84 | @param ClassName The name of the class |
---|
| 85 | */ |
---|
| 86 | #define RegisterRootObject(ClassName) \ |
---|
[871] | 87 | COUT(5) << "*** Register Root-Object: " << #ClassName << std::endl; \ |
---|
[497] | 88 | InternRegisterRootObject(ClassName) |
---|
| 89 | |
---|
| 90 | /** |
---|
| 91 | @brief Returns the Identifier of the given class. |
---|
| 92 | @param ClassName The name of the class |
---|
| 93 | */ |
---|
| 94 | #define Class(ClassName) \ |
---|
[871] | 95 | ClassManager<ClassName>::getIdentifier() |
---|
[497] | 96 | |
---|
| 97 | /** |
---|
| 98 | @brief Creates the entry in the Factory. |
---|
| 99 | @param ClassName The name of the class |
---|
| 100 | */ |
---|
| 101 | #define CreateFactory(ClassName) \ |
---|
| 102 | bool bCreated##ClassName##Factory = orxonox::ClassFactory<ClassName>::create(#ClassName) |
---|
| 103 | |
---|
| 104 | /** |
---|
| 105 | @brief Returns the Identifier with either a given name or a given network ID through the factory. |
---|
| 106 | @param StringOrInt The name or the network ID of the class |
---|
| 107 | */ |
---|
| 108 | #define ID(StringOrInt) \ |
---|
| 109 | orxonox::Factory::getIdentifier(StringOrInt) |
---|
| 110 | |
---|
[676] | 111 | #endif /* _CoreIncludes_H__ */ |
---|