]> git.donarmstrong.com Git - lilypond.git/blobdiff - scripts/midi2ly.py
release: 1.5.19
[lilypond.git] / scripts / midi2ly.py
index 654062863281faeacad80481ae6eaec6a3ed4e85..f43ae51921ca232f0626f33f58a372e8af79eba3 100644 (file)
@@ -24,12 +24,14 @@ TODO:
 
 import os
 import sys
+import getopt
+import sys
+import string
 
-# if set, LILYPONDPREFIX must take prevalence
-# if datadir is not set, we're doing a build and LILYPONDPREFIX 
+
+# do fuddling: we must load the midi module from the right directory. 
 datadir = '@datadir@'
-if os.environ.has_key ('LILYPONDPREFIX') \
-   or '@datadir@' == '@' + 'datadir' + '@':
+if os.environ.has_key ('LILYPONDPREFIX'):
        datadir = os.environ['LILYPONDPREFIX']
 else:
        datadir = '@datadir@'
@@ -37,13 +39,34 @@ else:
 sys.path.append (os.path.join (datadir, 'python'))
 sys.path.append (os.path.join (datadir, 'python/out'))
 
-
-import getopt
-import __main__
-import sys
-import string
 import midi
 
+################################################################
+################ CONSTANTS
+
+
+output_name = ''
+LINE_BELL = 60
+scale_steps = [0,2,4,5,7,9,11]
+
+clocks_per_1 = 1536
+clocks_per_4 = 0
+key = 0
+time = 0
+reference_note = 0
+start_quant = 0
+start_quant_clocks = 0
+duration_quant = 0
+duration_quant_clocks = 0
+allowed_tuplets = []
+allowed_tuplet_clocks = []
+absolute_p = 0
+explicit_durations_p = 0
+text_lyrics_p = 0
+
+
+
+################################################################
 
 localedir = '@localedir@'
 try:
@@ -83,9 +106,186 @@ option_definitions = [
        ('', 'x', 'text-lyrics', _ ("treat every text as a lyric")),
        ]
 
-# from lilylib import *
-import lilylib
+################################################################
+# lilylib.py -- options and stuff
+# 
+# source file of the GNU LilyPond music typesetter
+
+import os
 
+try:
+       import gettext
+       gettext.bindtextdomain ('lilypond', localedir)
+       gettext.textdomain ('lilypond')
+       _ = gettext.gettext
+except:
+       def _ (s):
+               return s
+
+if program_version == '@' + 'TOPLEVEL_VERSION' + '@':
+       program_version = '1.5.17'
+
+def identify ():
+       sys.stdout.write ('%s (GNU LilyPond) %s\n' % (program_name, program_version))
+
+def warranty ():
+       identify ()
+       sys.stdout.write ('\n')
+       sys.stdout.write (_ ('Copyright (c) %s by' % ' 2001'))
+       sys.stdout.write ('\n')
+       sys.stdout.write ('  Han-Wen Nienhuys')
+       sys.stdout.write ('  Jan Nieuwenhuizen')
+       sys.stdout.write ('\n')
+       sys.stdout.write (_ (r'''
+Distributed under terms of the GNU General Public License. It comes with
+NO WARRANTY.'''))
+       sys.stdout.write ('\n')
+
+def progress (s):
+       errorport.write (s + '\n')
+
+def warning (s):
+       progress (_ ("warning: ") + s)
+               
+def error (s):
+
+
+       '''Report the error S.  Exit by raising an exception. Please
+       do not abuse by trying to catch this error. If you do not want
+       a stack trace, write to the output directly.
+
+       RETURN VALUE
+
+       None
+       
+       '''
+       
+       progress (_ ("error: ") + s)
+       raise _ ("Exiting ... ")
+
+def getopt_args (opts):
+       '''Construct arguments (LONG, SHORT) for getopt from  list of options.'''
+       short = ''
+       long = []
+       for o in opts:
+               if o[1]:
+                       short = short + o[1]
+                       if o[0]:
+                               short = short + ':'
+               if o[2]:
+                       l = o[2]
+                       if o[0]:
+                               l = l + '='
+                       long.append (l)
+       return (short, long)
+
+def option_help_str (o):
+       '''Transform one option description (4-tuple ) into neatly formatted string'''
+       sh = '  '       
+       if o[1]:
+               sh = '-%s' % o[1]
+
+       sep = ' '
+       if o[1] and o[2]:
+               sep = ','
+               
+       long = ''
+       if o[2]:
+               long= '--%s' % o[2]
+
+       arg = ''
+       if o[0]:
+               if o[2]:
+                       arg = '='
+               arg = arg + o[0]
+       return '  ' + sh + sep + long + arg
+
+
+def options_help_str (opts):
+       '''Convert a list of options into a neatly formatted string'''
+       w = 0
+       strs =[]
+       helps = []
+
+       for o in opts:
+               s = option_help_str (o)
+               strs.append ((s, o[3]))
+               if len (s) > w:
+                       w = len (s)
+
+       str = ''
+       for s in strs:
+               str = str + '%s%s%s\n' % (s[0], ' ' * (w - len(s[0])  + 3), s[1])
+       return str
+
+def help ():
+       ls = [(_ ("Usage: %s [OPTION]... FILE") % program_name),
+               ('\n\n'),
+               (help_summary),
+               ('\n\n'),
+               (_ ("Options:")),
+               ('\n'),
+               (options_help_str (option_definitions)),
+               ('\n\n'),
+               (_ ("Report bugs to %s") % 'bug-lilypond@gnu.org'),
+               ('\n')]
+       map (sys.stdout.write, ls)
+       
+def setup_temp ():
+       """
+       Create a temporary directory, and return its name. 
+       """
+       global temp_dir
+       if not keep_temp_dir_p:
+               temp_dir = tempfile.mktemp (program_name)
+       try:
+               os.mkdir (temp_dir, 0777)
+       except OSError:
+               pass
+
+       return temp_dir
+
+
+def system (cmd, ignore_error = 0):
+       """Run CMD. If IGNORE_ERROR is set, don't complain when CMD returns non zero.
+
+       RETURN VALUE
+
+       Exit status of CMD
+       """
+       
+       if verbose_p:
+               progress (_ ("Invoking `%s\'") % cmd)
+       st = os.system (cmd)
+       if st:
+               name = re.match ('[ \t]*([^ \t]*)', cmd).group (1)
+               msg = name + ': ' + _ ("command exited with value %d") % st
+               if ignore_error:
+                       warning (msg + ' ' + _ ("(ignored)") + ' ')
+               else:
+                       error (msg)
+
+       return st
+
+
+def cleanup_temp ():
+       if not keep_temp_dir_p:
+               if verbose_p:
+                       progress (_ ("Cleaning %s...") % temp_dir)
+               shutil.rmtree (temp_dir)
+
+
+def strip_extension (f, ext):
+       (p, e) = os.path.splitext (f)
+       if e == ext:
+               e = ''
+       return p + e
+
+################################################################
+# END Library
+################################################################
+
+\f
 
 
 class Duration:
