+ Reply to Thread
Results 1 to 4 of 4

Thread: Unicode support

  1. #1

    Unicode support

    Will the game support Unicode/UTF-8 or still only ANSI/Windows-1252?

  2. #2
    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.

  3. #3
    Bump for great justice.

  4. #4
    Captain SlyEcho's Avatar
    Deus Vult!EU3 CompleteRome GoldHearts of Iron IIIFor The Glory
    Heir to the ThroneMount & Blade: WarbandSemper FiVictoria 2Divine Wind
    MagickaCities in MotionSword of the StarsCrusader Kings IIFor the Motherland
    SengokuHearts of Iron: The Card GameSword of the Stars IIVictoria II: A House DividedCrusader Kings II Holy Knight
    StarvoidHOI3: Their Finest HourMarch of the EaglesCities in Motion 2Victoria 2: Heart of Darkness

    Join Date
    Aug 2010
    Location
    Tallinn
    Posts
    438
    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.

+ Reply to Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts