Fixes #1624. Use python3 shebang for all python scripts as python still defaults to python2 on many systems.
100 lines
3.0 KiB
Python
100 lines
3.0 KiB
Python
#!/usr/bin/env python3
|
|
# vim:fileencoding=utf-8
|
|
# License: GPL v3 Copyright: 2017, Kovid Goyal <kovid at kovidgoyal.net>
|
|
|
|
import re
|
|
|
|
from kitty.fast_data_types import coretext_all_fonts
|
|
from kitty.utils import log_error
|
|
|
|
attr_map = {(False, False): 'font_family',
|
|
(True, False): 'bold_font',
|
|
(False, True): 'italic_font',
|
|
(True, True): 'bold_italic_font'}
|
|
|
|
|
|
def create_font_map(all_fonts):
|
|
ans = {'family_map': {}, 'ps_map': {}, 'full_map': {}}
|
|
for x in all_fonts:
|
|
f = (x['family'] or '').lower()
|
|
s = (x['style'] or '').lower()
|
|
ps = (x['postscript_name'] or '').lower()
|
|
ans['family_map'].setdefault(f, []).append(x)
|
|
ans['ps_map'].setdefault(ps, []).append(x)
|
|
ans['full_map'].setdefault(f + ' ' + s, []).append(x)
|
|
return ans
|
|
|
|
|
|
def all_fonts_map():
|
|
ans = getattr(all_fonts_map, 'ans', None)
|
|
if ans is None:
|
|
ans = all_fonts_map.ans = create_font_map(coretext_all_fonts())
|
|
return ans
|
|
|
|
|
|
def list_fonts():
|
|
for fd in coretext_all_fonts():
|
|
f = fd['family']
|
|
if f:
|
|
fn = (f + ' ' + (fd['style'] or '')).strip()
|
|
is_mono = bool(fd['monospace'])
|
|
yield {'family': f, 'full_name': fn, 'is_monospace': is_mono}
|
|
|
|
|
|
def find_best_match(family, bold=False, italic=False):
|
|
q = re.sub(r'\s+', ' ', family.lower())
|
|
font_map = all_fonts_map()
|
|
|
|
def score(candidate):
|
|
style_match = 1 if candidate['bold'] == bold and candidate[
|
|
'italic'
|
|
] == italic else 0
|
|
monospace_match = 1 if candidate['monospace'] else 0
|
|
return style_match, monospace_match
|
|
|
|
# First look for an exact match
|
|
for selector in ('ps_map', 'full_map'):
|
|
candidates = font_map[selector].get(q)
|
|
if candidates:
|
|
candidates.sort(key=score)
|
|
return candidates[-1]
|
|
|
|
# Let CoreText choose the font if the family exists, otherwise
|
|
# fallback to Menlo
|
|
if q not in font_map['family_map']:
|
|
log_error('The font {} was not found, falling back to Menlo'.format(family))
|
|
family = 'Menlo'
|
|
return {
|
|
'monospace': True,
|
|
'bold': bold,
|
|
'italic': italic,
|
|
'family': family
|
|
}
|
|
|
|
|
|
def resolve_family(f, main_family, bold=False, italic=False):
|
|
if (bold or italic) and f == 'auto':
|
|
f = main_family
|
|
if f.lower() == 'monospace':
|
|
f = 'Menlo'
|
|
return f
|
|
|
|
|
|
def get_font_files(opts):
|
|
ans = {}
|
|
for (bold, italic), attr in attr_map.items():
|
|
face = find_best_match(resolve_family(getattr(opts, attr), opts.font_family, bold, italic), bold, italic)
|
|
key = {(False, False): 'medium',
|
|
(True, False): 'bold',
|
|
(False, True): 'italic',
|
|
(True, True): 'bi'}[(bold, italic)]
|
|
ans[key] = face
|
|
if key == 'medium':
|
|
get_font_files.medium_family = face['family']
|
|
return ans
|
|
|
|
|
|
def font_for_family(family):
|
|
ans = find_best_match(resolve_family(family, get_font_files.medium_family))
|
|
return ans, ans['bold'], ans['italic']
|