Initial public commit
This commit is contained in:
commit
3b1fffade1
6648 changed files with 363948 additions and 0 deletions
65
misc/gen-glyphorder.py
Executable file
65
misc/gen-glyphorder.py
Executable file
|
|
@ -0,0 +1,65 @@
|
|||
#!/usr/bin/env python
|
||||
# encoding: utf8
|
||||
from __future__ import print_function
|
||||
import os, plistlib
|
||||
from collections import OrderedDict
|
||||
from argparse import ArgumentParser
|
||||
|
||||
|
||||
def parseGlyphComposition(composite):
|
||||
c = composite.split("=")
|
||||
d = c[1].split("/")
|
||||
glyphName = d[0]
|
||||
if len(d) == 1:
|
||||
offset = [0, 0]
|
||||
else:
|
||||
offset = [int(i) for i in d[1].split(",")]
|
||||
accentString = c[0]
|
||||
accents = accentString.split("+")
|
||||
baseName = accents.pop(0)
|
||||
accentNames = [i.split(":") for i in accents]
|
||||
return (glyphName, baseName, accentNames, offset)
|
||||
|
||||
|
||||
def loadGlyphCompositions(filename): # { glyphName => (baseName, accentNames, offset) }
|
||||
compositions = OrderedDict()
|
||||
with open(filename, 'r') as f:
|
||||
for line in f:
|
||||
line = line.strip()
|
||||
if len(line) > 0 and line[0] != '#':
|
||||
glyphName, baseName, accentNames, offset = parseGlyphComposition(line)
|
||||
compositions[glyphName] = (baseName, accentNames, offset)
|
||||
return compositions
|
||||
|
||||
|
||||
def main():
|
||||
argparser = ArgumentParser(description='Generate glyph order list from UFO files')
|
||||
argparser.add_argument('fontPaths', metavar='<ufofile>', type=str, nargs='+', help='UFO files')
|
||||
args = argparser.parse_args()
|
||||
|
||||
glyphorderUnion = OrderedDict()
|
||||
|
||||
fontPaths = []
|
||||
for fontPath in args.fontPaths:
|
||||
if 'regular' or 'Regular' in fontPath:
|
||||
fontPaths = [fontPath] + fontPaths
|
||||
else:
|
||||
fontPaths.append(fontPath)
|
||||
|
||||
for fontPath in fontPaths:
|
||||
libPlist = plistlib.readPlist(os.path.join(fontPath, 'lib.plist'))
|
||||
if 'public.glyphOrder' in libPlist:
|
||||
for name in libPlist['public.glyphOrder']:
|
||||
glyphorderUnion[name] = True
|
||||
|
||||
# incorporate src/diacritics.txt
|
||||
# diacriticComps = loadGlyphCompositions('src/diacritics.txt')
|
||||
# for glyphName in diacriticComps.iterkeys():
|
||||
# glyphorderUnion[glyphName] = True
|
||||
|
||||
glyphorderUnionNames = glyphorderUnion.keys()
|
||||
print('\n'.join(glyphorderUnionNames))
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
Reference in a new issue