Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/core6/src/libraries/core/object/ObjectListBase.h @ 9599

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

added proper interface (ObjectListElementRemovalListener) to notify iterators about removed elements

  • Property svn:eol-style set to native
File size: 6.1 KB
Line 
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
31    @ingroup Object ObjectList
32    @brief Declaration of the ObjectListBase class which stores all objects of each class.
33
34    orxonox::ObjectListBase is a double-linked list, used by @ref orxonox::Identifier "Identifiers"
35    to store all objects of a given class. Newly created objects are added to the list through the
36    @c RegisterObject() macro in the constructor.
37*/
38
39#ifndef _ObjectListBase_H__
40#define _ObjectListBase_H__
41
42#include "core/CorePrereqs.h"
43#include <vector>
44
45namespace orxonox
46{
47    // ###############################
48    // ###  ObjectListBaseElement  ###
49    // ###############################
50    /// The list-element of the ObjectListBase
51    class _CoreExport ObjectListBaseElement
52    {
53        public:
54            /**
55                @brief Constructor: Creates the list-element with an object.
56                @param objectBase The object to store
57            */
58            ObjectListBaseElement(Listable* object, ObjectListBase* list) : next_(0), prev_(0), objectBase_(object), list_(list) {}
59            ~ObjectListBaseElement();
60
61            ObjectListBaseElement* next_;       //!< The next element in the list
62            ObjectListBaseElement* prev_;       //!< The previous element in the list
63            Listable* objectBase_;              //!< The object
64            ObjectListBase* list_;              //!< The list
65    };
66
67
68    // ###############################
69    // ###    ObjectListElement    ###
70    // ###############################
71    /// The list-element that actually contains the object
72    template <class T>
73    class ObjectListElement : public ObjectListBaseElement
74    {
75        public:
76            ObjectListElement(T* object, ObjectListBase* list) : ObjectListBaseElement(static_cast<Listable*>(object), list), object_(object) {}
77            T* object_;              //!< The object
78    };
79
80
81    // ########################################
82    // ### ObjectListElementRemovalListener ###
83    // ########################################
84    /// Gets called by the object list if an element is removed
85    class _CoreExport ObjectListElementRemovalListener
86    {
87        public:
88            virtual ~ObjectListElementRemovalListener() {}
89            virtual void removedElement(ObjectListBaseElement* element) = 0;
90    };
91
92    // ###############################
93    // ###     ObjectListBase      ###
94    // ###############################
95    /**
96        @brief The ObjectListBase contains all objects of a given class.
97
98        The ObjectListBase is used by Identifiers to store all objects of their class.
99        You can use Identifier::getObjects() to get the object-list from an Identifier.
100        Use @ref Iterator "Iterator<T>" to iterate through them.
101
102        Alternatively you can also use the static helper class @ref orxonox::ObjectList "ObjectList<T>"
103        to get the list of all objects of type @a T. Use @ref ObjectListIterator "ObjectListIterator<T>"
104        or @ref Iterator "Iterator<T>" to iterate through them.
105    */
106    class _CoreExport ObjectListBase
107    {
108        public:
109            ObjectListBase();
110            ~ObjectListBase();
111
112            template <class T>
113            inline ObjectListBaseElement* add(T* object)
114            {
115                ObjectListBaseElement* element = new ObjectListElement<T>(object, this);
116                this->addElement(element);
117                return element;
118            }
119
120            void addElement(ObjectListBaseElement* element);
121            void removeElement(ObjectListBaseElement* element);
122
123            /// Returns a pointer to the first element in the list. Works only with Iterator.
124            inline ObjectListBaseElement* begin() { return this->first_; }
125            /// Returns a pointer to the element after the last element in the list. Works only with Iterator.
126            inline ObjectListBaseElement* end() { return 0; }
127            /// Returns a pointer to the last element in the list. Works only with Iterator.
128            inline ObjectListBaseElement* rbegin() { return this->last_; }
129            /// Returns a pointer to the element in front of the first element in the list. Works only with Iterator.
130            inline ObjectListBaseElement* rend() { return 0; }
131
132            inline void registerRemovalListener(ObjectListElementRemovalListener* listener) { this->listeners_.push_back(listener); }
133            inline void unregisterRemovalListener(ObjectListElementRemovalListener* listener)
134            {
135                for (unsigned int i = 0; i < this->listeners_.size(); ++i)
136                {
137                    if (listeners_[i] == listener)
138                    {
139                        listeners_.erase(listeners_.begin() + i);
140                        break;
141                    }
142                }
143            }
144
145        private:
146            void notifyRemovalListeners(ObjectListBaseElement* element) const;
147
148            ObjectListBaseElement* first_;                              //!< The first element in the list
149            ObjectListBaseElement* last_;                               //!< The last element in the list
150            std::vector<ObjectListElementRemovalListener*> listeners_;  //!< A list of Iterators pointing on an element in this list
151    };
152}
153
154#endif /* _ObjectListBase_H__ */
Note: See TracBrowser for help on using the repository browser.