/***************************************************************************** * 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 "../core/StringTypes.h" #include #include struct IObjectRepository; class Object; struct RCTObjectEntry; enum class ObjectType : uint8_t; namespace OpenRCT2::ObjectFactory { [[nodiscard]] std::unique_ptr CreateObjectFromLegacyFile( IObjectRepository& objectRepository, const utf8* path, bool loadImages); [[nodiscard]] std::unique_ptr CreateObjectFromLegacyData( IObjectRepository& objectRepository, const RCTObjectEntry* entry, const void* data, size_t dataSize); [[nodiscard]] std::unique_ptr CreateObjectFromZipFile( IObjectRepository& objectRepository, std::string_view path, bool loadImages); [[nodiscard]] std::unique_ptr CreateObject(ObjectType type); [[nodiscard]] std::unique_ptr CreateObjectFromJsonFile( IObjectRepository& objectRepository, const std::string& path, bool loadImages); } // namespace OpenRCT2::ObjectFactory