OpenTTD Source  20240919-master-gdf0233f4c2
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 static const char32_t NFO_UTF8_IDENTIFIER = 0x00DE;
15 
17 struct GRFText {
18  uint8_t langid;
19  std::string text;
20 };
21 
23 using GRFTextList = std::vector<GRFText>;
25 using GRFTextWrapper = std::shared_ptr<GRFTextList>;
26 
28 struct LanguageMap {
30  struct Mapping {
31  uint8_t newgrf_id;
32  uint8_t openttd_id;
33  };
34 
35  /* We need a vector and can't use SmallMap due to the fact that for "setting" a
36  * gender of a string or requesting a case for a substring we want to map from
37  * the NewGRF's internal ID to OpenTTD's ID whereas for the choice lists we map
38  * the genders/cases/plural OpenTTD IDs to the NewGRF's internal IDs. In this
39  * case a NewGRF developer/translator might want a different translation for
40  * both cases. Thus we are basically implementing a multi-map. */
41  std::vector<Mapping> gender_map;
42  std::vector<Mapping> case_map;
44 
45  int GetMapping(int newgrf_id, bool gender) const;
46  int GetReverseMapping(int openttd_id, bool gender) const;
47  static const LanguageMap *GetLanguageMap(uint32_t grfid, uint8_t language_id);
48 };
49 
50 #endif /* NEWGRF_TEXT_TYPE_H */
GRFText
A GRF text with associated language ID.
Definition: newgrf_text_type.h:17
LanguageMap::case_map
std::vector< Mapping > case_map
Mapping of NewGRF and OpenTTD IDs for cases.
Definition: newgrf_text_type.h:42
LanguageMap::plural_form
int plural_form
The plural form used for this language.
Definition: newgrf_text_type.h:43
GRFText::text
std::string text
The actual (translated) text.
Definition: newgrf_text_type.h:19
LanguageMap::Mapping::openttd_id
uint8_t openttd_id
OpenTTD's internal ID for a case/gender.
Definition: newgrf_text_type.h:32
NFO_UTF8_IDENTIFIER
static const char32_t NFO_UTF8_IDENTIFIER
This character (thorn) indicates a unicode string to NFO.
Definition: newgrf_text_type.h:14
LanguageMap::gender_map
std::vector< Mapping > gender_map
Mapping of NewGRF and OpenTTD IDs for genders.
Definition: newgrf_text_type.h:41
GRFTextList
std::vector< GRFText > GRFTextList
A GRF text with a list of translations.
Definition: newgrf_text_type.h:23
LanguageMap::Mapping
Mapping between NewGRF and OpenTTD IDs.
Definition: newgrf_text_type.h:30
LanguageMap
Mapping of language data between a NewGRF and OpenTTD.
Definition: newgrf_text_type.h:28
LanguageMap::GetMapping
int GetMapping(int newgrf_id, bool gender) const
Get the mapping from the NewGRF supplied ID to OpenTTD's internal ID.
Definition: newgrf_text.cpp:83
GRFText::langid
uint8_t langid
The language associated with this GRFText.
Definition: newgrf_text_type.h:18
LanguageMap::GetLanguageMap
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:2677
LanguageMap::GetReverseMapping
int GetReverseMapping(int openttd_id, bool gender) const
Get the mapping from OpenTTD's internal ID to the NewGRF supplied ID.
Definition: newgrf_text.cpp:98
LanguageMap::Mapping::newgrf_id
uint8_t newgrf_id
NewGRF's internal ID for a case/gender.
Definition: newgrf_text_type.h:31
GRFTextWrapper
std::shared_ptr< GRFTextList > GRFTextWrapper
Reference counted wrapper around a GRFText pointer.
Definition: newgrf_text_type.h:25