Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/objecthierarchy/src/core/BaseObject.h @ 2078

Last change on this file since 2078 was 2074, checked in by landauf, 17 years ago
  • added EventListener: this class fires an event if another class with a specified name fires
  • added EventDispatcher: this class dispatches events to several other classes (EventTarget) if it gets an event itself
  • added EventTarget: used in EventDispatcher to access all classes with a specified name
  • added XMLNameListener: this listener gets called every time a new class was loaded through XML with a name != "". used to find classes with a given name even if they're not existing at the moment.
  • Property svn:eol-style set to native
File size: 7.9 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/**
30    @file BaseObject.h
31    @brief Definition of the BaseObject class.
32
33    The BaseObject is the parent of all classes representing an instance in the game.
34*/
35
36#ifndef _BaseObject_H__
37#define _BaseObject_H__
38
[2065]39#include <map>
40
[1505]41#include "CorePrereqs.h"
42
[1747]43#include "Super.h"
44#include "OrxonoxClass.h"
[1841]45#include "XMLIncludes.h"
[2063]46#include "Event.h"
[1505]47
48namespace orxonox
49{
[2019]50    class Scene;
51    class Gametype;
52
[1505]53    //! The BaseObject is the parent of all classes representing an instance in the game.
54    class _CoreExport BaseObject : virtual public OrxonoxClass
55    {
[1558]56        friend class WorldEntity;
57
[1505]58        public:
[2019]59            BaseObject(BaseObject* creator);
[1505]60            virtual ~BaseObject();
61            virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode);
62
[1558]63            /** @brief Returns if the object was initialized (passed the object registration). @return True was the object is initialized */
64            inline bool isInitialized() const { return this->bInitialized_; }
65
[1505]66            /** @brief Sets the name of the object. @param name The name */
[1950]67            inline void setName(const std::string& name) { this->oldName_ = this->name_; this->name_ = name; this->changedName(); }
68            /** @brief Returns the name of the object. */
[1505]69            inline const std::string& getName() const { return this->name_; }
[1950]70            /** @brief Returns the old name of the object. */
71            inline const std::string& getOldName() const { return this->oldName_; }
[1505]72            /** @brief This function gets called if the name of the object changes. */
73            virtual void changedName() {}
74
75            /** @brief Sets the state of the objects activity. @param bActive True = active */
[1608]76            inline void setActive(bool bActive) { this->bActive_ = bActive; this->changedActivity(); }
[1505]77            /** @brief Returns the state of the objects activity. @return The state of the activity */
[1558]78            inline bool isActive() const { return this->bActive_; }
[1505]79            /** @brief This function gets called if the activity of the object changes. */
80            virtual void changedActivity() {}
81
82            /** @brief Sets the state of the objects visibility. @param bVisible True = visible */
[1608]83            inline void setVisible(bool bVisible) { this->bVisible_ = bVisible; this->changedVisibility(); }
[1505]84            /** @brief Returns the state of the objects visibility. @return The state of the visibility */
[1558]85            inline bool isVisible() const { return this->bVisible_; }
[1505]86            /** @brief This function gets called if the visibility of the object changes. */
87            virtual void changedVisibility() {}
88
[2010]89            /** @brief Sets a pointer to the xml file that loaded this object. @param file The pointer to the XMLFile */
90            inline void setFile(const XMLFile* file) { this->file_ = file; }
91            /** @brief Returns a pointer to the XMLFile that loaded this object. @return The XMLFile */
92            inline const XMLFile* getFile() const { return this->file_; }
93            const std::string& getFilename() const;
[1505]94
[1989]95            void addTemplate(const std::string& name);
96            void addTemplate(Template* temp);
97            /** @brief Returns the set of all aplied templates. */
98            inline const std::set<Template*>& getTemplates() const
99                { return this->templates_; }
100
[1505]101            virtual inline void setNamespace(Namespace* ns) { this->namespace_ = ns; }
102            inline Namespace* getNamespace() const { return this->namespace_; }
103
[2019]104            inline void setCreator(BaseObject* creator) { this->creator_ = creator; }
105            inline BaseObject* getCreator() const { return this->creator_; }
106
107            inline void setScene(Scene* scene) { this->scene_ = scene; }
108            inline Scene* getScene() const { return this->scene_; }
109
110            inline void setGametype(Gametype* gametype) { this->oldGametype_ = this->gametype_; this->gametype_ = gametype; this->changedGametype(); }
111            inline Gametype* getGametype() const { return this->gametype_; }
112            inline Gametype* getOldGametype() const { return this->oldGametype_; }
113            virtual inline void changedGametype() {}
114
[2063]115            void fireEvent();
116            void fireEvent(bool activate);
[2074]117            void fireEvent(bool activate, BaseObject* originator);
118            void fireEvent(Event& event);
[2063]119
120            virtual void processEvent(Event& event);
121
[2074]122            inline void registerEventListener(BaseObject* object, const std::string& sectionname)
123                { this->eventListeners_[object] = sectionname; }
124            inline void unregisterEventListener(BaseObject* object)
125                { this->eventListeners_.erase(object); }
126
[2063]127            void addEvent(BaseObject* event, const std::string& sectionname);
[2074]128            void removeEvent(BaseObject* event);
[2063]129            BaseObject* getEvent(unsigned int index) const;
130
131            void addEventContainer(const std::string& sectionname, EventContainer* container);
132            EventContainer* getEventContainer(const std::string& sectionname) const;
133
[1505]134            /** @brief Sets the indentation of the debug output in the Loader. @param indentation The indentation */
135            inline void setLoaderIndentation(const std::string& indentation) { this->loaderIndentation_ = indentation; }
136            /** @brief Returns the indentation of the debug output in the Loader. @return The indentation */
137            inline const std::string& getLoaderIndentation() const { return this->loaderIndentation_; }
138
[1940]139        protected:
[1505]140            std::string name_;                          //!< The name of the object
[1950]141            std::string oldName_;                       //!< The old name of the object
[1505]142            bool bActive_;                              //!< True = the object is active
143            bool bVisible_;                             //!< True = the object is visible
[1940]144
145        private:
[2074]146            void setXMLName(const std::string& name);
[1989]147            Template* getTemplate(unsigned int index) const;
148
[2063]149            bool                  bInitialized_;         //!< True if the object was initialized (passed the object registration)
150            const XMLFile*        file_;                 //!< The XMLFile that loaded this object
151            std::string           loaderIndentation_;    //!< Indentation of the debug output in the Loader
152            Namespace*            namespace_;
153            BaseObject*           creator_;
154            Scene*                scene_;
155            Gametype*             gametype_;
156            Gametype*             oldGametype_;
157            std::set<Template*>   templates_;
[2065]158            std::map<BaseObject*, std::string> eventListeners_;
159            std::list<BaseObject*> events_;
[2063]160            std::map<std::string, EventContainer*> eventContainers_;
[1505]161    };
[1747]162
163    SUPER_FUNCTION(0, BaseObject, XMLPort, false);
164    SUPER_FUNCTION(2, BaseObject, changedActivity, false);
165    SUPER_FUNCTION(3, BaseObject, changedVisibility, false);
[2063]166    SUPER_FUNCTION(4, BaseObject, processEvent, false);
[1505]167}
168
169#endif /* _BaseObject_H__ */
Note: See TracBrowser for help on using the repository browser.