]> git.donarmstrong.com Git - lilypond.git/blob - buildscripts/mf-to-table.py
*** empty log message ***
[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                                 'tex': tags[10],
85                                 'code': string.atoi (tags[2]),
86                                 'breapth': string.atof (tags[3]),
87                                 'width': string.atof (tags[4]),
88                                 'depth': string.atof (tags[5]),
89                                 'height': string.atof (tags[6]),
90                                 'wx': string.atof (tags[7]),
91                                 'wy': string.atof (tags[8]),
92                         }
93                         charmetrics.append (m)
94                 elif tags[0] == 'font':
95                         global font_family
96                         font_family = (tags[3])
97                         # To omit 'GNU' (foundry) from font name proper:
98                         # name = tags[2:]
99                         #urg
100                         if 0: # testing
101                                 tags.append ('Regular')
102
103                         encoding = re.sub (' ','-', tags[5])
104                         tags = tags[:-1]
105                         name = tags[1:]
106                         global_info['DesignSize'] = string.atof (tags[4])
107                         global_info['FontName'] = string.join (name,'-')
108                         global_info['FullName'] = string.join (name,' ')
109                         global_info['FamilyName'] = string.join (name[1:-1],
110                                                                  '-')
111                         if 1:
112                                 global_info['Weight'] = tags[4]
113                         else: # testing
114                                 global_info['Weight'] = tags[-1]
115
116                         global_info['FontBBox'] = '0 0 1000 1000'
117                         global_info['Ascender'] = '0'
118                         global_info['Descender'] = '0'
119                         global_info['EncodingScheme'] = encoding
120
121         return (global_info, charmetrics, deps)
122
123
124 def write_afm_char_metric (file, charmetric):
125         f = 1000;
126         tup = (charmetric['code'],
127                charmetric['name'],
128                -charmetric['breapth'] * f,
129                -charmetric['depth'] * f,
130                charmetric['width'] * f,
131                charmetric['height'] * f,
132                charmetric['wx'] * f,
133                charmetric['wy'] * f)
134
135         file.write ('C %d ; N %s ; B %d %d %d %d ; W %d %d ;\n' % tup)
136
137
138 def write_afm_header (file):
139         file.write ("StartFontMetrics 2.0\n")
140         file.write ("Comment Automatically generated by mf-to-table.py\n")
141
142
143 def write_afm_metric (file, global_info, charmetrics):
144         for (k, v) in global_info.items():
145                 file.write ("%s %s\n" % (k, v))
146         file.write ('StartCharMetrics %d\n' % len(charmetrics ))
147         for m in charmetrics:
148                 write_afm_char_metric (file, m)
149         file.write ('EndCharMetrics\n')
150         file.write ('EndFontMetrics\n')
151
152
153 def write_tex_defs (file, global_info, charmetrics):
154         ## nm = global_info['FontFamily']
155         nm = font_family
156         for m in charmetrics:
157                 file.write (r'''\gdef\%s%s{\char%d}%%%s''' % \
158                             (nm, m['tex'], m['code'],'\n'))
159         file.write ('\\endinput\n')
160
161
162 def write_otf_lisp_table (file, global_info, charmetrics):
163
164         def conv_char_metric (charmetric):
165                 f = 1.0
166                 s = """((%s .
167 (bbox . (%f %f %f %f))
168 (attachment . (%f %f))))
169 """ %(charmetric['name'],
170                  -charmetric['breapth'] * f,
171                  -charmetric['depth'] * f,
172                  charmetric['width'] * f,
173                  charmetric['height'] * f,
174                  charmetric['wx'],
175                  charmetric['wy'])
176
177                 return s
178
179         for c in charmetrics:
180                 file.write (conv_char_metric (c))
181         
182 def write_ps_encoding (name, file, global_info, charmetrics):
183         encs = ['.notdef'] * 256
184         for m in charmetrics:
185                 encs[m['code']] = m['name']
186
187         file.write ('/%s [\n' % name)
188         for m in range (0, 256):
189                 file.write ('  /%s %% %d\n' % (encs[m], m))
190         file.write ('] def\n')
191
192
193 def write_fontlist (file, global_info, charmetrics):
194         ## nm = global_info['FontFamily']
195         nm = font_family
196         per_line = 2
197         file.write (
198 r"""%% LilyPond file to list all font symbols and the corresponding names
199 %% Automatically generated by mf-to-table.py
200
201 \score {
202   \lyrics { \time %d/8
203 """ % (2 * per_line + 1))
204
205         count = 0
206         for m in charmetrics:
207                 count += 1
208
209                 ## \musicglyph and \markup require "_" to be escaped
210                 ## differently
211                 scm_string = re.sub ('_', r'_', m['name'])
212                 tex_string = re.sub ('_', r'\\_' , m['name'])
213
214                 ## prevent TeX from interpreting "--" as long dash
215                 tex_string = re.sub ('--','-{}-', tex_string)
216
217                 file.write ('''    \\markup { \\raise #0.75 \\vcenter
218               \\musicglyph #"%s"
219               \\typewriter " %s" } 4\n''' % (scm_string, tex_string))
220
221                 if (count % per_line) == 0:
222                         file.write ('    \\skip 8 \\break\n')
223         file.write (r"""  }
224
225   \layout {
226     interscoreline = 1.0
227     indent = 0.0 \cm
228     \context {
229       \Lyrics
230       \override SeparationItem #'padding = #2
231       minimumVerticalExtent = ##f
232     }
233     \context {
234       \Score
235       \remove "Bar_number_engraver"
236     }
237   }
238 }
239 """)
240
241
242 def write_deps (file, deps, targets):
243         for t in targets:
244                 t = re.sub ( '^\\./', '', t)
245                 file.write ('%s '% t)
246         file.write (": ")
247         for d in deps:
248                 file.write ('%s ' % d)
249         file.write ('\n')
250
251
252 def help ():
253         sys.stdout.write(r"""Usage: mf-to-table [OPTIONS] LOGFILEs
254
255 Generate feta metrics table from preparated feta log.
256
257 Options:
258   -a, --afm=FILE         specify .afm file
259   -d, --dep=FILE         print dependency info to FILE
260   -h, --help             print this help
261   -l, --ly=FILE          name output table
262   -o, --outdir=DIR       prefix for dependency info
263   -p, --package=DIR      specify package
264   -t, --tex=FILE         name output tex chardefs
265
266   """)
267         sys.exit (0)
268
269
270 (options, files) = \
271   getopt.getopt (sys.argv[1:],
272                  'a:d:hl:o:p:t:',
273                  ['enc=', 'afm=', 'outdir=', 'dep=', 'lisp=',
274                   'tex=', 'ly=', 'debug', 'help', 'package='])
275
276
277 lisp_nm = ''
278 enc_nm = ''
279 texfile_nm = ''
280 depfile_nm = ''
281 afmfile_nm = ''
282 lyfile_nm = ''
283 outdir_prefix = '.'
284
285 for opt in options:
286         o = opt[0]
287         a = opt[1]
288         if o == '--dep' or o == '-d':
289                 depfile_nm = a
290         elif o == '--outdir' or o == '-o':
291                 outdir_prefix = a
292         elif o == '--tex' or o == '-t':
293                 texfile_nm = a
294         elif o == '--lisp': 
295                 lisp_nm = a
296         elif o == '--enc':
297                 enc_nm = a
298         elif o == '--ly' or o == '-l':
299                 lyfile_nm = a
300         elif o== '--help' or o == '-h':
301                 help()
302         elif o=='--afm' or o == '-a':
303                 afmfile_nm = a
304         elif o == '--debug':
305                 debug_b = 1
306         else:
307                 print o
308                 raise getopt.error
309
310 base = re.sub ('.tex$', '', texfile_nm)
311
312 for filenm in files:
313         (g, m, deps) = parse_logfile (filenm)
314         cs = tfm_checksum (re.sub ('.log$', '.tfm', filenm))
315         afm = open (afmfile_nm, 'w')
316
317         write_afm_header (afm)
318         afm.write ("Comment TfmCheckSum %d\n" % cs)
319         afm.write ("Comment DesignSize %.2f\n" % g['DesignSize'])
320
321         del g['DesignSize']
322
323         write_afm_metric (afm, g, m)
324
325         write_tex_defs (open (texfile_nm, 'w'), g, m)
326         enc_name = 'FetaEncoding'
327         if re.search ('parmesan', filenm):
328                 enc_name = 'ParmesanEncoding'
329         elif re.search ('feta-brace', filenm):
330                 enc_name = 'FetaBraceEncoding'
331
332         write_ps_encoding (enc_name, open (enc_nm, 'w'), g, m)
333         write_otf_lisp_table (open (lisp_nm, 'w'), g, m)  
334         if depfile_nm:
335                 write_deps (open (depfile_nm, 'wb'), deps,
336                             [base + '.dvi', base + '.pfa', base + '.pfb',
337                              texfile_nm, afmfile_nm])
338         if lyfile_nm:
339                 write_fontlist (open (lyfile_nm, 'w'), g, m)