Stashing fonts, start font registry.

This commit is contained in:
2025-12-02 17:18:43 -08:00
parent 49fa7ff8a7
commit 09e4cd7ec6
34 changed files with 111742 additions and 28834 deletions

View File

@@ -1,12 +1,13 @@
#!/usr/bin/env python3
import os
import pdb
import re
import sys
import subprocess
import sys
DEFAULT_FONTS = [
'B612_Mono',
'B612Mono',
'BrassMono',
'BrassMonoCode',
'FiraCode',
@@ -18,16 +19,19 @@ DEFAULT_FONTS = [
'Syne',
]
def generate_font(header_file, path):
symbol_name=os.path.splitext(os.path.basename(path))[0]
symbol_name=symbol_name.replace('-', '_')
symbol_name=symbol_name.split('_')[1]
symbol_name = os.path.splitext(os.path.basename(path))[0]
symbol_name = symbol_name.replace('-', '_')
symbol_name = symbol_name.split('_', 2)[1]
output = subprocess.check_output(
f'binary_to_compressed_c "{path}" DefaultFont{symbol_name}',
shell=True)
f'binary_to_compressed_c "{path}" DefaultFont{symbol_name}',
shell=True)
header_file.write('\n\n')
header_file.write(output.decode('utf-8'))
def generate_header(header, guard, files):
try:
os.remove(header)
@@ -37,26 +41,28 @@ def generate_header(header, guard, files):
raise
with open(header, 'wt') as header_file:
header_file.write(f"""#pragma once
namespace kte::Fonts {{
namespace kte::Fonts::{header.removesuffix('.h')} {{
""")
for file in files:
generate_font(header_file, file)
header_file.write('}}');
header_file.write('}');
subprocess.call("sed -i '' -e 's/_compressed_size/CompressedSize/' "+
subprocess.call("sed -i '' -e 's/_compressed_size/CompressedSize/' " +
f"{header_file.name}", shell=True)
subprocess.call("sed -i '' -e 's/_compressed_data/CompressedData/' " +
subprocess.call("sed -i '' -e 's/_compressed_data/CompressedData/' " +
f"{header_file.name}", shell=True)
def generate_dir(path):
filelist = [os.path.join(path, file) for file in os.listdir(path)
if file.endswith('ttf')]
namespace = f'kte::{path}'
namespace = f'kte::Fonts::{path}'
header = f"{path.replace('-', '_')}.h"
generate_header(header, namespace, filelist)
def main(fonts=None):
if fonts is None:
fonts = DEFAULT_FONTS
@@ -64,6 +70,7 @@ def main(fonts=None):
for font in fonts:
generate_dir(font)
if __name__ == '__main__':
fonts = None
if len(sys.argv) > 1: