Nitpick: ly:spanner-bound grob name slur -> spanner.
[lilypond.git] / scripts / build / gen-emmentaler-scripts.py
blob3da88408690ae385014094feec293c49a94b8dde
1 #!@PYTHON@
2 import sys
3 import getopt
4 import re
5 import os
7 (options, files) = \
8 getopt.getopt (sys.argv[1:],
9 '',
10 ['dir='])
13 outdir = ''
14 for opt in options:
15 o = opt[0]
16 a = opt[1]
17 if o == '--dir':
18 outdir = a
19 else:
20 print o
21 raise getopt.error
23 # Ugh
24 for design_size in [11,13,14,16,18,20,23,26]:
25 name = 'Emmentaler'
26 filename = name.lower ()
27 script = '''#!@FONTFORGE@
29 New();
31 # Separate Feta versioning?
32 # * using 20 as Weight works for gnome-font-select widget: gfs
34 notice = "";
35 notice += "This font is distributed under the GNU General Public License. ";
36 notice += "As a special exception, if you create a document which uses ";
37 notice += "this font, and embed this font or unaltered portions of this ";
38 notice += "font into the document, this font does not by itself cause the ";
39 notice += "resulting document to be covered by the GNU General Public License.";;
41 SetFontNames("%(name)s-%(design_size)d", "%(name)s", "%(name)s %(design_size)d", "%(design_size)d", notice, "@TOPLEVEL_VERSION@");
43 MergeFonts("feta%(design_size)d.pfb");
44 MergeFonts("parmesan%(design_size)d.pfb");
46 # load nummer/din after setting PUA.
47 i = 0;
48 while (i < CharCnt())
49 Select(i);
50 # crashes fontforge, use PUA for now -- jcn
51 # SetUnicodeValue(i + 0xF0000, 0);
53 PRIVATE AREA
54 In the BMP, the range 0xe000 to 0xf8ff will never be assigned to any
55 characters by the standard and is reserved for private usage. For the
56 Linux community, this private area has been subdivided further into the
57 range 0xe000 to 0xefff which can be used individually by any end-user
58 and the Linux zone in the range 0xf000 to 0xf8ff where extensions are
59 coordinated among all Linux users. The registry of the characters
60 assigned to the Linux zone is currently maintained by H. Peter Anvin
61 <Peter.Anvin@linux.org>.
63 SetUnicodeValue(i + 0xE000, 0);
64 ++i;
65 endloop
68 MergeFonts("feta-alphabet%(design_size)d.pfb");
69 MergeKern("feta-alphabet%(design_size)d.tfm");
71 LoadTableFromFile("LILF", "%(filename)s-%(design_size)d.subfonts");
72 LoadTableFromFile("LILC", "feta%(design_size)d.otf-table");
73 LoadTableFromFile("LILY", "feta%(design_size)d.otf-gtable");
75 Generate("%(filename)s-%(design_size)d.otf");
76 Generate("%(filename)s-%(design_size)d.svg");
77 ''' % vars()
79 basename = '%s-%d' % (filename, design_size)
80 path = os.path.join (outdir, basename + '.pe')
81 open (path, 'w').write (script)
83 subfonts = ['feta%(design_size)d',
84 'parmesan%(design_size)d',
85 'feta-alphabet%(design_size)d']
87 ns = []
88 for s in subfonts:
89 ns.append ('%s' % (s % vars()))
91 subfonts_str = ' '.join (ns)
93 open (os.path.join (outdir, '%(filename)s-%(design_size)d.subfonts' % vars()), 'w').write (subfonts_str)
95 path = os.path.join (outdir, '%s-%d.dep' % (filename, design_size))
97 deps = r'''%(filename)s-%(design_size)d.otf: $(outdir)/feta%(design_size)d.pfa \
98 $(outdir)/parmesan%(design_size)d.pfa \
99 $(outdir)/feta-alphabet%(design_size)d.pfa feta%(design_size)d.otf-table \
100 $(outdir)/feta-alphabet%(design_size)d.pfa feta%(design_size)d.otf-gtable
101 ''' % vars()
102 open (path, 'w').write (deps)
104 open (os.path.join (outdir, basename + '.fontname'), 'w').write ("%s-%d" % (name, design_size))