/***************************************************************************** * Copyright (c) 2014-2025 OpenRCT2 developers * * For a complete list of all authors, please refer to contributors.md * Interested in contributing? Visit https://github.com/OpenRCT2/OpenRCT2 * * OpenRCT2 is licensed under the GNU General Public License version 3. *****************************************************************************/ #pragma once #include "Object.h" #include namespace OpenRCT2 { class ObjectList { private: std::vector> _subLists; public: ObjectEntryIndex Add(const ObjectEntryDescriptor& entry); std::vector& GetList(ObjectType type); std::vector& GetList(ObjectType type) const; const ObjectEntryDescriptor& GetObject(ObjectType type, ObjectEntryIndex index) const; void SetObject(ObjectEntryIndex index, const ObjectEntryDescriptor& entry); void SetObject(ObjectType type, ObjectEntryIndex index, std::string_view identifier); ObjectEntryIndex Find(ObjectType type, std::string_view identifier) const; ObjectEntryIndex FindLegacy(ObjectType type, std::string_view identifier) const; struct const_iterator { private: const ObjectList* _parent; size_t _subList; size_t _index; void MoveToNextEntry(); public: const_iterator(const ObjectList* parent, bool end); const ObjectEntryDescriptor& operator*(); bool operator==(const_iterator& rhs); bool operator!=(const_iterator& rhs); const_iterator& operator++(); const_iterator operator++(int); }; const_iterator begin() const; const_iterator end() const; }; void ObjectGetTypeEntryIndex(size_t index, ObjectType* outObjectType, ObjectEntryIndex* outEntryIndex); size_t getObjectEntryGroupCount(ObjectType objectType); size_t getObjectTypeLimit(ObjectType type); } // namespace OpenRCT2