/* * ORXONOX - the hottest 3D action shooter ever to exist * > www.orxonox.net < * * * License notice: * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * * Author: * Fabian 'x3n' Landau * Co-authors: * ... * */ /** @defgroup ObjectList Object-lists and iterators @ingroup Object */ /** @file @ingroup Object ObjectList @brief Definition of the ObjectList class, a wrapper of ObjectListBase. @ref orxonox::ObjectList "ObjectList" is a wrapper of an @ref orxonox::ObjectListBase "ObjectListBase" of class @a T. Use @ref orxonox::ObjectListIterator "ObjectListIterator" to iterate through the list. */ #ifndef _ObjectList_H__ #define _ObjectList_H__ #include "core/CorePrereqs.h" #include "ObjectListBase.h" #include "ObjectListIterator.h" #include "Context.h" namespace orxonox { // ############################### // ### ObjectList ### // ############################### /** @brief The ObjectList contains all objects of the given class. Wraps the ObjectListBase which contains all objects of type @a T. Use @ref ObjectListIterator "ObjectListIterator" or its typedef ObjectList::iterator to iterate through all objects in the list. */ template class ObjectList { static_assert(std::is_base_of::value, "ObjectList can only be used with Listables"); public: typedef ObjectListIterator iterator; ObjectList() : ObjectList(Context::getRootContext()) {} ObjectList(Context* context) : ObjectList(context->getObjectList()) {} ObjectList(ObjectListBase* list) : list_(list) {} /// Returns the size of the list inline size_t size() { return this->list_->size(); } /// Returns an Iterator to the first element in the list. inline ObjectListIterator begin() { return static_cast*>(this->list_->begin()); } /// Returns an Iterator to the element after the last element in the list. inline ObjectListIterator end() { return static_cast*>(this->list_->end()); } /// Returns an Iterator to the last element in the list. inline ObjectListIterator rbegin() { return static_cast*>(this->list_->rbegin()); } /// Returns an Iterator to the element before the first element in the list. inline ObjectListIterator rend() { return static_cast*>(this->list_->rend()); } private: ObjectListBase* list_; }; } #endif /* _ObjectList_H__ */