mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-24 15:24:30 +01:00
56 lines
1.5 KiB
C++
56 lines
1.5 KiB
C++
/*****************************************************************************
|
|
* Copyright (c) 2014-2018 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 "../localisation/Language.h"
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
interface IReadObjectContext;
|
|
interface IStream;
|
|
|
|
enum OBJ_STRING_ID : uint8_t
|
|
{
|
|
OBJ_STRING_ID_UNKNOWN = 255,
|
|
OBJ_STRING_ID_NAME = 0,
|
|
OBJ_STRING_ID_DESCRIPTION,
|
|
OBJ_STRING_ID_SCENARIO_NAME = 0,
|
|
OBJ_STRING_ID_PARK_NAME = 1,
|
|
OBJ_STRING_ID_SCENARIO_DETAILS = 2,
|
|
OBJ_STRING_ID_CAPACITY = 2,
|
|
OBJ_STRING_ID_VEHICLE_NAME = 3,
|
|
};
|
|
|
|
struct StringTableEntry
|
|
{
|
|
uint8_t Id = OBJ_STRING_ID_UNKNOWN;
|
|
uint8_t LanguageId = LANGUAGE_UNDEFINED;
|
|
std::string Text;
|
|
};
|
|
|
|
class StringTable
|
|
{
|
|
private:
|
|
std::vector<StringTableEntry> _strings;
|
|
|
|
public:
|
|
StringTable() = default;
|
|
StringTable(const StringTable&) = delete;
|
|
StringTable& operator=(const StringTable&) = delete;
|
|
|
|
void Read(IReadObjectContext* context, IStream* stream, uint8_t id);
|
|
void Sort();
|
|
std::string GetString(uint8_t id) const;
|
|
std::string GetString(uint8_t language, uint8_t id) const;
|
|
void SetString(uint8_t id, uint8_t language, const std::string& text);
|
|
};
|