Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/doc/src/libraries/core/Iterator.h @ 7363

Last change on this file since 7363 was 7363, checked in by landauf, 14 years ago

assigned a group to each header file in the core library

  • Property svn:eol-style set to native
File size: 9.8 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 Definition and implementation of the Iterator class.
33
34    The Iterator of a given class allows to iterate through an ObjectList. Objects in
35    this list are cast to the template argument of the Iterator.
36
37    Usage:
38    for (Iterator<myClass> it = anyidentifier->getObjects()->begin(); it != anyidentifier->getObjects()->end(); ++it)
39    {
40        it->someFunction(...);
41        myClass* myObject = *it;
42    }
43*/
44
45#ifndef _Iterator_H__
46#define _Iterator_H__
47
48#include "CorePrereqs.h"
49
50#include "Identifier.h"
51#include "ObjectListBase.h"
52
53namespace orxonox
54{
55    //! The Iterator allows to iterate through a given ObjectList
56    template <class T = OrxonoxClass>
57    class Iterator
58    {
59        public:
60            /**
61                @brief Constructor: Sets the element, whereon the iterator points, to zero.
62            */
63            inline Iterator()
64            {
65                this->element_ = 0;
66                this->list_ = 0;
67            }
68
69            /**
70                @brief Constructor: Sets this element to the exported element.
71                @param exp The exported element
72            */
73            inline Iterator(const ObjectListBase::Export& exp)
74            {
75                this->element_ = exp.element_;
76                this->list_ = exp.list_;
77                this->list_->registerIterator(this);
78            }
79
80            /**
81                @brief Constructor: Sets this element to the element of another Iterator.
82                @param other The other Iterator
83            */
84            inline Iterator(const Iterator<T>& other)
85            {
86                this->element_ = other.element_;
87                this->list_ = other.list_;
88                this->list_->registerIterator(this);
89            }
90
91            /**
92                @brief Constructor: Sets this element to a given element
93                @param element The element
94            */
95            template <class O>
96            inline Iterator(ObjectListElement<O>* element)
97            {
98                this->element_ = element;
99                this->list_ = ClassIdentifier<O>::getIdentifier()->getObjects();
100                this->list_->registerIterator(this);
101            }
102
103            /**
104                @brief Constructor: Sets this element to the element an ObjectListIterator.
105                @param other The ObjectListIterator
106            */
107            template <class O>
108            inline Iterator(const ObjectListIterator<O>& other)
109            {
110                this->element_ = other.element_;
111                this->list_ = ClassIdentifier<O>::getIdentifier()->getObjects();
112                this->list_->registerIterator(this);
113            }
114
115            /**
116                @brief Unregisters the Iterator from the ObjectList.
117            */
118            inline ~Iterator()
119            {
120                this->list_->unregisterIterator(this);
121            }
122
123            /**
124                @brief Assigns an exported element.
125                @param exp The exported element
126            */
127            inline Iterator<T>& operator=(const ObjectListBase::Export& exp)
128            {
129                if (this->list_)
130                    this->list_->unregisterIterator(this);
131
132                this->element_ = exp.element_;
133                this->list_ = exp.list_;
134                this->list_->registerIterator(this);
135
136                return (*this);
137            }
138
139            /**
140                @brief Assigns the element of another Iterator.
141                @param other The other Iterator
142            */
143            inline Iterator<T>& operator=(const Iterator<T>& other)
144            {
145                if (this->list_)
146                    this->list_->unregisterIterator(this);
147
148                this->element_ = other.element_;
149                this->list_ = other.list_;
150                this->list_->registerIterator(this);
151
152                return (*this);
153            }
154
155            /**
156                @brief Assigns a given element.
157                @param element The element
158            */
159            template <class O>
160            inline Iterator<T>& operator=(ObjectListElement<O>* element)
161            {
162                if (this->list_)
163                    this->list_->unregisterIterator(this);
164
165                this->element_ = element;
166                this->list_ = ClassIdentifier<O>::getIdentifier()->getObjects();
167                this->list_->registerIterator(this);
168
169                return (*this);
170            }
171
172            /**
173                @brief Assigns the element of an ObjectListIterator.
174                @param other The ObjectListIterator
175            */
176            template <class O>
177            inline Iterator<T>& operator=(const ObjectListIterator<O>& other)
178            {
179                if (this->list_)
180                    this->list_->unregisterIterator(this);
181
182                this->element_ = other.element_;
183                this->list_ = ClassIdentifier<O>::getIdentifier()->getObjects();
184                this->list_->registerIterator(this);
185
186                return (*this);
187            }
188
189            /**
190                @brief Overloading of the ++it operator: Iterator points to the next object in the list.
191                @return The Iterator itself
192            */
193            inline const Iterator<T>& operator++()
194            {
195                this->element_ = this->element_->next_;
196                return *this;
197            }
198
199            /**
200                @brief Overloading of the it++ operator: Iterator points to the next object in the list.
201                @return The Iterator itself
202            */
203            inline Iterator<T> operator++(int)
204            {
205                Iterator<T> copy = *this;
206                this->element_ = this->element_->next_;
207                return copy;
208            }
209
210            /**
211                @brief Overloading of the --it operator: Iterator points to the previous object in the list.
212                @return The Iterator itself
213            */
214            inline const Iterator<T>& operator--()
215            {
216                this->element_ = this->element_->prev_;
217                return *this;
218            }
219
220            /**
221                @brief Overloading of the it-- operator: Iterator points to the previous object in the list.
222                @return The Iterator itself
223            */
224            inline Iterator<T> operator--(int i)
225            {
226                Iterator<T> copy = *this;
227                this->element_ = this->element_->prev_;
228                return copy;
229            }
230
231            /**
232                @brief Overloading of the *it operator: returns the pointer to the object.
233                @return The object the Iterator points at
234            */
235            inline T* operator*() const
236            {
237                return orxonox_cast<T*>(this->element_->objectBase_);
238            }
239
240            /**
241                @brief Overloading of the it-> operator: returns the pointer to the object.
242                @return The object the Iterator points at
243            */
244            inline T* operator->() const
245            {
246                return orxonox_cast<T*>(this->element_->objectBase_);
247            }
248
249            /**
250                @brief Overloading of the typecast-operator to bool: returns true if the iterator points to an existing object.
251                @return True if the Iterator points to an existing object.
252            */
253            inline operator bool() const
254            {
255                return (this->element_ != 0);
256            }
257
258            /**
259                @brief Overloading of the == operator to compare with another Iterator.
260                @param compare The other Iterator
261                @return True if the iterators point to the same element
262            */
263            inline bool operator==(const Iterator<T>& compare) const
264            {
265                return (this->element_ == compare.element_);
266            }
267
268            /**
269                @brief Overloading of the != operator to compare with another Iterator.
270                @param compare The other Iterator
271                @return True if the iterators point to different elements
272            */
273            inline bool operator!=(const Iterator<T>& compare) const
274            {
275                return (this->element_ != compare.element_);
276            }
277
278            /**
279                @brief Increments the Iterator if it points at the given object.
280                @param object The object to compare with
281            */
282            inline void incrementIfEqual(OrxonoxClass* object)
283            {
284                if (this->element_ && this->element_->objectBase_ == object)
285                    this->operator++();
286            }
287
288        protected:
289            ObjectListBaseElement* element_;       //!< The element the Iterator points at
290            ObjectListBase* list_;                 //!< The list wherein the element is
291    };
292
293    typedef Iterator<OrxonoxClass> BaseIterator;
294}
295
296#endif /* _Iterator_H__ */
Note: See TracBrowser for help on using the repository browser.