-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathligaturize.py
311 lines (256 loc) · 12 KB
/
ligaturize.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
#!/usr/bin/env python
#
# usage: fontforge -lang=py ligaturize.py <input file> <output file> [ligature file]
#
# It will copy input to output, updating the embedded font name and splicing
# in the ligatures from FiraCode-Medium.otf (which must be in $PWD). If the
# ligature file is not specified, it will try to guess an appropriate Fira Code
# OTF based on the name of the output file.
#
# See ligatures.py for a list of all the ligatures that will be copied.
import sys
from os import path
import fontforge
import psMat
from char_mapping import char_dict
from ligatures import ligatures
def get_copyright(liga_font_family_name):
switcher = {
'fira code': 'Programming ligatures added by gaplo917 from FiraCode. Copyright (c) 2015 by Nikita Prokopov',
'fira code semibold': 'Programming ligatures added by gaplo917 from FiraCode. Copyright (c) 2015 by Nikita Prokopov',
'fira code bold': 'Programming ligatures added by gaplo917 from FiraCode. Copyright (c) 2015 by Nikita Prokopov',
'jetbrains mono': 'Programming ligatures added by gaplo917 from JetBrains Mono. Copyright (c) 2020 by JetBrains',
}
return switcher.get(liga_font_family_name.lower())
class LigatureCreator(object):
def __init__(self, font, liga_font,
scale_character_glyphs_threshold,
scale_ligature_threshold,
copy_character_glyphs):
self.font = font
self.liga_font = liga_font
self.scale_character_glyphs_threshold = scale_character_glyphs_threshold
self.scale_ligature_threshold = scale_ligature_threshold
self.should_copy_character_glyphs = copy_character_glyphs
self._lig_counter = 0
# Scale ligature font to correct em height.
self.liga_font.em = self.font.em
self.emwidth = self.font[ord('m')].width
def copy_ligature_from_source(self, ligature_name):
try:
self.liga_font.selection.none()
self.liga_font.selection.select(ligature_name)
self.liga_font.copy()
# print("Found %s in source font." % ligature_name)
return True
except ValueError:
# print("%s not found in source font." % ligature_name)
return False
def correct_character_width(self, glyph):
"""Width-correct copied individual characters (not ligatures!).
This will correct the horizontal advance of characters to match the em
width of the output font, and (depending on the width of the glyph, the
em width of the output font, and the value of the command line option
--scale-character-glyphs-threshold) optionally horizontally scale it.
Glyphs that are not horizontally scaled, but which still need horizontal
advance correction, will be centered instead.
"""
if glyph.width == self.emwidth:
# No correction needed.
return
width_delta = float(abs(glyph.width - self.emwidth)) / self.emwidth
if width_delta >= self.scale_character_glyphs_threshold:
# Character is too wide/narrow compared to output font; scale it.
scale = float(self.emwidth) / glyph.width
glyph.transform(psMat.scale(scale, 1.0))
else:
# Do not scale; just center copied characters in their hbox.
# Fix horizontal advance first, to recalculate the bearings.
glyph.width = self.emwidth
# Correct bearings to center the glyph.
glyph.left_side_bearing = (glyph.left_side_bearing + glyph.right_side_bearing) / 2
glyph.right_side_bearing = glyph.left_side_bearing
# Final adjustment of horizontal advance to correct for rounding
# errors when scaling/centering -- otherwise small errors can result
# in visible misalignment near the end of long lines.
glyph.width = self.emwidth
def copy_character_glyphs(self, chars):
"""Copy individual (non-ligature) characters from the ligature font."""
if not self.should_copy_character_glyphs:
return
print(" ...copying %d character glyphs..." % (len(chars)))
for char in chars:
self.liga_font.selection.none()
self.liga_font.selection.select(char)
self.liga_font.copy()
self.font.selection.none()
self.font.selection.select(char)
self.font.paste()
self.correct_character_width(self.font[ord(char_dict[char])])
def correct_ligature_width(self, glyph):
"""Correct the horizontal advance and scale of a ligature."""
if glyph.width == self.emwidth:
return
width_delta = float(abs(glyph.width - self.emwidth)) / self.emwidth
if width_delta >= self.scale_ligature_threshold:
scale = float(self.emwidth) / glyph.width
glyph.transform(psMat.scale(scale, 1.0))
glyph.width = self.emwidth
else:
scale = float(self.emwidth) / glyph.width
glyph.width = self.emwidth
glyph.left_side_bearing *= scale
glyph.right_side_bearing *= scale
glyph.width = self.emwidth
def add_ligature(self, input_chars, ligature_name):
if ligature_name is None:
# No ligature name -- we're just copying a bunch of individual characters.
self.copy_character_glyphs(input_chars)
return
if not self.copy_ligature_from_source(ligature_name):
# Ligature not in source font.
return
self._lig_counter += 1
ligature_name = 'lig.{}'.format(self._lig_counter)
self.font.createChar(-1, ligature_name)
self.font.selection.none()
self.font.selection.select(ligature_name)
self.font.paste()
self.correct_ligature_width(self.font[ligature_name])
self.font.selection.none()
self.font.selection.select('space')
self.font.copy()
def lookup_name(i):
return 'lookup.{}.{}'.format(self._lig_counter, i)
def lookup_sub_name(i):
return 'lookup.sub.{}.{}'.format(self._lig_counter, i)
def cr_name(i):
return 'CR.{}.{}'.format(self._lig_counter, i)
for i, char in enumerate(input_chars):
self.font.addLookup(lookup_name(i), 'gsub_single', (), ())
self.font.addLookupSubtable(lookup_name(i), lookup_sub_name(i))
if char not in self.font:
# We assume here that this is because char is a single letter
# (e.g. 'w') rather than a character name, and the font we're
# editing doesn't have glyphnames for letters.
self.font[ord(char_dict[char])].glyphname = char
if i < len(input_chars) - 1:
self.font.createChar(-1, cr_name(i))
self.font.selection.none()
self.font.selection.select(cr_name(i))
self.font.paste()
self.font[char].addPosSub(lookup_sub_name(i), cr_name(i))
else:
self.font[char].addPosSub(lookup_sub_name(i), ligature_name)
calt_lookup_name = 'calt.{}'.format(self._lig_counter)
self.font.addLookup(calt_lookup_name, 'gsub_contextchain', (),
(('calt', (('DFLT', ('dflt',)),
('arab', ('dflt',)),
('armn', ('dflt',)),
('cyrl', ('SRB ', 'dflt')),
('geor', ('dflt',)),
('grek', ('dflt',)),
('lao ', ('dflt',)),
('latn', (
'CAT ', 'ESP ', 'GAL ', 'ISM ', 'KSM ', 'LSM ', 'MOL ', 'NSM ', 'ROM ', 'SKS ',
'SSM ', 'dflt')),
('math', ('dflt',)),
('thai', ('dflt',)))),))
# print('CALT %s (%s)' % (calt_lookup_name, ligature_name))
for j, char in enumerate(input_chars):
self.add_calt(
calt_lookup_name,
'calt.{}.{}'.format(self._lig_counter, j),
'{prev} | {cur} @<{lookup}> | {next}',
prev=' '.join(cr_name(j) for j in range(j)),
cur=char,
lookup=lookup_name(j),
next=' '.join(input_chars[j + 1:]))
# Add ignore rules
self.add_calt(
calt_lookup_name,
'calt.{}.{}'.format(self._lig_counter, i + 1),
'| {first} | {rest} {last}',
first=input_chars[0],
rest=' '.join(input_chars[1:]),
last=input_chars[-1])
self.add_calt(
calt_lookup_name,
'calt.{}.{}'.format(self._lig_counter, i + 2),
'{first} | {first} | {rest}',
first=input_chars[0],
rest=' '.join(input_chars[1:]))
def add_calt(self, calt_name, subtable_name, spec, **kwargs):
spec = spec.format(**kwargs)
# print(' %s: %s ' % (subtable_name, spec))
self.font.addContextualSubtable(calt_name, subtable_name, 'glyph', spec)
def replace_sfnt(font, key, value):
font.sfnt_names = tuple(
(row[0], key, value)
if row[1] == key
else row
for row in font.sfnt_names
)
def update_font_metadata(font, new_name, font_copyright):
# Figure out the input font's real name (i.e. without a hyphenated suffix)
# and hyphenated suffix (if present)
old_name = font.familyname
try:
suffix = font.fontname.split('-')[1]
except IndexError:
suffix = None
# Replace the old name with the new name whether or not a suffix was present.
# If a suffix was present, append it accordingly.
font.familyname = new_name
if suffix:
font.fullname = "%s %s" % (new_name, suffix)
font.fontname = "%s-%s" % (new_name.replace(' ', ''), suffix)
else:
font.fullname = new_name
font.fontname = new_name.replace(' ', '')
print("Ligaturizing font %s (%s) as '%s'" % (
path.basename(font.path), old_name, new_name))
font.copyright += font_copyright
replace_sfnt(font, 'UniqueID', '%s; Ligaturized' % font.fullname)
replace_sfnt(font, 'Preferred Family', new_name)
replace_sfnt(font, 'Compatible Full', new_name)
replace_sfnt(font, 'WWS Family', new_name)
def ligaturize_font(input_font_file, output_dir, ligature_font_file,
output_name, suffix, **kwargs):
font = fontforge.open(input_font_file)
if not ligature_font_file:
print('Error: missing specify the ligature font')
sys.exit(1)
if output_name:
name = output_name
else:
name = font.familyname
if suffix:
name = "%s %s" % (name, suffix)
print(' ...using ligatures from %s' % ligature_font_file)
liga_font = fontforge.open(ligature_font_file)
update_font_metadata(font, name, get_copyright(liga_font.familyname))
creator = LigatureCreator(font, liga_font, **kwargs)
def ligature_length(lig):
return len(lig['chars'])
for lig_spec in sorted(ligatures, key=ligature_length):
try:
creator.add_ligature(lig_spec['chars'], lig_spec['ligature_name'])
except Exception as e:
print('Exception while adding ligature: {}'.format(lig_spec))
raise
# Work around a bug in Fontforge where the underline height is subtracted from
# the underline width when you call generate().
font.upos += font.uwidth
# Generate font type (TTF or OTF) corresponding to input font extension
# (defaults to TTF)
if input_font_file[-4:].lower() == '.otf':
output_font_type = '.otf'
else:
output_font_type = '.ttf'
# Generate font & move to output directory
output_font_file = path.join(output_dir, font.fontname + output_font_type)
print(" ...saving to '%s' (%s)" % (output_font_file, font.fullname))
font.generate(output_font_file)
font.close()
liga_font.close()