newgrf_text.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00012 #ifndef NEWGRF_TEXT_H
00013 #define NEWGRF_TEXT_H
00014
00015 #include "string_type.h"
00016 #include "strings_type.h"
00017 #include "core/smallvec_type.hpp"
00018
00020 static const WChar NFO_UTF8_IDENTIFIER = 0x00DE;
00021
00022 StringID AddGRFString(uint32 grfid, uint16 stringid, byte langid, bool new_scheme, const char *text_to_add, StringID def_string);
00023 StringID GetGRFStringID(uint32 grfid, uint16 stringid);
00024 const char *GetGRFStringFromGRFText(const struct GRFText *text);
00025 const char *GetGRFStringPtr(uint16 stringid);
00026 void CleanUpStrings();
00027 void SetCurrentGrfLangID(byte language_id);
00028 char *TranslateTTDPatchCodes(uint32 grfid, uint8 language_id, const char *str, int *olen = NULL);
00029 struct GRFText *DuplicateGRFText(struct GRFText *orig);
00030 void AddGRFTextToList(struct GRFText **list, struct GRFText *text_to_add);
00031 void AddGRFTextToList(struct GRFText **list, byte langid, uint32 grfid, const char *text_to_add);
00032 void AddGRFTextToList(struct GRFText **list, const char *text_to_add);
00033 void CleanUpGRFText(struct GRFText *grftext);
00034
00035 bool CheckGrfLangID(byte lang_id, byte grf_version);
00036
00037 void PrepareTextRefStackUsage(byte numEntries);
00038 void StopTextRefStackUsage();
00039 void SwitchToNormalRefStack();
00040 void SwitchToErrorRefStack();
00041 void RewindTextRefStack();
00042 bool UsingNewGRFTextStack();
00043 struct TextRefStack *CreateTextRefStackBackup();
00044 void RestoreTextRefStackBackup(struct TextRefStack *backup);
00045 uint RemapNewGRFStringControlCode(uint scc, char *buf_start, char **buff, const char **str, int64 *argv);
00046
00047 StringID TTDPStringIDToOTTDStringIDMapping(StringID string);
00048
00050 struct LanguageMap {
00052 struct Mapping {
00053 byte newgrf_id;
00054 byte openttd_id;
00055 };
00056
00057
00058
00059
00060
00061
00062
00063 SmallVector<Mapping, 1> gender_map;
00064 SmallVector<Mapping, 1> case_map;
00065 int plural_form;
00066
00067 int GetMapping(int newgrf_id, bool gender) const;
00068 int GetReverseMapping(int openttd_id, bool gender) const;
00069 static const LanguageMap *GetLanguageMap(uint32 grfid, uint8 language_id);
00070 };
00071
00072 #endif