From fe61ff09a48c47db8ecc94ab7e2bced5de3624e6 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Tue, 29 Sep 2020 20:16:31 +0200 Subject: [PATCH] - added remapping for Cyrillic characters to matching Latin counterparts. --- source/common/fonts/font.cpp | 6 +++--- source/common/utility/utf8.cpp | 17 +++++++++++++++++ wadsrc/static/filter/duke/language.txt | 8 ++++++++ 3 files changed, 28 insertions(+), 3 deletions(-) diff --git a/source/common/fonts/font.cpp b/source/common/fonts/font.cpp index c1373e373..2a67aab37 100644 --- a/source/common/fonts/font.cpp +++ b/source/common/fonts/font.cpp @@ -880,6 +880,8 @@ int FFont::GetColorTranslation (EColorRange range, PalEntry *color) const int FFont::GetCharCode(int code, bool needpic) const { + int newcode; + if (code < 0 && code >= -128) { // regular chars turn negative when the 8th bit is set. @@ -905,8 +907,7 @@ int FFont::GetCharCode(int code, bool needpic) const } } // Try stripping accents from accented characters. - int newcode = stripaccent(code); - if (newcode != code) + while ((newcode = stripaccent(code)) != code) { code = newcode; if (code >= FirstChar && code <= LastChar && (!needpic || Chars[code - FirstChar].TranslatedPic != nullptr)) @@ -918,7 +919,6 @@ int FFont::GetCharCode(int code, bool needpic) const else { int originalcode = code; - int newcode; // Try stripping accents from accented characters. This may repeat to allow multi-step fallbacks. while ((newcode = stripaccent(code)) != code) diff --git a/source/common/utility/utf8.cpp b/source/common/utility/utf8.cpp index eb6dd6bf5..2341d575c 100644 --- a/source/common/utility/utf8.cpp +++ b/source/common/utility/utf8.cpp @@ -402,6 +402,23 @@ int getAlternative(int code) case 0x406: return 'I'; case 0x407: return 0xcf; case 0x408: return 'J'; + case 0x410: return 'A'; + case 0x412: return 'B'; + case 0x415: return 'E'; + case 0x41a: return 'K'; + case 0x41c: return 'M'; + case 0x41d: return 'H'; + case 0x41e: return 'O'; + case 0x420: return 'P'; + case 0x421: return 'C'; + case 0x423: return 'T'; + case 0x425: return 'X'; + case 0x430: return 'a'; + case 0x435: return 'e'; + case 0x43e: return 'o'; + case 0x440: return 'p'; + case 0x441: return 'c'; + case 0x445: return 'x'; case 0x450: return 0xe8; case 0x451: return 0xeb; case 0x455: return 's'; diff --git a/wadsrc/static/filter/duke/language.txt b/wadsrc/static/filter/duke/language.txt index a9d411017..3891f288c 100644 --- a/wadsrc/static/filter/duke/language.txt +++ b/wadsrc/static/filter/duke/language.txt @@ -181,3 +181,11 @@ "#E4L9" = "$$DERELICT"; "#E4L10" = "$$THE QUEEN"; "#E4L11" = "$$AREA 51"; + +"WRITIN': ON" = "$$MSGON"; +"WRITIN': OFF" = "$$MSGOFF"; +"RAT AIMIN' ON" = "$$TXT_MOUSEAIMON"; +"RAT AIMIN' OFF" = "$$TXT_MOUSEAIMOFF"; +"BEER" = "$$CNTRLMNU_BEER"; +"COW PIE" = "$$CNTRLMNU_COWPIE"; +