summaryrefslogtreecommitdiff
path: root/scripts/touchup_for_glass.py
blob: 2bc5128670036835754224ed3d116c73664d9a3a (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
#!/usr/bin/python
"""Post-build changes for Glass."""

import os
from os import path
import sys

from fontTools import ttLib
from nototools import font_data


def apply_glass_hacks(font):
    """Apply glass-specific hacks to a fonttools font instance."""
    # Really ugly hack, expecting the proportional digit one to be at
    # glyph01965.
    font_data.add_to_cmap(font, {0xEE00: 'glyph01965'})

    # Fix version number from buildnumber.txt
    from datetime import date

    build_number_txt = path.join(
        path.dirname(__file__), os.pardir, 'res', 'buildnumber.txt')
    build_number = open(build_number_txt).read().strip()

    version_record = 'Version 2.0%s; %d; Glass' % (
        build_number, date.today().year)

    for record in font['name'].names:
        if record.nameID == 5:
            if record.platformID == 1 and record.platEncID == 0:  # MacRoman
                record.string = version_record
            elif record.platformID == 3 and record.platEncID == 1:
                # Windows UCS-2
                record.string = version_record.encode('UTF-16BE')
            else:
                assert False


def hack_font(source_font_name, target_font_name):
    """Hacks the source font and saves it as the target."""
    font = ttLib.TTFont(source_font_name)
    apply_glass_hacks(font)
    font.save(target_font_name)


def main(argv):
    """Hack the font specified in the command line."""
    hack_font(argv[1], argv[2])


if __name__ == "__main__":
    main(sys.argv)