summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2006-10-28 18:42:57 +0000
committerpeter1138 <peter1138@openttd.org>2006-10-28 18:42:57 +0000
commitdc58fb87ab97783bfc9e35c62719afd45fadb5c1 (patch)
treec1619e47b26eecbb69972264cf6b77808e2283b8
parent8908ea67d5d01f1a00e3d4d507ada67bc47bec9b (diff)
downloadopenttd-dc58fb87ab97783bfc9e35c62719afd45fadb5c1.tar.xz
(svn r6995) - Codechange: NewGRF; strip bit 7 of the language ID earlier and handle handle a language ID of 0x7F as the preferred default language.
-rw-r--r--newgrf.c9
-rw-r--r--newgrf_text.c6
2 files changed, 10 insertions, 5 deletions
diff --git a/newgrf.c b/newgrf.c
index 53224f533..101025d29 100644
--- a/newgrf.c
+++ b/newgrf.c
@@ -1961,13 +1961,17 @@ static void FeatureNewName(byte *buf, int len)
uint16 endid;
const char* name;
bool new_scheme = _cur_grffile->grf_version >= 7;
+ bool generic;
check_length(len, 6, "FeatureNewName");
buf++;
feature = grf_load_byte(&buf);
lang = grf_load_byte(&buf);
num = grf_load_byte(&buf);
- id = (lang & 0x80) ? grf_load_word(&buf) : grf_load_byte(&buf);
+ generic = HASBIT(lang, 7);
+ id = generic ? grf_load_word(&buf) : grf_load_byte(&buf);
+
+ CLRBIT(lang, 7);
if (feature <= GSF_AIRCRAFT && id < _vehcounts[feature]) {
id += _vehshifts[feature];
@@ -1978,7 +1982,8 @@ static void FeatureNewName(byte *buf, int len)
id, endid, feature, lang);
name = (const char*)buf; /*transfer read value*/
- len -= (lang & 0x80) ? 6 : 5;
+ len -= generic ? 6 : 5;
+
for (; id < endid && len > 0; id++) {
size_t ofs = strlen(name) + 1;
diff --git a/newgrf_text.c b/newgrf_text.c
index 884e12ee4..09a970657 100644
--- a/newgrf_text.c
+++ b/newgrf_text.c
@@ -233,7 +233,7 @@ StringID AddGRFString(uint32 grfid, uint16 stringid, byte langid_to_add, bool ne
newtext = malloc(sizeof(*newtext) + strlen(text_to_add) + 1);
newtext->next = NULL;
- newtext->langid = GB(langid_to_add, 0, 6);
+ newtext->langid = langid_to_add;
strcpy(newtext->text, text_to_add);
TranslateTTDPatchCodes(newtext->text);
@@ -252,7 +252,7 @@ StringID AddGRFString(uint32 grfid, uint16 stringid, byte langid_to_add, bool ne
/* Loop through all languages and see if we can replace a string */
for (ptext = &_grf_text[id].textholder; (text = *ptext) != NULL; ptext = &text->next) {
- if (text->langid != GB(langid_to_add, 0, 6)) continue;
+ if (text->langid != langid_to_add) continue;
newtext->next = text->next;
*ptext = newtext;
free(text);
@@ -310,7 +310,7 @@ char *GetGRFString(char *buff, uint16 stringid, const char* last)
/* If the current string is English or American, set it as the
* fallback language if the specific language isn't available. */
- if (search_text->langid == GRFLX_ENGLISH || search_text->langid == GRFLX_AMERICAN) {
+ if (search_text->langid == GRFLX_UNSPECIFIED || (default_text == NULL && (search_text->langid == GRFLX_ENGLISH || search_text->langid == GRFLX_AMERICAN))) {
default_text = search_text;
}
}