* lily/tuplet-bracket.cc (brew_molecule): don't print bracket when
[lilypond.git] / buildscripts / mf-to-table.py
blobcf3d4b08c2873ea45bfd33e656840ce51f9f7a89
1 #!@PYTHON@
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--2003 Han-Wen Nienhuys <hanwen@cs.uu.nl>
9 import os
10 import sys
11 import getopt
12 import string
13 import re
14 import time
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)
24 deps = []
25 autolines = []
26 def include_func (match, d = deps):
27 d.append (match.group (1))
28 return ''
30 def auto_func (match, a = autolines):
31 a.append (match.group (1))
32 return ''
34 str = re.sub ('\(([a-zA-Z_0-9-]+\.mf)', include_func, str)
35 str = re.sub ('@{(.*?)@}', auto_func, str)
37 return (autolines, deps)
41 class Char_metric:
42 def __init__ (self):
43 pass
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]
52 shift = 24
53 cs = 0
54 for b in cs_bytes:
55 cs = cs + (ord (b) << shift)
56 shift = shift - 8
58 return cs
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 = ''
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[7],
76 'tex': tags[8],
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])
83 charmetrics.append (m)
84 elif tags[0] == 'font':
85 global font_family
86 font_family = (tags[3])
87 # To omit 'GNU' (foundry) from font name proper:
88 # name = tags[2:]
89 #urg
90 if 0: #testing
91 tags.append ('Regular')
92 name = tags[1:]
93 global_info['FontName'] = string.join (name,'-')
94 global_info['FullName'] = string.join (name,' ')
95 global_info['FamilyName'] = string.join (name[1:-1],
96 '-')
97 if 1:
98 global_info['Weight'] = tags[4]
99 else: #testing
100 global_info['Weight'] = tags[-1]
101 global_info['FontBBox'] = '0 0 1000 1000'
102 global_info['Ascender'] = '0'
103 global_info['Descender'] = '0'
104 global_info['EncodingScheme'] = 'FontSpecific'
106 return (global_info, charmetrics, deps)
109 def write_afm_char_metric(file, charmetric):
111 f = 1000;
112 tup = (charmetric['code'],
113 (charmetric['width'] + charmetric['breapth'])*f,
114 charmetric['name'],
115 -charmetric['breapth'] *f,
116 -charmetric['depth']*f,
117 charmetric['width']*f,
118 charmetric['height']*f)
121 file.write ('C %d ; WX %d ; N %s ; B %d %d %d %d ;\n'% tup)
123 def write_afm_header (file):
124 file.write ("StartFontMetrics 2.0\n")
125 file.write ("Comment Automatically generated by mf-to-table.py\n")
127 def write_afm_metric (file, global_info, charmetrics):
128 for (k,v) in global_info.items():
129 file.write ("%s %s\n" % (k,v))
130 file.write ('StartCharMetrics %d\n' % len(charmetrics ))
131 for m in charmetrics:
132 write_afm_char_metric (file,m)
133 file.write ('EndCharMetrics\n')
134 file.write ('EndFontMetrics\n')
137 def write_tex_defs (file, global_info, charmetrics):
138 ##nm = global_info['FontFamily']
139 nm = font_family
140 for m in charmetrics:
141 file.write (r'''\gdef\%s%s{\char%d}%%%s''' % (nm, m['tex'], m['code'],'\n'))
142 file.write ('\\endinput\n')
144 def write_ps_encoding (file, global_info, charmetrics):
145 encs = ['.notdef'] * 256
146 for m in charmetrics:
147 encs[m['code']] = m['tex']
149 file.write ('/FetaEncoding [\n')
150 for m in range(0,256):
151 file.write (' /%s %% %d\n' % (encs[m], m))
152 file.write ('] def\n')
154 def write_fontlist (file, global_info, charmetrics):
155 ##nm = global_info['FontFamily']
156 nm = font_family
157 per_line = 3
158 file.write (r"""
159 %% LilyPond file to list all font symbols and the corresponding names
160 %% Automatically generated by mf-to-table.py
161 \score{\notes{\fatText\time %d/4
162 """ % per_line)
164 count = 0
165 for m in charmetrics:
167 count += 1
169 ## \musicglyph and \markup require "_" to be escaped differently:
170 musicglyphname=re.sub('_','\\\\_', m['name'])
171 markupname=re.sub('_','\\\\_', musicglyphname)
173 ## prevent TeX from interpreting "--" as long dash:
174 markupname=re.sub('--','-{}-', markupname)
176 file.write (' s^\\markup { \\musicglyph #"%s" "%s" }\n' % (musicglyphname, markupname))
178 if (count % 3) ==0:
179 file.write (' \\break\n')
180 file.write (r"""
182 \paper{
183 interscoreline=1
184 \translator{
185 \ScoreContext
186 \remove "Bar_number_engraver"
187 TextScript \override #'extra-X-extent = #'(-1 . 1)
189 \translator{
190 \StaffContext
191 \remove "Clef_engraver"
192 \remove "Key_engraver"
193 \remove "Time_signature_engraver"
194 \remove "Staff_symbol_engraver"
195 minimumVerticalExtent = ##f
199 """)
201 def write_deps (file, deps, targets):
204 for t in targets:
205 t = re.sub ( '^\\./', '', t)
206 file.write ('%s '% t)
207 file.write (": ")
208 for d in deps:
209 file.write ('%s ' % d)
210 file.write ('\n')
212 def help():
213 sys.stdout.write(r"""Usage: mf-to-table [OPTIONS] LOGFILEs
214 Generate feta metrics table from preparated feta log.
216 Options:
217 -a, --afm=FILE specify .afm file
218 -d, --dep=FILE print dependency info to FILE
219 -h, --help print this help
220 -l, --ly=FILE name output table
221 -o, --outdir=DIR prefix for dependency info
222 -p, --package=DIR specify package
223 -t, --tex=FILE name output tex chardefs
227 sys.exit (0)
231 (options, files) = getopt.getopt(
232 sys.argv[1:], 'a:d:hl:o:p:t:',
233 ['enc=', 'afm=', 'outdir=', 'dep=', 'tex=', 'ly=', 'debug', 'help', 'package='])
236 enc_nm = ''
237 texfile_nm = ''
238 depfile_nm = ''
239 afmfile_nm = ''
240 lyfile_nm = ''
241 outdir_prefix = '.'
243 for opt in options:
244 o = opt[0]
245 a = opt[1]
246 if o == '--dep' or o == '-d':
247 depfile_nm = a
248 elif o == '--outdir' or o == '-o':
249 outdir_prefix = a
250 elif o == '--tex' or o == '-t':
251 texfile_nm = a
252 elif o == '--enc':
253 enc_nm = a
254 elif o == '--ly' or o == '-':
255 lyfile_nm = a
256 elif o== '--help' or o == '-h':
257 help()
258 elif o=='--afm' or o == '-a':
259 afmfile_nm = a
260 elif o == '--debug':
261 debug_b = 1
262 elif o == '-p' or o == '--package':
263 topdir = a
264 else:
265 print o
266 raise getopt.error
268 base = re.sub ('.tex$', '', texfile_nm)
270 for filenm in files:
271 (g,m, deps) = parse_logfile (filenm)
272 cs = tfm_checksum (re.sub ('.log$', '.tfm', filenm))
273 afm = open (afmfile_nm, 'w')
275 write_afm_header (afm)
276 afm.write ("Comment TfmCheckSum %u\n" % cs)
277 write_afm_metric (afm, g, m)
279 write_tex_defs (open (texfile_nm, 'w'), g, m)
280 write_ps_encoding (open (enc_nm, 'w'), g, m)
282 write_deps (open (depfile_nm, 'wb'), deps, [base + '.dvi', base + '.pfa', base + '.pfb', texfile_nm, afmfile_nm])
283 if lyfile_nm != '':
284 write_fontlist(open (lyfile_nm, 'w'), g, m)