summaryrefslogtreecommitdiff
path: root/misc/tools/gen-glyphinfo.py
blob: 94cdb8927fd6b9188d5b66330e5f430a472efb57 (plain)
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
#!/usr/bin/env python
# encoding: utf8
#
# Grab http://www.unicode.org/Public/UCD/latest/ucd/UnicodeData.txt
#
import os, sys
from os.path import dirname, basename, abspath, relpath, join as pjoin
sys.path.append(abspath(pjoin(dirname(__file__), 'tools')))
from common import BASEDIR, getVersion, getLocalTimeZoneOffset

import json, re
import time
from argparse import ArgumentParser
from collections import OrderedDict
from configparser import RawConfigParser
from unicode_util import parseUnicodeDataFile
from defcon import Font


def rgbaToCSSColor(r=0, g=0, b=0, a=1):
  R,G,B = int(r * 255), int(g * 255), int(b * 255)
  if a == 1:
    return '#%02x%02x%02x' % (R,G,B)
  else:
    return 'rgba(%d,%d,%d,%g)' % (R,G,B,a)


def unicodeName(cp):
  if cp is not None and len(cp.name):
    if cp.name[0] == '<':
      return '[' + cp.categoryName + ']'
    elif len(cp.name):
      return cp.name
  return None


# YYYY/MM/DD HH:mm:ss => YYYY-MM-DDTHH:mm:ssZ  (local time -> UTC)
def localDateTimeToUTCStr(localstr, pattern='%Y/%m/%d %H:%M:%S'):
  t = time.strptime(localstr, pattern)
  ts = time.mktime(t) - getLocalTimeZoneOffset()
  return time.strftime('%Y-%m-%dT%H:%M:%SZ', time.localtime(ts))


def processGlyph(g, ucd, seenGlyphnames):
  name = g.name
  if name in seenGlyphnames:
    return None
  seenGlyphnames.add(name)

  # not exported?
  if 'com.schriftgestaltung.Glyphs.Export' in g.lib:
    if not g.lib['com.schriftgestaltung.Glyphs.Export']:
      return None

  # color
  color = None
  if 'public.markColor' in g.lib:
    rgba = [float(c.strip()) for c in g.lib['public.markColor'].strip().split(',')]
    color = rgbaToCSSColor(*rgba)

  isEmpty = 0
  if not g.bounds or g.bounds[3] == 0:
    isEmpty = 1

  # name, isEmpty, unicode, unicodeName, color
  glyph = None
  ucs = g.unicodes
  if len(ucs):
    for uc in ucs:
      ucName = unicodeName(ucd.get(uc))
      # if not ucName and uc >= 0xE000 and uc <= 0xF8FF:
      #   ucName = '[private use %04X]' % uc
      ucstr = '%04X' % uc
      if color:
        glyph = [name, isEmpty, ucstr, ucName, color]
      elif ucName:
        glyph = [name, isEmpty, ucstr, ucName]
      else:
        glyph = [name, isEmpty, ucstr]
  else:
    if color:
      glyph = [name, isEmpty, None, None, color]
    else:
      glyph = [name, isEmpty]

  return glyph

def glyphSortFun(g):
  if len(g) > 2 and g[2] is not None:
    return g[2]
  elif len(g) > 0:
    return g[0]
  else:
    return ""

def main():
  argparser = ArgumentParser(
    description='Generate info on name, unicodes and color mark for all glyphs')

  argparser.add_argument(
    '-ucd', dest='ucdFile', metavar='<file>', type=str,
    help='UnicodeData.txt file from http://www.unicode.org/')

  argparser.add_argument(
    'fontPath', metavar='<ufofile>', type=str)

  args = argparser.parse_args()
  font = Font(args.fontPath)
  ucd = {}
  if args.ucdFile:
    ucd = parseUnicodeDataFile(args.ucdFile)

  glyphs = []  # contains final glyph data printed as JSON
  seenGlyphnames = set()

  for name in font.lib['public.glyphOrder']:
    g = font[name]
    glyph = processGlyph(g, ucd, seenGlyphnames)
    if glyph is not None:
      glyphs.append(glyph)

  unorderedGlyphs = []
  for g in font:
    glyph = processGlyph(g, ucd, seenGlyphnames)
    if glyph is not None:
      unorderedGlyphs.append(glyph)

  if unorderedGlyphs:
    # sort by unicode
    glyphs = glyphs + sorted(unorderedGlyphs, key=glyphSortFun)

  print('{"glyphs":[')
  prefix = '  '
  for g in glyphs:
    print(prefix + json.dumps(g))
    if prefix == '  ':
      prefix = ', '
  print(']}')


if __name__ == '__main__':
  main()