-
Major
Unicode support
Will the game support Unicode/UTF-8 or still only ANSI/Windows-1252?
-
Sergeant
Is this hard to implement? Otherwise I don't see why they shouldn't.
edit: I realize the need to ask for it, this is more of a message to the developers.
-
Major
-
Captain
It is hard to implement.
If you just swap the 8-bit encoding to UTF-8 then you can get subtle bugs, for example truncating strings is not so straightforward anymore. Windows programs can also natively support Unicode, however converting an existing one to Unicode is hard if you only use char not TCHAR types. You'd still need to decode the input files from UTF-8 encoding to UTF-16.
The other problem is the fonts themselves. Clausewitz uses bitmap fonts. Although the font definition files could theoretically specify codepoints higher than 255, the amount of additional characters is still limited by the size of the bitmap files. So don't expect there to be a full set of Latin script charaters included. Not to mention other charater sets like Cyrillic of Greek.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
Forum Rules