summaryrefslogtreecommitdiff
path: root/newgrf_text.c
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2006-04-21 07:03:37 +0000
committerpeter1138 <peter1138@openttd.org>2006-04-21 07:03:37 +0000
commit3660fab10a4785c37ead9a718c4e25c601e5c899 (patch)
treee5a8e7574db8f1d43ec6acf56e8f32ddf7fce71e /newgrf_text.c
parent5f1ae3f4c6932112a7e9f3f9acd6ce7329971b56 (diff)
downloadopenttd-3660fab10a4785c37ead9a718c4e25c601e5c899.tar.xz
(svn r4495) - NewGRF: Implement conversion from old language IDs (bitmask) to new language IDs (value)
Diffstat (limited to 'newgrf_text.c')
-rw-r--r--newgrf_text.c46
1 files changed, 24 insertions, 22 deletions
diff --git a/newgrf_text.c b/newgrf_text.c
index ccdb06ab4..95105c248 100644
--- a/newgrf_text.c
+++ b/newgrf_text.c
@@ -67,10 +67,10 @@ typedef enum grf_extended_languages {
} grf_language;
-typedef struct iso_grf{
+typedef struct iso_grf {
char code[6];
byte grfLangID;
-}iso_grf;
+} iso_grf;
/**
* ISO code VS NewGrf langID conversion array.
@@ -123,11 +123,29 @@ static byte _currentLangID = GRFLX_ENGLISH; //by default, english is used.
*/
StringID AddGRFString(uint32 grfid, uint16 stringid, byte langid_to_add, const char *text_to_add)
{
+ GRFText *newtext;
uint id;
- GRFText *newtext = calloc(1, sizeof(*newtext));
+ /* When working with the old language scheme (bit 6 of langid is clear) and
+ * English or American is among the set bits, simply add it as English in
+ * the new scheme, i.e. as langid = 1.
+ * If English is set, it is pretty safe to assume the translations are not
+ * actually translated.
+ */
+ if (!HASBIT(langid_to_add, 6)) {
+ if (HASBITS(langid_to_add, GRFLB_AMERICAN | GRFLB_ENGLISH)) {
+ langid_to_add = GRFLX_ENGLISH;
+ } else {
+ StringID ret = STR_EMPTY;
+ if (langid_to_add & GRFLB_GERMAN) ret = AddGRFString(grfid, stringid, 1 << 6 | GRFLX_GERMAN, text_to_add);
+ if (langid_to_add & GRFLB_FRENCH) ret = AddGRFString(grfid, stringid, 1 << 6 | GRFLX_FRENCH, text_to_add);
+ if (langid_to_add & GRFLB_SPANISH) ret = AddGRFString(grfid, stringid, 1 << 6 | GRFLX_SPANISH, text_to_add);
+ return ret;
+ }
+ }
- newtext->langid = langid_to_add;
+ newtext = calloc(1, sizeof(*newtext));
+ newtext->langid = GB(langid_to_add, 0, 6);
newtext->text = strdup(text_to_add);
newtext->next = NULL;
@@ -142,25 +160,9 @@ StringID AddGRFString(uint32 grfid, uint16 stringid, byte langid_to_add, const c
/* Too many strings allocated, return empty */
if (id == lengthof(_grf_text)) return STR_EMPTY;
- /* Raise the number of strings added*/
+ /* If we didn't find our stringid and grfid in the list, allocate a new id */
if (id == _num_grf_texts) _num_grf_texts++;
- /* When working with old scheme (BIT 6 of langid is clear) and
- * English or american is among the set bits, simply add it as
- * english on new scheme, as langid = 1.
- * If there are more langid, we simply don't need them
- */
- if (!HASBIT(6,langid_to_add)) {
- if (HASBITS( GRFLB_AMERICAN | GRFLB_ENGLISH, langid_to_add)) {
- newtext->langid = langid_to_add = GRFLX_ENGLISH;
- } else {
- /* If old scheme and not english nor american, scanning will
- * have to be done. At this stage, only 3 are remaining:
- * german,french and spanish : 0x04=2,0x08=3,0x10=4
- */
- }
- }
-
if (_grf_text[id].textholder == NULL) {
_grf_text[id].grfid = grfid;
_grf_text[id].stringid = stringid;
@@ -171,7 +173,7 @@ StringID AddGRFString(uint32 grfid, uint16 stringid, byte langid_to_add, const c
textptr->next = newtext;
}
- debug("Added %x: grfid %x string %x lang %x string %s", id, grfid, stringid, langid_to_add, newtext->text);
+ DEBUG(grf, 2)("Added %x: grfid %x string %x lang %x string %s", id, grfid, stringid, newtext->langid, newtext->text);
return (GRFTAB << TABSIZE) + id;
}