]> git.donarmstrong.com Git - lilypond.git/blob - buildscripts/mf-to-table.py
* buildscripts/mf-to-table.py (base): add DesignSize comment.
[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
41 class Char_metric:
42         def __init__ (self):
43                 pass
44
45
46 def tfm_checksum (fn):
47         sys.stderr.write ("Reading checksum from `%s'\n" % fn) 
48         s = open (fn).read ()
49         s = s[ 12 * 2 : ]
50         cs_bytes = s[:4]
51
52         shift = 24
53         cs = 0
54         for b in cs_bytes:
55                 cs = cs  + (long (ord (b)) << shift)
56                 shift = shift - 8
57
58         return cs
59
60 ## ugh.  What's font_family supposed to be?  It's not an afm thing.
61 font_family = 'feta'
62 def parse_logfile (fn):
63         (autolines, deps) = read_log_file (fn)
64         charmetrics = []
65         global_info = {}
66         group = ''
67
68         for l in autolines:
69                 tags = string.split(l, '@:')
70                 if tags[0] == 'group':
71                         group = tags[1]
72                 elif tags[0] == 'char':
73                         m = {
74                                 'description':  tags[1],
75                                 'name': group + '-' + tags[9],
76                                 'tex': tags[10],
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]),
84                                 }
85                         charmetrics.append (m)
86                 elif tags[0] == 'font':
87                         global font_family
88                         font_family = (tags[3])
89                         # To omit 'GNU' (foundry) from font name proper:
90                         # name = tags[2:]
91                         #urg
92                         if 0: #testing
93                                 tags.append ('Regular')
94                         name = tags[1:]
95                         global_info['DesignSize'] = string.atof (tags[4])
96                         
97                         global_info['FontName'] = string.join (name,'-')
98                         global_info['FullName'] = string.join (name,' ')
99                         global_info['FamilyName'] = string.join (name[1:-1],
100                                                                  '-')
101                         if 1:
102                                 global_info['Weight'] = tags[4]
103                         else: #testing
104                                 global_info['Weight'] = tags[-1]
105                         global_info['FontBBox'] = '0 0 1000 1000'
106                         global_info['Ascender'] = '0'
107                         global_info['Descender'] = '0'
108                         global_info['EncodingScheme'] = 'FontSpecific'
109         
110         return (global_info, charmetrics, deps)
111
112
113 def write_afm_char_metric(file, charmetric):
114
115         f = 1000;
116         tup = (charmetric['code'],
117                 charmetric['name'],
118                 -charmetric['breapth'] *f,
119                 -charmetric['depth']*f,
120                 charmetric['width']*f,
121                 charmetric['height']*f,
122                charmetric['wx'] * f,
123                charmetric['wy'] * f)
124         
125         file.write ('C %d ; N %s ; B %d %d %d %d ; W %d %d ;\n'% tup)
126
127 def write_afm_header (file):
128         file.write ("StartFontMetrics 2.0\n")
129         file.write ("Comment Automatically generated by mf-to-table.py\n")
130
131 def write_afm_metric (file, global_info, charmetrics):
132         for (k,v) in global_info.items():
133                 file.write ("%s %s\n" % (k,v))
134         file.write ('StartCharMetrics %d\n' % len(charmetrics ))
135         for m in charmetrics:
136                 write_afm_char_metric (file,m)
137         file.write ('EndCharMetrics\n')
138         file.write ('EndFontMetrics\n')
139
140
141 def write_tex_defs (file, global_info, charmetrics):
142         ##nm = global_info['FontFamily']
143         nm = font_family
144         for m in charmetrics:
145                 file.write (r'''\gdef\%s%s{\char%d}%%%s''' % (nm, m['tex'], m['code'],'\n'))
146         file.write ('\\endinput\n')
147
148 def write_ps_encoding (name, file, global_info, charmetrics):
149         encs = ['.notdef'] * 256
150         for m in charmetrics:
151                 encs[m['code']] = m['tex']
152
153         file.write ('/%s [\n' % name)
154         for m in range(0,256):
155                 file.write ('  /%s %% %d\n' % (encs[m], m))
156         file.write ('] def\n')
157         
158 def write_fontlist (file, global_info, charmetrics):
159         ##nm = global_info['FontFamily']
160         nm = font_family
161         per_line = 3
162         file.write (r"""
163 %% LilyPond file to list all font symbols and the corresponding names
164 %% Automatically generated by mf-to-table.py
165 \score{ \lyrics \new Lyrics { \time %d/8
166 """ % (2*per_line+1))
167
168         count = 0
169         for m in charmetrics:
170
171                 count += 1
172                 
173 ## \musicglyph and \markup require "_" to be escaped differently:
174                 
175
176                 scm_string = re.sub('_', r'_', m['name'])
177                 tex_string = re.sub ('_', r'\\_' , m['name'])
178                 
179 ## prevent TeX from interpreting "--" as long dash:
180                 tex_string=re.sub('--','-{}-', tex_string)
181
182                 file.write ('  \\markup { \\raise #0.75 \\vcenter \\musicglyph #"%s" " %s" } 4 \n' % (scm_string, tex_string))
183
184                 if (count % 3) ==0:
185                         file.write ('\skip 8  \\break\n')
186         file.write (r"""
187 }
188   \paper{
189     interscoreline = 1.0
190     indent = 0.0 \cm
191     \context {
192       \LyricsContext
193       \override SeparationItem #'padding = #2
194       minimumVerticalExtent = ##f
195     }
196     \context {
197         \ScoreContext
198         \remove "Bar_number_engraver"
199         }
200         }
201         }
202 """)
203
204 def write_deps (file, deps, targets):
205         
206         
207         for t in targets:
208                 t = re.sub ( '^\\./', '', t)
209                 file.write ('%s '% t)
210         file.write (": ")
211         for d in deps:
212                 file.write ('%s ' % d)
213         file.write ('\n')
214
215 def help():
216     sys.stdout.write(r"""Usage: mf-to-table [OPTIONS] LOGFILEs
217 Generate feta metrics table from preparated feta log.
218
219 Options:
220   -a, --afm=FILE         specify .afm file
221   -d, --dep=FILE         print dependency info to FILE
222   -h, --help             print this help
223   -l, --ly=FILE          name output table
224   -o, --outdir=DIR       prefix for dependency info
225   -p, --package=DIR      specify package
226   -t, --tex=FILE         name output tex chardefs
227
228   """
229 )
230     sys.exit (0)
231
232
233
234 (options, files) = getopt.getopt(
235     sys.argv[1:], 'a:d:hl:o:p:t:', 
236     ['enc=', 'afm=', 'outdir=', 'dep=',  'tex=', 'ly=', 'debug', 'help', 'package='])
237
238
239 enc_nm = ''
240 texfile_nm = ''
241 depfile_nm = ''
242 afmfile_nm = ''
243 lyfile_nm = ''
244 outdir_prefix = '.'
245
246 for opt in options:
247         o = opt[0]
248         a = opt[1]
249         if o == '--dep' or o == '-d':
250                 depfile_nm = a
251         elif o == '--outdir' or o == '-o':
252                 outdir_prefix = a
253         elif o == '--tex' or o == '-t':
254                 texfile_nm = a
255         elif o == '--enc':
256                 enc_nm = a
257         elif o == '--ly' or o == '-':
258                 lyfile_nm = a
259         elif o== '--help' or o == '-h':
260                 help()
261         elif o=='--afm' or o == '-a':
262                 afmfile_nm = a
263         elif o == '--debug':
264                 debug_b = 1
265         elif o == '-p' or o == '--package':
266                 topdir = a
267         else:
268                 print o
269                 raise getopt.error
270
271 base = re.sub ('.tex$', '', texfile_nm)
272
273 for filenm in files:
274         (g,m, deps) =  parse_logfile (filenm)
275         cs = tfm_checksum (re.sub ('.log$', '.tfm', filenm))
276         afm = open (afmfile_nm, 'w')
277
278         write_afm_header (afm)
279         afm.write ("Comment TfmCheckSum %d\n" % cs)
280         afm.write ("Comment DesignSize %.2f\n" % g['DesignSize'])
281
282         del g['DesignSize']
283         
284         write_afm_metric (afm, g, m)
285         
286         write_tex_defs (open (texfile_nm, 'w'), g, m)
287         enc_name = 'FetaEncoding'
288         if re.search ('parmesan', filenm) :
289                 enc_name = 'ParmesanEncoding'
290         elif re.search ('feta-brace', filenm) :
291                 enc_name = 'FetaBraceEncoding'
292
293                 
294         write_ps_encoding (enc_name, open (enc_nm, 'w'), g, m)
295
296         write_deps (open (depfile_nm, 'wb'), deps, [base + '.dvi', base + '.pfa', base + '.pfb',  texfile_nm, afmfile_nm])
297         if lyfile_nm != '':
298                 write_fontlist(open (lyfile_nm, 'w'), g, m)
299
300
301