3 # mf-to-table.py -- convert spacing info in MF logs .afm and .tex
5 # source file of the GNU LilyPond music typesetter
7 # (c) 1997--2003 Han-Wen Nienhuys <hanwen@cs.uu.nl>
17 postfixes = ['log', 'dvi', '2602gf', 'tfm']
19 def read_log_file (fn):
20 str = open (fn).read ()
21 str = re.sub ('\n', '', str)
22 str = re.sub ('[\t ]+', ' ', str)
26 def include_func (match, d = deps):
27 d.append (match.group (1))
30 def auto_func (match, a = autolines):
31 a.append (match.group (1))
34 str = re.sub ('\(([a-zA-Z_0-9-]+\.mf)', include_func, str)
35 str = re.sub ('@{(.*?)@}', auto_func, str)
37 return (autolines, deps)
46 def tfm_checksum (fn):
47 sys.stderr.write ("Reading checksum from `%s'\n" % fn)
55 cs = cs + (ord (b) << shift)
60 ## ugh. What's font_family supposed to be? It's not an afm thing.
62 def parse_logfile (fn):
63 (autolines, deps) = read_log_file (fn)
69 tags = string.split(l, '@:')
70 if tags[0] == 'group':
72 elif tags[0] == 'char':
74 'description': tags[1],
75 'name': group + '-' + tags[9],
77 'code': string.atoi (tags[2]),
78 'breapth':string.atof (tags[3]),
79 'width': string.atof (tags[4]),
80 'depth':string.atof (tags[5]),
81 'height':string.atof (tags[6]),
82 'wx': string.atof (tags[7]),
83 'wy':string.atof (tags[8]),
85 charmetrics.append (m)
86 elif tags[0] == 'font':
88 font_family = (tags[3])
89 # To omit 'GNU' (foundry) from font name proper:
93 tags.append ('Regular')
95 global_info['FontName'] = string.join (name,'-')
96 global_info['FullName'] = string.join (name,' ')
97 global_info['FamilyName'] = string.join (name[1:-1],
100 global_info['Weight'] = tags[4]
102 global_info['Weight'] = tags[-1]
103 global_info['FontBBox'] = '0 0 1000 1000'
104 global_info['Ascender'] = '0'
105 global_info['Descender'] = '0'
106 global_info['EncodingScheme'] = 'FontSpecific'
108 return (global_info, charmetrics, deps)
111 def write_afm_char_metric(file, charmetric):
114 tup = (charmetric['code'],
116 -charmetric['breapth'] *f,
117 -charmetric['depth']*f,
118 charmetric['width']*f,
119 charmetric['height']*f,
120 charmetric['wx'] * f,
121 charmetric['wy'] * f)
123 file.write ('C %d ; N %s ; B %d %d %d %d ; W %d %d ;\n'% tup)
125 def write_afm_header (file):
126 file.write ("StartFontMetrics 2.0\n")
127 file.write ("Comment Automatically generated by mf-to-table.py\n")
129 def write_afm_metric (file, global_info, charmetrics):
130 for (k,v) in global_info.items():
131 file.write ("%s %s\n" % (k,v))
132 file.write ('StartCharMetrics %d\n' % len(charmetrics ))
133 for m in charmetrics:
134 write_afm_char_metric (file,m)
135 file.write ('EndCharMetrics\n')
136 file.write ('EndFontMetrics\n')
139 def write_tex_defs (file, global_info, charmetrics):
140 ##nm = global_info['FontFamily']
142 for m in charmetrics:
143 file.write (r'''\gdef\%s%s{\char%d}%%%s''' % (nm, m['tex'], m['code'],'\n'))
144 file.write ('\\endinput\n')
146 def write_ps_encoding (file, global_info, charmetrics):
147 encs = ['.notdef'] * 256
148 for m in charmetrics:
149 encs[m['code']] = m['tex']
151 file.write ('/FetaEncoding [\n')
152 for m in range(0,256):
153 file.write (' /%s %% %d\n' % (encs[m], m))
154 file.write ('] def\n')
156 def write_fontlist (file, global_info, charmetrics):
157 ##nm = global_info['FontFamily']
161 %% LilyPond file to list all font symbols and the corresponding names
162 %% Automatically generated by mf-to-table.py
163 \score{\notes{\fatText\time %d/4
167 for m in charmetrics:
171 ## \musicglyph and \markup require "_" to be escaped differently:
174 scm_string = re.sub('_', r'_', m['name'])
175 tex_string = re.sub ('_', r'\\_' , m['name'])
177 ## prevent TeX from interpreting "--" as long dash:
178 tex_string=re.sub('--','-{}-', tex_string)
180 file.write (' s^\\markup { \\musicglyph #"%s" "%s" }\n' % (scm_string, tex_string))
183 file.write (' \\break\n')
190 \remove "Bar_number_engraver"
191 TextScript \override #'extra-X-extent = #'(-1 . 1)
195 \remove "Clef_engraver"
196 \remove "Key_engraver"
197 \remove "Time_signature_engraver"
198 \remove "Staff_symbol_engraver"
199 minimumVerticalExtent = ##f
205 def write_deps (file, deps, targets):
209 t = re.sub ( '^\\./', '', t)
210 file.write ('%s '% t)
213 file.write ('%s ' % d)
217 sys.stdout.write(r"""Usage: mf-to-table [OPTIONS] LOGFILEs
218 Generate feta metrics table from preparated feta log.
221 -a, --afm=FILE specify .afm file
222 -d, --dep=FILE print dependency info to FILE
223 -h, --help print this help
224 -l, --ly=FILE name output table
225 -o, --outdir=DIR prefix for dependency info
226 -p, --package=DIR specify package
227 -t, --tex=FILE name output tex chardefs
235 (options, files) = getopt.getopt(
236 sys.argv[1:], 'a:d:hl:o:p:t:',
237 ['enc=', 'afm=', 'outdir=', 'dep=', 'tex=', 'ly=', 'debug', 'help', 'package='])
250 if o == '--dep' or o == '-d':
252 elif o == '--outdir' or o == '-o':
254 elif o == '--tex' or o == '-t':
258 elif o == '--ly' or o == '-':
260 elif o== '--help' or o == '-h':
262 elif o=='--afm' or o == '-a':
266 elif o == '-p' or o == '--package':
272 base = re.sub ('.tex$', '', texfile_nm)
275 (g,m, deps) = parse_logfile (filenm)
276 cs = tfm_checksum (re.sub ('.log$', '.tfm', filenm))
277 afm = open (afmfile_nm, 'w')
279 write_afm_header (afm)
280 afm.write ("Comment TfmCheckSum %u\n" % cs)
281 write_afm_metric (afm, g, m)
283 write_tex_defs (open (texfile_nm, 'w'), g, m)
284 write_ps_encoding (open (enc_nm, 'w'), g, m)
286 write_deps (open (depfile_nm, 'wb'), deps, [base + '.dvi', base + '.pfa', base + '.pfb', texfile_nm, afmfile_nm])
288 write_fontlist(open (lyfile_nm, 'w'), g, m)