1
0
forked from me/IronOS

Make font encoding use all byte seq. possible

This commit is contained in:
Alvin Wong
2021-03-20 15:36:39 +08:00
parent 0c00247d29
commit 55f3a8e0ed
2 changed files with 67 additions and 26 deletions

View File

@@ -233,6 +233,55 @@ def getCJKGlyph(sym):
return s return s
def getCharsFromFontIndex(index: int) -> str:
'''
Converts the font table index into its corresponding string escape
sequence(s).
'''
# We want to be able to use more than 254 symbols (excluding \x00 null
# terminator and \x01 new-line) in the font table but without making all
# the chars take 2 bytes. To do this, we use \xF1 to \xFF as lead bytes
# to designate double-byte chars, and leave the remaining as single-byte
# chars.
#
# For the sake of sanity, \x00 always means the end of string, so we skip
# \xF1\x00 and others in the mapping.
#
# Mapping example:
#
# 0x02 => 2
# 0x03 => 3
# ...
# 0xEF => 239
# 0xF0 => 240
# 0xF1 0x01 => 1 * 0xFF - 15 + 1 = 241
# 0xF1 0x02 => 1 * 0xFF - 15 + 2 = 242
# ...
# 0xF1 0xFF => 1 * 0xFF - 15 + 255 = 495
# 0xF2 0x01 => 2 * 0xFF - 15 + 1 = 496
# ...
# 0xF2 0xFF => 2 * 0xFF - 15 + 255 = 750
# 0xF3 0x01 => 3 * 0xFF - 15 + 1 = 751
# ...
# 0xFF 0xFF => 15 * 0xFF - 15 + 255 = 4065
assert index >= 0
page = int((index + 14) / 0xFF)
assert page <= 0x0F
if page == 0:
return "\\x%0.2X" % index
else:
# Into extended range
# Leader is 0xFz where z is the page number
# Following char is the remainder
leader = page + 0xF0
value = ((index + 14) % 0xFF) + 1
assert leader <= 0xFF
assert value <= 0xFF
return "\\x%0.2X\\x%0.2X" % (leader, value)
def getFontMapAndTable(textList): def getFontMapAndTable(textList):
# the text list is sorted # the text list is sorted
# allocate out these in their order as number codes # allocate out these in their order as number codes
@@ -242,29 +291,20 @@ def getFontMapAndTable(textList):
forcedFirstSymbols = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] forcedFirstSymbols = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"]
# enforce numbers are first # enforce numbers are first
for sym in forcedFirstSymbols: for sym in forcedFirstSymbols:
symbolMap[sym] = "\\x%0.2X" % index symbolMap[sym] = getCharsFromFontIndex(index)
index = index + 1 index = index + 1
totalSymbolCount = len(set(textList) | set(forcedFirstSymbols)) totalSymbolCount = len(set(textList) | set(forcedFirstSymbols))
# \x00 is for NULL termination and \x01 is for newline, so the maximum # \x00 is for NULL termination and \x01 is for newline, so the maximum
# number of symbols allowed with 8 bits is `256 - 2`. # number of symbols allowed is as follow (see also the comments in
if totalSymbolCount > ((0xEE * 0x0F) - 2): # `getCharsFromFontIndex`):
if totalSymbolCount > (0x10 * 0xFF - 15) - 2:
log(f"Error, too many used symbols for this version (total {totalSymbolCount})") log(f"Error, too many used symbols for this version (total {totalSymbolCount})")
sys.exit(1) sys.exit(1)
log("Generating fonts for {} symbols".format(totalSymbolCount)) log("Generating fonts for {} symbols".format(totalSymbolCount))
for sym in textList: for sym in textList:
if sym not in symbolMap: if sym not in symbolMap:
page = int(index / 0xEF) symbolMap[sym] = getCharsFromFontIndex(index)
if page == 0:
symbolMap[sym] = "\\x%0.2X" % index
else:
# Into extended range
# Leader is 0xFz where z is the page number
# Following char is the remainder
leader = page + 0xF0
value = (index % 0xEF) + 1
symbolMap[sym] = "\\x%0.2X" % leader + "\\x%0.2X" % value
index = index + 1 index = index + 1
# Get the font table # Get the font table
fontTableStrings = [] fontTableStrings = []

View File

@@ -235,20 +235,21 @@ void OLED::setRotation(bool leftHanded) {
} }
// print a string to the current cursor location // print a string to the current cursor location
void OLED::print(const char *str) { void OLED::print(const char *const str) {
uint16_t page = 0; const uint8_t *next = reinterpret_cast<const uint8_t *>(str);
while (str[0]) { while (next[0]) {
if (static_cast<uint8_t>(str[0]) >= 0xF0) { uint16_t index;
page = static_cast<uint16_t>(str[0] & 0x0F); if (next[0] <= 0xF0) {
} else if (page != 0) { index = next[0];
page *= 0xEF; next++;
page += static_cast<uint8_t>(str[0]) - 1;
drawChar(page);
page = 0;
} else { } else {
drawChar(str[0]); if (!next[1]) {
return;
} }
str++; index = (next[0] - 0xF0) * 0xFF - 15 + next[1];
next += 2;
}
drawChar(index);
} }
} }