@@ -249,6 +449,7 @@ class Note:
 
                global reference_note
                reference_note = self
+               
                # TODO: move space
                return s + ' '
 
@@ -367,25 +568,6 @@ class Text:
                return s
 
 
-output_name = ''
-LINE_BELL = 60
-scale_steps = [0,2,4,5,7,9,11]
-
-clocks_per_1 = 1536
-clocks_per_4 = 0
-key = 0
-time = 0
-reference_note = 0
-start_quant = 0
-start_quant_clocks = 0
-duration_quant = 0
-duration_quant_clocks = 0
-allowed_tuplets = []
-allowed_tuplet_clocks = []
-absolute_p = 0
-explicit_durations_p = 0
-text_lyrics_p = 0
-
 def split_track (track):
        chs = {}
        for i in range(16):
@@ -811,7 +993,7 @@ def convert_midi (f, o):
                        s = s + '    \\context Lyrics=%s \\%s\n' % (track, track)
        s = s + '  >\n}\n'
 
-       lilylib.progress (_ ("%s output to `%s'...") % ('LY', o))
+       progress (_ ("%s output to `%s'...") % ('LY', o))
 
        if o == '-':
                h = sys.stdout
@@ -822,7 +1004,7 @@ def convert_midi (f, o):
        h.close ()
 
 
-(sh, long) = lilylib.getopt_args (option_definitions)
+(sh, long) = getopt_args (option_definitions)
 try:
        (options, files) = getopt.getopt(sys.argv[1:], sh, long)
 except getopt.error, s:
@@ -830,7 +1012,7 @@ except getopt.error, s:
        errorport.write (_ ("error: ") + _ ("getopt says: `%s\'" % s))
        errorport.write ('\n')
        errorport.write ('\n')
-       lilylib.help ()
+       help ()
        sys.exit (2)
        
 for opt in options:    
@@ -840,7 +1022,7 @@ for opt in options:
        if 0:
                pass
        elif o == '--help' or o == '-h':
-               lilylib.help ()
+               help ()
                errorport.write ('\n')
                errorport.write (_ ("Example:"))
                errorport.write  (r'''
@@ -853,7 +1035,7 @@ for opt in options:
        elif o == '--verbose' or o == '-V':
                verbose_p = 1
        elif o == '--version' or o == '-v':
-               lilylib.identify ()
+               identify ()
                sys.exit (0)
        elif o == '--warranty' or o == '-w':
                status = system ('lilypond -w', ignore_error = 1)
@@ -882,10 +1064,8 @@ for opt in options:
                global key
                key = Key (sharps, flats, minor)
        elif o == '--start-quant' or o == '-s':
-               global start_quant, start_quant_clocks
                start_quant = string.atoi (a)
        elif o == '--allow-tuplet' or o == '-t':
-               global allowed_tuplets
                a = string.replace (a, '/', '*')
                tuplet = map (string.atoi, string.split (a, '*'))
                allowed_tuplets.append (tuplet)
@@ -897,7 +1077,7 @@ for opt in options:
 if not files or files[0] == '-':
 
        # FIXME: read from stdin when files[0] = '-'
-       lilylib.help ()
+       help ()
        errorport.write (program_name + ":" + _ ("error: ") + _ ("no files specified on command line.") + '\n')
        sys.exit (2)
 
@@ -905,9 +1085,9 @@ if not files or files[0] == '-':
 for f in files:
 
        g = f
-       g = lilylib.strip_extension (g, '.midi')
-       g = lilylib.strip_extension (g, '.mid')
-       g = lilylib.strip_extension (g, '.MID')
+       g = strip_extension (g, '.midi')
+       g = strip_extension (g, '.mid')
+       g = strip_extension (g, '.MID')
        (outdir, outbase) = ('','')
 
        if not output_name: