]> git.donarmstrong.com Git - lilypond.git/blob - buildscripts/mf-to-table.py
(transform_heads): replace
[lilypond.git] / buildscripts / mf-to-table.py
1 #!@PYTHON@
2
3 # mf-to-table.py -- convert spacing info in MF logs .afm and .tex
4 #
5 # source file of the GNU LilyPond music typesetter
6 #
7 # (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8
9 import os
10 import sys
11 import getopt
12 import string
13 import re
14 import time
15
16
17 postfixes = ['log', 'dvi', '2602gf', 'tfm']
18
19 def read_log_file (fn):
20         str = open (fn).read ()
21         str = re.sub ('\n', '', str)
22         str = re.sub ('[\t ]+', ' ', str)
23
24         deps = []
25         autolines = []
26         def include_func (match, d = deps):
27                 d.append (match.group (1))
28                 return ''
29
30         def auto_func (match, a = autolines):
31                 a.append (match.group (1))
32                 return ''
33
34         str = re.sub ('\(([a-zA-Z_0-9-]+\.mf)', include_func, str)
35         str = re.sub ('@{(.*?)@}', auto_func, str)
36
37         return (autolines, deps)
38
39
40 class Char_metric:
41         def __init__ (self):
42                 pass
43
44
45 def tfm_checksum (fn):
46         sys.stderr.write ("Reading checksum from `%s'\n" % fn)
47         s = open (fn).read ()
48         s = s[ 12 * 2 : ]
49         cs_bytes = s[:4]
50
51         shift = 24
52         cs = 0
53         for b in cs_bytes:
54                 cs = cs  + (long (ord (b)) << shift)
55                 shift = shift - 8
56
57         return cs
58
59
60 ## ugh.  What's font_family supposed to be?  It's not an afm thing.
61 font_family = 'feta'
62
63 def parse_logfile (fn):
64         (autolines, deps) = read_log_file (fn)
65         charmetrics = []
66         global_info = {}
67         group = ''
68
69         for l in autolines:
70                 tags = string.split (l, '@:')
71                 if tags[0] == 'group':
72                         group = tags[1]
73                 elif tags[0] == 'puorg':
74                         group = ''
75                 elif tags[0] == 'char':
76                         name = tags[9]
77
78                         name = re.sub ('-', 'M', name)
79                         if group:
80                                 name = group + '.' + name
81                         m = {
82                                 'description': tags[1],
83                                 'name': name,
84                                 'code': string.atoi (tags[2]),
85                                 'breapth': string.atof (tags[3]),
86                                 'width': string.atof (tags[4]),
87                                 'depth': string.atof (tags[5]),
88                                 'height': string.atof (tags[6]),
89                                 'wx': string.atof (tags[7]),
90                                 'wy': string.atof (tags[8]),
91                         }
92                         charmetrics.append (m)
93                 elif tags[0] == 'font':
94                         global font_family
95                         font_family = (tags[3])
96                         # To omit 'GNU' (foundry) from font name proper:
97                         # name = tags[2:]
98                         #urg
99                         if 0: # testing
100                                 tags.append ('Regular')
101
102                         encoding = re.sub (' ','-', tags[5])
103                         tags = tags[:-1]
104                         name = tags[1:]
105                         global_info['DesignSize'] = string.atof (tags[4])
106                         global_info['FontName'] = string.join (name, '-')
107                         global_info['FullName'] = string.join (name,' ')
108                         global_info['FamilyName'] = string.join (name[1:-1],
109                                                                  '-')
110                         if 1:
111                                 global_info['Weight'] = tags[4]
112                         else: # testing
113                                 global_info['Weight'] = tags[-1]
114
115                         global_info['FontBBox'] = '0 0 1000 1000'
116                         global_info['Ascender'] = '0'
117                         global_info['Descender'] = '0'
118                         global_info['EncodingScheme'] = encoding
119
120                 elif tags[0] == 'parameter':
121                         global_info[tags[1]] = tags[2];
122                         
123         return (global_info, charmetrics, deps)
124
125
126 def write_afm_char_metric (file, charmetric):
127         f = 1000;
128         tup = (charmetric['code'],
129                charmetric['name'],
130                -charmetric['breapth'] * f,
131                -charmetric['depth'] * f,
132                charmetric['width'] * f,
133                charmetric['height'] * f,
134                charmetric['wx'] * f,
135                charmetric['wy'] * f)
136
137         file.write ('C %d ; N %s ; B %d %d %d %d ; W %d %d ;\n' % tup)
138
139
140 def write_afm_header (file):
141         file.write ("StartFontMetrics 2.0\n")
142         file.write ("Comment Automatically generated by mf-to-table.py\n")
143
144
145 def write_afm_metric (file, global_info, charmetrics):
146         for (k, v) in global_info.items():
147                 file.write ("%s %s\n" % (k, v))
148         file.write ('StartCharMetrics %d\n' % len(charmetrics ))
149         for m in charmetrics:
150                 write_afm_char_metric (file, m)
151         file.write ('EndCharMetrics\n')
152         file.write ('EndFontMetrics\n')
153
154
155 def write_tex_defs (file, global_info, charmetrics):
156         nm = global_info['font
157         ## nm = global_info['FontFamily']
158         nm = font_family
159         for m in charmetrics:
160                 
161                 texname = re.sub ('[_.]', 'X',  m['name'])
162                 def digit_to_letter (match):
163                         return chr (ord (match.group(1)) - ord ('0') + ord ('A'))
164                 texname = re.sub ('([0-9])', digit_to_letter, texname)
165                 file.write (r'''\gdef\%s%s{\char%d}%%%s''' % \
166                             (nm, texname, m['code'],'\n'))
167         file.write ('\\endinput\n')
168
169
170 def write_character_lisp_table (file, global_info, charmetrics):
171
172         def conv_char_metric (charmetric):
173                 f = 1.0
174                 s = """(%s .
175 ((bbox . (%f %f %f %f))
176  (attachment . (%f . %f))))
177 """ %(charmetric['name'],
178                  -charmetric['breapth'] * f,
179                  -charmetric['depth'] * f,
180                  charmetric['width'] * f,
181                  charmetric['height'] * f,
182                  charmetric['wx'],
183                  charmetric['wy'])
184
185                 return s
186
187         for c in charmetrics:
188                 file.write (conv_char_metric (c))
189
190
191 def write_global_lisp_table (file, global_info):
192         str = ''
193
194         keys = ['staffsize', 'stafflinethickness', 'staff_space',
195                 'linethickness', 'black_notehead_width', 'ledgerlinethickness',
196                 'blot_diameter'
197                 ]
198         for k in keys:
199                 if global_info.has_key (k):
200                         str = str + "(%s . %s)\n" % (k,global_info[k])
201
202         file.write (str)
203
204         
205 def write_ps_encoding (name, file, global_info, charmetrics):
206         encs = ['.notdef'] * 256
207         for m in charmetrics:
208                 encs[m['code']] = m['name']
209
210         file.write ('/%s [\n' % name)
211         for m in range (0, 256):
212                 file.write ('  /%s %% %d\n' % (encs[m], m))
213         file.write ('] def\n')
214
215
216 def write_fontlist (file, global_info, charmetrics):
217         ## nm = global_info['FontFamily']
218         nm = font_family
219         per_line = 2
220         file.write (
221 r"""%% LilyPond file to list all font symbols and the corresponding names
222 %% Automatically generated by mf-to-table.py
223
224 \score {
225   \lyrics { \time %d/8
226 """ % (2 * per_line + 1))
227
228         count = 0
229         for m in charmetrics:
230                 count += 1
231
232                 ## \musicglyph and \markup require "_" to be escaped
233                 ## differently
234                 scm_string = re.sub ('_', r'_', m['name'])
235                 tex_string = re.sub ('_', r'\\_' , m['name'])
236
237                 ## prevent TeX from interpreting "--" as long dash
238                 tex_string = re.sub ('--','-{}-', tex_string)
239
240                 file.write ('''    \\markup { \\raise #0.75 \\vcenter
241               \\musicglyph #"%s"
242               \\typewriter " %s" } 4\n''' % (scm_string, tex_string))
243
244                 if (count % per_line) == 0:
245                         file.write ('    \\skip 8 \\break\n')
246         file.write (r"""  }
247
248   \layout {
249     interscoreline = 1.0
250     indent = 0.0 \cm
251     \context {
252       \Lyrics
253       \override SeparationItem #'padding = #2
254       minimumVerticalExtent = ##f
255     }
256     \context {
257       \Score
258       \remove "Bar_number_engraver"
259     }
260   }
261 }
262 """)
263
264
265 def write_deps (file, deps, targets):
266         for t in targets:
267                 t = re.sub ( '^\\./', '', t)
268                 file.write ('%s '% t)
269         file.write (": ")
270         for d in deps:
271                 file.write ('%s ' % d)
272         file.write ('\n')
273
274
275 def help ():
276         sys.stdout.write(r"""Usage: mf-to-table [OPTIONS] LOGFILEs
277
278 Generate feta metrics table from preparated feta log.
279
280 Options:
281   -a, --afm=FILE         specify .afm file
282   -d, --dep=FILE         print dependency info to FILE
283   -h, --help             print this help
284   -l, --ly=FILE          name output table
285   -o, --outdir=DIR       prefix for dependency info
286   -p, --package=DIR      specify package
287   -t, --tex=FILE         name output tex chardefs
288
289   """)
290         sys.exit (0)
291
292
293 (options, files) = \
294   getopt.getopt (sys.argv[1:],
295                  'a:d:hl:o:p:t:',
296                  ['enc=', 'afm=', 'outdir=', 'dep=', 'lisp=',
297                   'global-lisp=',
298                   'tex=', 'ly=', 'debug', 'help', 'package='])
299
300 global_lisp_nm = ''
301 char_lisp_nm = ''
302 enc_nm = ''
303 texfile_nm = ''
304 depfile_nm = ''
305 afmfile_nm = ''
306 lyfile_nm = ''
307 outdir_prefix = '.'
308
309 for opt in options:
310         o = opt[0]
311         a = opt[1]
312         if o == '--dep' or o == '-d':
313                 depfile_nm = a
314         elif o == '--outdir' or o == '-o':
315                 outdir_prefix = a
316         elif o == '--tex' or o == '-t':
317                 texfile_nm = a
318         elif o == '--lisp': 
319                 char_lisp_nm = a
320         elif o == '--global-lisp': 
321                 global_lisp_nm = a
322         elif o == '--enc':
323                 enc_nm = a
324         elif o == '--ly' or o == '-l':
325                 lyfile_nm = a
326         elif o== '--help' or o == '-h':
327                 help()
328         elif o=='--afm' or o == '-a':
329                 afmfile_nm = a
330         elif o == '--debug':
331                 debug_b = 1
332         else:
333                 print o
334                 raise getopt.error
335
336 base = re.sub ('.tex$', '', texfile_nm)
337
338 for filenm in files:
339         (g, m, deps) = parse_logfile (filenm)
340         cs = tfm_checksum (re.sub ('.log$', '.tfm', filenm))
341         afm = open (afmfile_nm, 'w')
342
343         write_afm_header (afm)
344         afm.write ("Comment TfmCheckSum %d\n" % cs)
345         afm.write ("Comment DesignSize %.2f\n" % g['DesignSize'])
346
347         del g['DesignSize']
348
349         write_afm_metric (afm, g, m)
350
351         write_tex_defs (open (texfile_nm, 'w'), g, m)
352         enc_name = 'FetaEncoding'
353         if re.search ('parmesan', filenm):
354                 enc_name = 'ParmesanEncoding'
355         elif re.search ('feta-brace', filenm):
356                 enc_name = 'FetaBraceEncoding'
357
358         write_ps_encoding (enc_name, open (enc_nm, 'w'), g, m)
359         write_character_lisp_table (open (char_lisp_nm, 'w'), g, m)  
360         write_global_lisp_table (open (global_lisp_nm, 'w'), g)  
361         if depfile_nm:
362                 write_deps (open (depfile_nm, 'wb'), deps,
363                             [base + '.dvi', base + '.pfa', base + '.pfb',
364                              texfile_nm, afmfile_nm])
365         if lyfile_nm:
366                 write_fontlist (open (lyfile_nm, 'w'), g, m)