screepers / screeps-multimeter

The most useful tool on your screeps workbench.
MIT License
89 stars 28 forks source link

UTF-8 Encoding #18

Closed FormatToday closed 5 years ago

FormatToday commented 5 years ago

The console only supports English now

pyrodogg commented 5 years ago

Multimeter currently supports more than English characters, but not the full Unicode set. This is due to how Blessed is currently configured. By setting fullUnicode: true the full range of double width unicode characters is possible.

Screen options

fullUnicode - Allow for rendering of East Asian double-width characters, utf-16 surrogate pairs, and unicode combining characters. This allows you to display text above the basic multilingual plane. This is behind an option because it may affect performance slightly negatively. Without this option enabled, all double-width, surrogate pair, and combining characters will be replaced by '??', '?', '' respectively. (NOTE: iTerm2 cannot display combining characters properly. Blessed simply removes them from an element's content if iTerm2 is detected).

FormatToday commented 5 years ago

OK,Thank you