mirror of
https://github.com/ZDoom/qzdoom.git
synced 2025-01-31 04:50:48 +00:00
- fix for Greek uppercase-only fonts.
In Greek for all-caps text there *must* not be any accents. As such, all accented characters now contain a default remap to the unaccented version and the accented characters in the already converted Doom Small and BigFont have been removed as these are all-caps fonts. Doom BigUpper still requires investigation how Smallcaps fonts need to be handled.
This commit is contained in:
parent
08e86b5bcc
commit
7a86e7f043
20 changed files with 12 additions and 0 deletions
|
@ -895,7 +895,9 @@ int getAlternative(int code)
|
|||
case 0x21b:
|
||||
return 0x163;
|
||||
|
||||
|
||||
// Greek characters with equivalents in either Latin or Cyrillic. This is only suitable for uppercase fonts!
|
||||
case 0x386:
|
||||
case 0x391:
|
||||
return 'A';
|
||||
|
||||
|
@ -905,15 +907,18 @@ int getAlternative(int code)
|
|||
case 0x393:
|
||||
return 0x413;
|
||||
|
||||
case 0x388:
|
||||
case 0x395:
|
||||
return 'E';
|
||||
|
||||
case 0x396:
|
||||
return 'Z';
|
||||
|
||||
case 0x389:
|
||||
case 0x397:
|
||||
return 'H';
|
||||
|
||||
case 0x38a:
|
||||
case 0x399:
|
||||
return 'I';
|
||||
|
||||
|
@ -926,6 +931,7 @@ int getAlternative(int code)
|
|||
case 0x39d:
|
||||
return 'N';
|
||||
|
||||
case 0x38c:
|
||||
case 0x39f:
|
||||
return 'O';
|
||||
|
||||
|
@ -938,6 +944,7 @@ int getAlternative(int code)
|
|||
case 0x3a4:
|
||||
return 'T';
|
||||
|
||||
case 0x38e:
|
||||
case 0x3a5:
|
||||
return 'Y';
|
||||
|
||||
|
@ -947,15 +954,20 @@ int getAlternative(int code)
|
|||
case 0x3a7:
|
||||
return 'X';
|
||||
|
||||
case 0x390:
|
||||
case 0x3aa:
|
||||
return 0xcf;
|
||||
|
||||
case 0x3b0:
|
||||
case 0x3ab:
|
||||
return 0x178;
|
||||
|
||||
case 0x3bf:
|
||||
return 'o';
|
||||
|
||||
case 0x38f: // Greek capital omega with tonos.
|
||||
return 0x3a9;
|
||||
|
||||
case 0x3c2:
|
||||
return 0x3c3; // Lowercase Sigma character in Greek, which changes depending on its positioning in a word; if the font is uppercase only or features a smallcaps style, the second variant of the letter will remain unused
|
||||
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in a new issue