mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-30 02:05:13 +01:00
37 lines
1.3 KiB
C++
37 lines
1.3 KiB
C++
/*****************************************************************************
|
|
* Copyright (c) 2014-2020 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 "../common.h"
|
|
|
|
#include <memory>
|
|
#include <string>
|
|
#include <string_view>
|
|
|
|
struct ILanguagePack
|
|
{
|
|
virtual ~ILanguagePack() = default;
|
|
|
|
virtual uint16_t GetId() const abstract;
|
|
virtual uint32_t GetCount() const abstract;
|
|
|
|
virtual void RemoveString(rct_string_id stringId) abstract;
|
|
virtual void SetString(rct_string_id stringId, const std::string& str) abstract;
|
|
virtual const utf8* GetString(rct_string_id stringId) const abstract;
|
|
virtual rct_string_id GetObjectOverrideStringId(std::string_view legacyIdentifier, uint8_t index) abstract;
|
|
virtual rct_string_id GetScenarioOverrideStringId(const utf8* scenarioFilename, uint8_t index) abstract;
|
|
};
|
|
|
|
namespace LanguagePackFactory
|
|
{
|
|
std::unique_ptr<ILanguagePack> FromFile(uint16_t id, const utf8* path);
|
|
std::unique_ptr<ILanguagePack> FromText(uint16_t id, const utf8* text);
|
|
} // namespace LanguagePackFactory
|