mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-21 22:13:07 +01:00
35 lines
1.4 KiB
C++
35 lines
1.4 KiB
C++
/*****************************************************************************
|
|
* 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 <memory>
|
|
#include <string_view>
|
|
|
|
struct IObjectRepository;
|
|
class Object;
|
|
struct RCTObjectEntry;
|
|
enum class ObjectType : uint8_t;
|
|
|
|
namespace OpenRCT2::ObjectFactory
|
|
{
|
|
[[nodiscard]] std::unique_ptr<Object> CreateObjectFromLegacyFile(
|
|
IObjectRepository& objectRepository, const utf8* path, bool loadImages);
|
|
[[nodiscard]] std::unique_ptr<Object> CreateObjectFromLegacyData(
|
|
IObjectRepository& objectRepository, const RCTObjectEntry* entry, const void* data, size_t dataSize);
|
|
[[nodiscard]] std::unique_ptr<Object> CreateObjectFromZipFile(
|
|
IObjectRepository& objectRepository, std::string_view path, bool loadImages);
|
|
[[nodiscard]] std::unique_ptr<Object> CreateObject(ObjectType type);
|
|
|
|
[[nodiscard]] std::unique_ptr<Object> CreateObjectFromJsonFile(
|
|
IObjectRepository& objectRepository, const std::string& path, bool loadImages);
|
|
} // namespace OpenRCT2::ObjectFactory
|