OpenTTD Source 20250205-master-gfd85ab1e2c
newgrf_text_type.h
Go to the documentation of this file.
1/*
2 * This file is part of OpenTTD.
3 * OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
4 * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
5 * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
6 */
7
10#ifndef NEWGRF_TEXT_TYPE_H
11#define NEWGRF_TEXT_TYPE_H
12
14
17
18static constexpr GRFStringID GRFSTR_MISC_GRF_TEXT{0xD000};
19
21static const char32_t NFO_UTF8_IDENTIFIER = 0x00DE;
22
24struct GRFText {
25 uint8_t langid;
26 std::string text;
27};
28
30using GRFTextList = std::vector<GRFText>;
32using GRFTextWrapper = std::shared_ptr<GRFTextList>;
33
37 struct Mapping {
38 uint8_t newgrf_id;
39 uint8_t openttd_id;
40 };
41
42 /* We need a vector and can't use SmallMap due to the fact that for "setting" a
43 * gender of a string or requesting a case for a substring we want to map from
44 * the NewGRF's internal ID to OpenTTD's ID whereas for the choice lists we map
45 * the genders/cases/plural OpenTTD IDs to the NewGRF's internal IDs. In this
46 * case a NewGRF developer/translator might want a different translation for
47 * both cases. Thus we are basically implementing a multi-map. */
48 std::vector<Mapping> gender_map;
49 std::vector<Mapping> case_map;
51
52 int GetMapping(int newgrf_id, bool gender) const;
53 int GetReverseMapping(int openttd_id, bool gender) const;
54 static const LanguageMap *GetLanguageMap(uint32_t grfid, uint8_t language_id);
55};
56
57#endif /* NEWGRF_TEXT_TYPE_H */
std::shared_ptr< GRFTextList > GRFTextWrapper
Reference counted wrapper around a GRFText pointer.
std::vector< GRFText > GRFTextList
A GRF text with a list of translations.
static constexpr GRFStringID GRFSTR_MISC_GRF_TEXT
Miscellaneous GRF text range.
static const char32_t NFO_UTF8_IDENTIFIER
This character (thorn) indicates a unicode string to NFO.
Type (helpers) for making a strong typedef that is a distinct type.
A GRF text with associated language ID.
std::string text
The actual (translated) text.
uint8_t langid
The language associated with this GRFText.
Mapping between NewGRF and OpenTTD IDs.
uint8_t newgrf_id
NewGRF's internal ID for a case/gender.
uint8_t openttd_id
OpenTTD's internal ID for a case/gender.
Mapping of language data between a NewGRF and OpenTTD.
std::vector< Mapping > gender_map
Mapping of NewGRF and OpenTTD IDs for genders.
int GetReverseMapping(int openttd_id, bool gender) const
Get the mapping from OpenTTD's internal ID to the NewGRF supplied ID.
int plural_form
The plural form used for this language.
static const LanguageMap * GetLanguageMap(uint32_t grfid, uint8_t language_id)
Get the language map associated with a given NewGRF and language.
Definition newgrf.cpp:2716
std::vector< Mapping > case_map
Mapping of NewGRF and OpenTTD IDs for cases.
int GetMapping(int newgrf_id, bool gender) const
Get the mapping from the NewGRF supplied ID to OpenTTD's internal ID.