]> git.donarmstrong.com Git - lilypond.git/blobdiff - buildscripts/mf-to-table.py
(define-fonts, font-command,
[lilypond.git] / buildscripts / mf-to-table.py
index d11bb5ce90cc30224a35257e0f109c803079f5b2..365dedb02afd1112a7815f5092e7f7f21df3ef1d 100644 (file)
@@ -4,7 +4,7 @@
 # 
 # source file of the GNU LilyPond music typesetter
 # 
-# (c) 1997 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+# (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 
 import os
 import sys
@@ -52,7 +52,7 @@ def tfm_checksum (fn):
        shift = 24
        cs = 0
        for b in cs_bytes:
-               cs = cs  + (ord (b) << shift)
+               cs = cs  + (long (ord (b)) << shift)
                shift = shift - 8
 
        return cs
@@ -72,13 +72,15 @@ def parse_logfile (fn):
                elif tags[0] == 'char':
                        m = {
                                'description':  tags[1],
-                               'name': group + '-' + tags[7],
-                               'tex': tags[8],
+                               'name': group + '-' + tags[9],
+                               'tex': tags[10],
                                'code': string.atoi (tags[2]),
                                'breapth':string.atof (tags[3]),
                                'width': string.atof (tags[4]),
                                'depth':string.atof (tags[5]),
-                               'height':string.atof (tags[6])
+                               'height':string.atof (tags[6]),
+                               'wx': string.atof (tags[7]),
+                               'wy':string.atof (tags[8]),
                                }
                        charmetrics.append (m)
                elif tags[0] == 'font':
@@ -89,7 +91,12 @@ def parse_logfile (fn):
                        #urg
                        if 0: #testing
                                tags.append ('Regular')
+
+                       
+                       encoding = re.sub (' ','-', tags[5])
+                       tags = tags[:-1]
                        name = tags[1:]
+                       global_info['DesignSize'] = string.atof (tags[4])
                        global_info['FontName'] = string.join (name,'-')
                        global_info['FullName'] = string.join (name,' ')
                        global_info['FamilyName'] = string.join (name[1:-1],
@@ -98,10 +105,11 @@ def parse_logfile (fn):
                                global_info['Weight'] = tags[4]
                        else: #testing
                                global_info['Weight'] = tags[-1]
+                               
                        global_info['FontBBox'] = '0 0 1000 1000'
                        global_info['Ascender'] = '0'
                        global_info['Descender'] = '0'
-                       global_info['EncodingScheme'] = 'FontSpecific'
+                       global_info['EncodingScheme'] = encoding
        
        return (global_info, charmetrics, deps)
 
@@ -110,15 +118,15 @@ def write_afm_char_metric(file, charmetric):
 
        f = 1000;
        tup = (charmetric['code'],
-              (charmetric['width'] + charmetric['breapth'])*f,
                charmetric['name'],
                -charmetric['breapth'] *f,
                -charmetric['depth']*f,
                charmetric['width']*f,
-               charmetric['height']*f)
-       
+               charmetric['height']*f,
+              charmetric['wx'] * f,
+              charmetric['wy'] * f)
        
-       file.write ('C %d ; WX %d ; N  %s ;  B %d %d %d %d ;\n'% tup)
+       file.write ('C %d ; N %s ; B %d %d %d %d ; W %d %d ;\n'% tup)
 
 def write_afm_header (file):
        file.write ("StartFontMetrics 2.0\n")
@@ -141,12 +149,12 @@ def write_tex_defs (file, global_info, charmetrics):
                file.write (r'''\gdef\%s%s{\char%d}%%%s''' % (nm, m['tex'], m['code'],'\n'))
        file.write ('\\endinput\n')
 
-def write_ps_encoding (file, global_info, charmetrics):
+def write_ps_encoding (name, file, global_info, charmetrics):
        encs = ['.notdef'] * 256
        for m in charmetrics:
                encs[m['code']] = m['tex']
-               
-       file.write ('/FetaEncoding [\n')
+
+       file.write ('/%s [\n' % name)
        for m in range(0,256):
                file.write ('  /%s %% %d\n' % (encs[m], m))
        file.write ('] def\n')
@@ -154,33 +162,47 @@ def write_ps_encoding (file, global_info, charmetrics):
 def write_fontlist (file, global_info, charmetrics):
        ##nm = global_info['FontFamily']
        nm = font_family
+       per_line = 3
        file.write (r"""
-% Lilypond file to list all font symbols and the corresponding names
-% Automatically generated by mf-to-table.py
-\score{\notes{\fatText
-""")
+%% LilyPond file to list all font symbols and the corresponding names
+%% Automatically generated by mf-to-table.py
+\score{ \lyrics \new Lyrics { \time %d/8
+""" % (2*per_line+1))
+
+       count = 0
        for m in charmetrics:
-               escapedname=re.sub('_','\\\\\\\\_', m['name'])
-               file.write ('s^\\markup { \\musicglyph #"%s" "%s" }\n' % (m['name'], escapedname))
+
+               count += 1
+               
+## \musicglyph and \markup require "_" to be escaped differently:
+               
+
+               scm_string = re.sub('_', r'_', m['name'])
+               tex_string = re.sub ('_', r'\\_' , m['name'])
+               
+## prevent TeX from interpreting "--" as long dash:
+               tex_string=re.sub('--','-{}-', tex_string)
+
+               file.write ('  \\markup { \\raise #0.75 \\vcenter \\musicglyph #"%s" " %s" } 4 \n' % (scm_string, tex_string))
+
+               if (count % 3) ==0:
+                       file.write ('\skip 8  \\break\n')
        file.write (r"""
 }
   \paper{
-    interscoreline=1
-    \translator{
-      \ScoreContext
-      \remove "Bar_number_engraver"
-      TextScript \override #'extra-X-extent = #'(-1 . 1)
-    }
-    \translator{
-      \StaffContext
-      \remove "Clef_engraver"
-      \remove "Key_engraver"
-      \remove "Time_signature_engraver"
-      \remove "Staff_symbol_engraver"
+    interscoreline = 1.0
+    indent = 0.0 \cm
+    \context {
+      \LyricsContext
+      \override SeparationItem #'padding = #2
       minimumVerticalExtent = ##f
     }
-  }
-}
+    \context {
+       \ScoreContext
+       \remove "Bar_number_engraver"
+       }
+       }
+       }
 """)
 
 def write_deps (file, deps, targets):
@@ -195,16 +217,19 @@ def write_deps (file, deps, targets):
        file.write ('\n')
 
 def help():
-    sys.stdout.write(r"""Usage: mf-to-table [options] LOGFILEs
-Generate feta metrics table from preparated feta log\n
+    sys.stdout.write(r"""Usage: mf-to-table [OPTIONS] LOGFILEs
+Generate feta metrics table from preparated feta log.
+
 Options:
-  -a, --afm=FILE         .afm file
+  -a, --afm=FILE         specify .afm file
   -d, --dep=FILE         print dependency info to FILE
   -h, --help             print this help
   -l, --ly=FILE          name output table
   -o, --outdir=DIR       prefix for dependency info
   -p, --package=DIR      specify package
-  -t, --tex=FILE         name output tex chardefs"""
+  -t, --tex=FILE         name output tex chardefs
+
+  """
 )
     sys.exit (0)
 
@@ -255,11 +280,22 @@ for filenm in files:
        afm = open (afmfile_nm, 'w')
 
        write_afm_header (afm)
-       afm.write ("Comment TfmCheckSum %u\n" % cs)
+       afm.write ("Comment TfmCheckSum %d\n" % cs)
+       afm.write ("Comment DesignSize %.2f\n" % g['DesignSize'])
+
+       del g['DesignSize']
+       
        write_afm_metric (afm, g, m)
        
        write_tex_defs (open (texfile_nm, 'w'), g, m)
-       write_ps_encoding (open (enc_nm, 'w'), g, m)
+       enc_name = 'FetaEncoding'
+       if re.search ('parmesan', filenm) :
+               enc_name = 'ParmesanEncoding'
+       elif re.search ('feta-brace', filenm) :
+               enc_name = 'FetaBraceEncoding'
+
+               
+       write_ps_encoding (enc_name, open (enc_nm, 'w'), g, m)
 
        write_deps (open (depfile_nm, 'wb'), deps, [base + '.dvi', base + '.pfa', base + '.pfb',  texfile_nm, afmfile_nm])
        if lyfile_nm != '':