Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/FICN/src/orxonox/core/CoreIncludes.h @ 708

Last change on this file since 708 was 708, checked in by rgrieder, 16 years ago
  • added Vector2, Vector3, Matrix3, ColourValue, Quaternion and String to the misc folder as header files (each of them contains #include <string> … typedef std::string String , etc.)
  • please use String from now on by including <misc/String.h"
  • removed #include <OgreVector3.h", etc. from "CoreIncludes.h" (adjusted all source files)
  • adjusted all the source files (except network, that keeps <string> for the moment) (what a mess..)
  • moved usleep hack to misc/Sleep.h
  • relative include paths for files from other root directories (like misc, network, etc.) (but it stills writes "../Orxonox.h" when in folder orxonox/objects)
  • "OgreSceneManager.h" —> <OgreSceneManager.h>
  • included OrxonoxPrereqs in every file in folder orxonox
  • moved HUD and ParticleInterface to namespace orxonox
  • removed some using namespace Ogre/std when appropriate
  • I hope I haven't forgotten important points..
File size: 5.1 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 CoreIncludes.h
30    @brief Definition of macros and typedefs.
31
32    Every class needs the RegisterObject(class) macro in its constructor. If the class is an interface
33    or the BaseObject itself, it needs the macro RegisterRootObject(class) instead.
34
35    To allow the object being created through the factory, use the CreateFactory(class) macro outside
36    the of the class implementation, so it gets executed before main().
37*/
38
39#ifndef _CoreIncludes_H__
40#define _CoreIncludes_H__
41
42#include "CorePrereqs.h"
43
44// All needed header-files
45#include "Identifier.h"
46#include "Factory.h"
47#include "ClassFactory.h"
48#include "Iterator.h"
49#include "OrxonoxClass.h"
50#include "ConfigValueContainer.h"
51#include "Debug.h"
52
53/**
54    @brief Intern macro, containing the common parts of RegisterObject and RegisterRootObject.
55    @param ClassName The name of the class
56    @param bRootClass True if the class is directly derived from OrxonoxClass
57*/
58#define InternRegisterObject(ClassName, bRootClass) \
59    this->setIdentifier(orxonox::ClassIdentifier<ClassName>::registerClass(this->getParents(), #ClassName, bRootClass)); \
60    if (orxonox::Identifier::isCreatingHierarchy() && this->getParents()) \
61        this->getParents()->add(this->getIdentifier()); \
62    orxonox::ClassIdentifier<ClassName>::addObject(this)
63
64/**
65    @brief Intern macro, containing the specific part of RegisterRootObject.
66    @param ClassName The name of the class
67*/
68#define InternRegisterRootObject(ClassName) \
69    if (orxonox::Identifier::isCreatingHierarchy() && !this->getParents()) \
70        this->setParents(new orxonox::IdentifierList()); \
71    InternRegisterObject(ClassName, true)
72
73/**
74    @brief RegisterObject - with and without debug output.
75    @param ClassName The name of the class
76*/
77#define RegisterObject(ClassName) \
78    COUT(4) << "*** Register Object: " << #ClassName << std::endl; \
79    InternRegisterObject(ClassName, false)
80
81/**
82    @brief RegisterRootObject - with and without debug output.
83    @param ClassName The name of the class
84*/
85#define RegisterRootObject(ClassName) \
86    COUT(4) << "*** Register Root-Object: " << #ClassName << std::endl; \
87    InternRegisterRootObject(ClassName)
88
89/**
90    @brief Returns the Identifier of the given class.
91    @param ClassName The name of the class
92*/
93#define Class(ClassName) \
94    ClassIdentifier<ClassName>::getIdentifier()
95
96/**
97    @brief Creates the entry in the Factory.
98    @param ClassName The name of the class
99*/
100#define CreateFactory(ClassName) \
101    bool bCreated##ClassName##Factory = orxonox::ClassFactory<ClassName>::create(#ClassName)
102
103/**
104    @brief Returns the Identifier with either a given name or a given network ID through the factory.
105    @param StringOrInt The name or the network ID of the class
106*/
107#define ID(StringOrInt) \
108    orxonox::Factory::getIdentifier(StringOrInt)
109
110/**
111    @brief Assigns the value, defined in the config-file, to the variable (or the default-value, if there is no entry in the file).
112    @param varname The name of the variable
113    @param defvalue The default-value of the variable
114*/
115#define SetConfigValue(varname, defvalue) \
116    orxonox::ConfigValueContainer* container##varname = this->getIdentifier()->getConfigValueContainer(#varname); \
117    if (!container##varname) \
118    { \
119        container##varname = new orxonox::ConfigValueContainer(this->getIdentifier()->getName(), #varname, varname = defvalue); \
120        this->getIdentifier()->setConfigValueContainer(#varname, container##varname); \
121    } \
122    container##varname->getValue(varname)
123
124/**
125    @brief Sets the variable and the config-file entry back to the previously defined default-value.
126    @param varname The name of the variable
127*/
128#define ResetConfigValue(varname) \
129    orxonox::ConfigValueContainer* container##varname##reset = this->getIdentifier()->getConfigValueContainer(#varname); \
130    if (container##varname##reset) \
131    { \
132        container##varname##reset->resetConfigValue(); \
133        container##varname##reset->getValue(varname); \
134    } \
135    else \
136        COUT(2) << "Warning: Couldn't reset variable " << #varname << ", corresponding container doesn't exist." << std::endl
137
138#endif /* _CoreIncludes_H__ */
Note: See TracBrowser for help on using the repository browser.