]> git.donarmstrong.com Git - lilypond.git/blob - scripts/midi2ly.py
Issue 4945/1: midi2ly -e should not print durations in chords
[lilypond.git] / scripts / midi2ly.py
1 #!@TARGET_PYTHON@
2 #
3 # midi2ly.py -- LilyPond midi import script
4
5 # This file is part of LilyPond, the GNU music typesetter.
6 #
7 # Copyright (C) 1998--2015  Han-Wen Nienhuys <hanwen@xs4all.nl>
8 #                           Jan Nieuwenhuizen <janneke@gnu.org>
9 #
10 # LilyPond is free software: you can redistribute it and/or modify
11 # it under the terms of the GNU General Public License as published by
12 # the Free Software Foundation, either version 3 of the License, or
13 # (at your option) any later version.
14 #
15 # LilyPond is distributed in the hope that it will be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 # GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License
21 # along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
22
23
24 '''
25 TODO:
26 '''
27
28 import os
29 import sys
30
31 """
32 @relocate-preamble@
33 """
34
35 import lilylib as ly
36 global _;_=ly._
37
38 ################################################################
39 ## CONSTANTS
40
41
42 LINE_BELL = 60
43 scale_steps = [0, 2, 4, 5, 7, 9, 11]
44 global_options = None
45
46 clocks_per_1 = 1536
47 clocks_per_4 = 0
48
49 time = None
50 reference_note = 0
51 start_quant_clocks = 0
52
53 duration_quant_clocks = 0
54 allowed_tuplet_clocks = []
55 bar_max = 0
56
57 ################################################################
58
59
60 program_name = sys.argv[0]
61 program_version = '@TOPLEVEL_VERSION@'
62
63 authors = ('Jan Nieuwenhuizen <janneke@gnu.org>',
64            'Han-Wen Nienhuys <hanwen@xs4all.nl>')
65
66 errorport = sys.stderr
67
68 def identify ():
69     sys.stdout.write ('%s (GNU LilyPond) %s\n' % (program_name, program_version))
70
71 def warranty ():
72     identify ()
73     ly.encoded_write (sys.stdout, '''
74 %s
75
76   %s
77
78 %s
79 %s
80 ''' % ( _ ('Copyright (c) %s by') % '1998--2015',
81         '\n  '.join (authors),
82         _ ('Distributed under terms of the GNU General Public License.'),
83         _ ('It comes with NO WARRANTY.')))
84
85 def progress (s):
86     ly.encoded_write (errorport, s + '\n')
87
88 def warning (s):
89     progress (_ ("warning: ") + s)
90
91 def error (s):
92     progress (_ ("error: ") + s)
93     raise Exception (_ ("Exiting... "))
94
95 def debug (s):
96     if global_options.debug:
97         progress ("debug: " + s)
98
99 def system (cmd, ignore_error = 0):
100     return ly.system (cmd, ignore_error=ignore_error)
101
102 def strip_extension (f, ext):
103     (p, e) = os.path.splitext (f)
104     if e == ext:
105         e = ''
106     return p + e
107
108
109 class Duration:
110     allowed_durs = (1, 2, 4, 8, 16, 32, 64, 128)
111     def __init__ (self, clocks):
112         self.clocks = clocks
113         (self.dur, self.num, self.den) = self.dur_num_den (clocks)
114
115     def dur_num_den (self, clocks):
116         for i in range (len (allowed_tuplet_clocks)):
117             if clocks == allowed_tuplet_clocks[i]:
118                 return global_options.allowed_tuplets[i]
119
120         dur = 0; num = 1; den = 1;
121         g = gcd (clocks, clocks_per_1)
122         if g:
123             (dur, num) = (clocks_per_1 / g, clocks / g)
124         if not dur in self.allowed_durs:
125             dur = 4; num = clocks; den = clocks_per_4
126         return (dur, num, den)
127
128     def dump (self):
129         if self.den == 1:
130             if self.num == 1:
131                 s = '%d' % self.dur
132             elif self.num == 3 and self.dur != 1:
133                 s = '%d.' % (self.dur / 2)
134             else:
135                 s = '%d*%d' % (self.dur, self.num)
136         else:
137             s = '%d*%d/%d' % (self.dur, self.num, self.den)
138
139         global reference_note
140         reference_note.duration = self
141
142         return s
143
144     def compare (self, other):
145         return self.clocks - other.clocks
146
147 def sign (x):
148     if x >= 0:
149         return 1
150     else:
151         return -1
152
153 class Note:
154     names = (0, 0, 1, 1, 2, 3, 3, 4, 4, 5, 5, 6)
155     alterations = (0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 1, 0)
156     alteration_names = ('eses', 'es', '', 'is' , 'isis')
157     def __init__ (self, clocks, pitch, velocity):
158         self.pitch = pitch
159         self.velocity = velocity
160         # hmm
161         self.clocks = clocks
162         self.duration = Duration (clocks)
163         (self.octave, self.notename, self.alteration) = self.o_n_a ()
164
165     def o_n_a (self):
166         # major scale: do-do
167         # minor scale: la-la  (= + 5) '''
168
169         n = self.names[(self.pitch) % 12]
170         a = self.alterations[(self.pitch) % 12]
171
172         key = global_options.key
173         if not key:
174             key = Key (0, 0, 0)
175
176         if a and key.flats:
177             a = - self.alterations[(self.pitch) % 12]
178             n = (n - a) % 7
179
180         #  By tradition, all scales now consist of a sequence
181         #  of 7 notes each with a distinct name, from amongst
182         #  a b c d e f g.  But, minor scales have a wide
183         #  second interval at the top - the 'leading note' is
184         #  sharped. (Why? it just works that way! Anything
185         #  else doesn't sound as good and isn't as flexible at
186         #  saying things. In medieval times, scales only had 6
187         #  notes to avoid this problem - the hexachords.)
188
189         #  So, the d minor scale is d e f g a b-flat c-sharp d
190         #  - using d-flat for the leading note would skip the
191         #  name c and duplicate the name d.  Why isn't c-sharp
192         #  put in the key signature? Tradition. (It's also
193         #  supposedly based on the Pythagorean theory of the
194         #  cycle of fifths, but that really only applies to
195         #  major scales...)  Anyway, g minor is g a b-flat c d
196         #  e-flat f-sharp g, and all the other flat minor keys
197         #  end up with a natural leading note. And there you
198         #  have it.
199
200         #  John Sankey <bf250@freenet.carleton.ca>
201         #
202         #  Let's also do a-minor: a b c d e f gis a
203         #
204         #  --jcn
205
206         o = self.pitch / 12 - 4
207
208         if key.minor:
209             # as -> gis
210             if (key.sharps == 0 and key.flats == 0
211                 and n == 5 and a == -1):
212                 n = 4; a = 1
213             # des -> cis
214             elif key.flats == 1 and n == 1 and a == -1:
215                 n = 0; a = 1
216             # ges -> fis
217             elif key.flats == 2 and n == 4 and a == -1:
218                 n = 3; a = 1
219             # g -> fisis
220             elif key.sharps == 5 and n == 4 and a == 0:
221                 n = 3; a = 2
222             # d -> cisis
223             elif key.sharps == 6 and n == 1 and a == 0:
224                 n = 0; a = 2
225             # a -> gisis
226             elif key.sharps == 7 and n == 5 and a == 0:
227                 n = 4; a = 2
228
229         # b -> ces
230         if key.flats >= 6 and n == 6 and a == 0:
231             n = 0; a = -1; o = o + 1
232         # e -> fes
233         if key.flats >= 7 and n == 2 and a == 0:
234             n = 3; a = -1
235
236         # f -> eis
237         if key.sharps >= 3 and n == 3 and a == 0:
238             n = 2; a = 1
239         # c -> bis
240         if key.sharps >= 4 and n == 0 and a == 0:
241             n = 6; a = 1; o = o - 1
242
243         return (o, n, a)
244
245     def __repr__ (self):
246         s = chr ((self.notename + 2)  % 7 + ord ('a'))
247         return 'Note(%s %s)' % (s, self.duration.dump ())
248
249     def dump (self, dump_dur=True):
250         global reference_note
251         s = chr ((self.notename + 2)  % 7 + ord ('a'))
252         s = s + self.alteration_names[self.alteration + 2]
253         if global_options.absolute_pitches:
254             commas = self.octave
255         else:
256             delta = self.pitch - reference_note.pitch
257             commas = sign (delta) * (abs (delta) / 12)
258             if (((sign (delta)
259                   * (self.notename - reference_note.notename) + 7)
260                  % 7 >= 4)
261                 or ((self.notename == reference_note.notename)
262                     and (abs (delta) > 4) and (abs (delta) < 12))):
263                 commas = commas + sign (delta)
264
265         if commas > 0:
266             s = s + "'" * commas
267         elif commas < 0:
268             s = s + "," * -commas
269
270         if (dump_dur
271             and (self.duration.compare (reference_note.duration)
272                  or global_options.explicit_durations)):
273             s = s + self.duration.dump ()
274
275         # Chords need to handle their reference duration themselves
276
277         reference_note = self
278
279         # TODO: move space
280         return s + ' '
281
282
283 class Time:
284     def __init__ (self, num, den):
285         self.clocks = 0
286         self.num = num
287         self.den = den
288
289     def bar_clocks (self):
290         return clocks_per_1 * self.num / self.den
291
292     def __repr__ (self):
293         return 'Time(%d/%d)' % (self.num, self.den)
294
295     def dump (self):
296         global time
297         time = self
298         return '\n  ' + '\\time %d/%d ' % (self.num, self.den) + '\n  '
299
300 class Tempo:
301     def __init__ (self, seconds_per_1):
302         self.clocks = 0
303         self.seconds_per_1 = seconds_per_1
304
305     def __repr__ (self):
306         return 'Tempo(%d)' % self.bpm ()
307
308     def bpm (self):
309         return 4 * 60 / self.seconds_per_1
310
311     def dump (self):
312         return '\n  ' + '\\tempo 4 = %d ' % (self.bpm ()) + '\n  '
313
314 class Clef:
315     clefs = ('"bass_8"', 'bass', 'violin', '"violin^8"')
316     def __init__ (self, type):
317         self.type = type
318
319     def __repr__ (self):
320         return 'Clef(%s)' % self.clefs[self.type]
321
322     def dump (self):
323         return '\n  \\clef %s\n  ' % self.clefs[self.type]
324
325 class Key:
326     key_sharps = ('c', 'g', 'd', 'a', 'e', 'b', 'fis')
327     key_flats = ('BUG', 'f', 'bes', 'es', 'as', 'des', 'ges')
328
329     def __init__ (self, sharps, flats, minor):
330         self.clocks = 0
331         self.flats = flats
332         self.sharps = sharps
333         self.minor = minor
334
335     def dump (self):
336         global_options.key = self
337
338         s = ''
339         if self.sharps and self.flats:
340             pass
341         else:
342             if self.flats:
343                 k = (ord ('cfbeadg'[self.flats % 7]) - ord ('a') - 2 -2 * self.minor + 7) % 7
344             else:
345                 k = (ord ('cgdaebf'[self.sharps % 7]) - ord ('a') - 2 -2 * self.minor + 7) % 7
346
347             if not self.minor:
348                 name = chr ((k + 2) % 7 + ord ('a'))
349             else:
350                 name = chr ((k + 2) % 7 + ord ('a'))
351
352             # fis cis gis dis ais eis bis
353             sharps = (2, 4, 6, 1, 3, 5, 7)
354             # bes es as des ges ces fes
355             flats = (6, 4, 2, 7, 5, 3, 1)
356             a = 0
357             if self.flats:
358                 if flats[k] <= self.flats:
359                     a = -1
360             else:
361                 if sharps[k] <= self.sharps:
362                     a = 1
363
364             if a:
365                 name = name + Note.alteration_names[a + 2]
366
367             s = '\\key ' + name
368             if self.minor:
369                 s = s + ' \\minor'
370             else:
371                 s = s + ' \\major'
372
373         return '\n\n  ' + s + '\n  '
374
375
376 class Text:
377     text_types = (
378         'SEQUENCE_NUMBER',
379         'TEXT_EVENT',
380         'COPYRIGHT_NOTICE',
381         'SEQUENCE_TRACK_NAME',
382         'INSTRUMENT_NAME',
383         'LYRIC',
384         'MARKER',
385         'CUE_POINT',)
386
387     def __init__ (self, type, text):
388         self.clocks = 0
389         self.type = type
390         self.text = text
391
392     def dump (self):
393         # urg, we should be sure that we're in a lyrics staff
394         s = ''
395         if self.type == midi.LYRIC:
396             s = '"%s"' % self.text
397             d = Duration (self.clocks)
398             if (global_options.explicit_durations
399                 or d.compare (reference_note.duration)):
400                 s = s + Duration (self.clocks).dump ()
401             s = s + ' '
402         elif (self.text.strip ()
403               and self.type == midi.SEQUENCE_TRACK_NAME
404               and not self.text == 'control track'
405               and not self.track.lyrics_p_):
406             text = self.text.replace ('(MIDI)', '').strip ()
407             if text:
408                 s = '\n  \\set Staff.instrumentName = "%(text)s"\n  ' % locals ()
409         elif self.text.strip ():
410             s = '\n  % [' + self.text_types[self.type] + '] ' + self.text + '\n  '
411         return s
412
413     def __repr__ (self):
414         return 'Text(%d=%s)' % (self.type, self.text)
415
416 def get_voice (channel, music):
417     debug ('channel: ' + str (channel) + '\n')
418     return unthread_notes (music)
419
420 class Channel:
421     def __init__ (self, number):
422         self.number = number
423         self.events = []
424         self.music = None
425     def add (self, event):
426         self.events.append (event)
427     def get_voice (self):
428         if not self.music:
429             self.music = self.parse ()
430         return get_voice (self.number, self.music)
431     def parse (self):
432         pitches = {}
433         notes = []
434         music = []
435         last_lyric = 0
436         last_time = 0
437         for e in self.events:
438             t = e[0]
439
440             if start_quant_clocks:
441                 t = quantise_clocks (t, start_quant_clocks)
442
443             if (e[1][0] == midi.NOTE_OFF
444                 or (e[1][0] == midi.NOTE_ON and e[1][2] == 0)):
445                 debug ('%d: NOTE OFF: %s' % (t, e[1][1]))
446                 if not e[1][2]:
447                     debug ('   ...treated as OFF')
448                 end_note (pitches, notes, t, e[1][1])
449
450             elif e[1][0] == midi.NOTE_ON:
451                 if not pitches.has_key (e[1][1]):
452                     debug ('%d: NOTE ON: %s' % (t, e[1][1]))
453                     pitches[e[1][1]] = (t, e[1][2])
454                 else:
455                     debug ('...ignored')
456
457             # all include ALL_NOTES_OFF
458             elif (e[1][0] >= midi.ALL_SOUND_OFF
459               and e[1][0] <= midi.POLY_MODE_ON):
460                 for i in pitches:
461                     end_note (pitches, notes, t, i)
462
463             elif e[1][0] == midi.META_EVENT:
464                 if e[1][1] == midi.END_OF_TRACK:
465                     for i in pitches:
466                         end_note (pitches, notes, t, i)
467                     break
468
469                 elif e[1][1] == midi.SET_TEMPO:
470                     (u0, u1, u2) = map (ord, e[1][2])
471                     us_per_4 = u2 + 256 * (u1 + 256 * u0)
472                     seconds_per_1 = us_per_4 * 4 / 1e6
473                     music.append ((t, Tempo (seconds_per_1)))
474                 elif e[1][1] == midi.TIME_SIGNATURE:
475                     (num, dur, clocks4, count32) = map (ord, e[1][2])
476                     den = 2 ** dur
477                     music.append ((t, Time (num, den)))
478                 elif e[1][1] == midi.KEY_SIGNATURE:
479                     (alterations, minor) = map (ord, e[1][2])
480                     sharps = 0
481                     flats = 0
482                     if alterations < 127:
483                         sharps = alterations
484                     else:
485                         flats = 256 - alterations
486
487                     k = Key (sharps, flats, minor)
488                     if not t and global_options.key:
489                         # At t == 0, a set --key overrides us
490                         k = global_options.key
491                     music.append ((t, k))
492
493                     # ugh, must set key while parsing
494                     # because Note init uses key
495                     # Better do Note.calc () at dump time?
496                     global_options.key = k
497
498                 elif (e[1][1] == midi.LYRIC
499                       or (global_options.text_lyrics
500                           and e[1][1] == midi.TEXT_EVENT)):
501                     self.lyrics_p_ = True
502                     if last_lyric:
503                         last_lyric.clocks = t - last_time
504                         music.append ((last_time, last_lyric))
505                     last_time = t
506                     last_lyric = Text (midi.LYRIC, e[1][2])
507
508                 elif (e[1][1] >= midi.SEQUENCE_NUMBER
509                       and e[1][1] <= midi.CUE_POINT):
510                     text = Text (e[1][1], e[1][2])
511                     text.track = self
512                     music.append ((t, text))
513                     if (text.type == midi.SEQUENCE_TRACK_NAME):
514                         self.name = text.text
515                 else:
516                     if global_options.verbose:
517                         sys.stderr.write ("SKIP: %s\n" % `e`)
518             else:
519                 if global_options.verbose:
520                     sys.stderr.write ("SKIP: %s\n" % `e`)
521
522         if last_lyric:
523             # last_lyric.clocks = t - last_time
524             # hmm
525             last_lyric.clocks = clocks_per_4
526             music.append ((last_time, last_lyric))
527             last_lyric = 0
528
529         i = 0
530         while len (notes):
531             if i < len (music) and notes[0][0] >= music[i][0]:
532                 i = i + 1
533             else:
534                 music.insert (i, notes[0])
535                 del notes[0]
536         return music
537     
538 class Track (Channel):
539     def __init__ (self):
540         Channel.__init__ (self, None)
541         self.name = None
542         self.channels = {}
543         self.lyrics_p_ = False
544     def _add (self, event):
545         self.events.append (event)
546     def add (self, event, channel=None):
547         if channel == None:
548             self._add (event)
549         else:
550             self.channels[channel] = self.channels.get (channel, Channel (channel))
551             self.channels[channel].add (event)
552     def get_voices (self):
553         return ([self.get_voice ()]
554                 + [self.channels[k].get_voice ()
555                    for k in sorted (self.channels.keys ())])
556
557 def create_track (events):
558     track = Track ()
559     for e in events:
560         data = list (e[1])
561         if data[0] > 0x7f and data[0] < 0xf0:
562             channel = data[0] & 0x0f
563             e = (e[0], tuple ([data[0] & 0xf0] + data[1:]))
564             track.add (e, channel)
565         else:
566             track.add (e)
567     return track
568
569 def quantise_clocks (clocks, quant):
570     q = int (clocks / quant) * quant
571     if q != clocks:
572         for tquant in allowed_tuplet_clocks:
573             if int (clocks / tquant) * tquant == clocks:
574                 return clocks
575         if 2 * (clocks - q) > quant:
576             q = q + quant
577     return q
578
579 def end_note (pitches, notes, t, e):
580     try:
581         (lt, vel) = pitches[e]
582         del pitches[e]
583
584         i = len (notes) - 1
585         while i > 0:
586             if notes[i][0] > lt:
587                 i = i -1
588             else:
589                 break
590         d = t - lt
591         if duration_quant_clocks:
592             d = quantise_clocks (d, duration_quant_clocks)
593             if not d:
594                 d = duration_quant_clocks
595
596         notes.insert (i + 1,
597               (lt, Note (d, e, vel)))
598
599     except KeyError:
600         pass
601
602 def unthread_notes (channel):
603     threads = []
604     while channel:
605         thread = []
606         end_busy_t = 0
607         start_busy_t = 0
608         todo = []
609         for e in channel:
610             t = e[0]
611             if (e[1].__class__ == Note
612                 and ((t == start_busy_t
613                       and e[1].clocks + t == end_busy_t)
614                      or t >= end_busy_t)):
615                 thread.append (e)
616                 start_busy_t = t
617                 end_busy_t = t + e[1].clocks
618             elif (e[1].__class__ == Time
619                   or e[1].__class__ == Key
620                   or e[1].__class__ == Text
621                   or e[1].__class__ == Tempo):
622                 thread.append (e)
623             else:
624                 todo.append (e)
625         threads.append (thread)
626         channel = todo
627
628     return threads
629
630 def gcd (a,b):
631     if b == 0:
632         return a
633     c = a
634     while c:
635         c = a % b
636         a = b
637         b = c
638     return a
639
640 def dump_skip (skip, clocks):
641     return skip + Duration (clocks).dump () + ' '
642
643 def dump (d):
644     return d.dump ()
645
646 def dump_chord (ch):
647     s = ''
648     notes = []
649     for i in ch:
650         if i.__class__ == Note:
651             notes.append (i)
652         else:
653             s = s + i.dump ()
654     if len (notes) == 1:
655         s = s + dump (notes[0])
656     elif len (notes) > 1:
657         global reference_note
658         s = s + '<'
659         s = s + notes[0].dump (dump_dur=False)
660         r = reference_note
661         for i in notes[1:]:
662             s = s + i.dump (dump_dur=False)
663         s = s + '>'
664         s = s + notes[0].duration.dump () + ' '
665         reference_note = r
666     return s
667
668 def dump_bar_line (last_bar_t, t, bar_count):
669     s = ''
670     bar_t = time.bar_clocks ()
671     if t - last_bar_t >= bar_t:
672         bar_count = bar_count + (t - last_bar_t) / bar_t
673
674         if t - last_bar_t == bar_t:
675             s = '\n  | %% %(bar_count)d\n  ' % locals ()
676             last_bar_t = t
677         else:
678             # urg, this will barf at meter changes
679             last_bar_t = last_bar_t + (t - last_bar_t) / bar_t * bar_t
680
681     return (s, last_bar_t, bar_count)
682
683
684 def dump_voice (thread, skip):
685     global reference_note, time
686     ref = Note (0, 4*12, 0)
687     if not reference_note:
688         reference_note = ref
689     else:
690         ref.duration = reference_note.duration
691         reference_note = ref
692     last_e = None
693     chs = []
694     ch = []
695
696     for e in thread:
697         if last_e and last_e[0] == e[0]:
698             ch.append (e[1])
699         else:
700             if ch:
701                 chs.append ((last_e[0], ch))
702
703             ch = [e[1]]
704
705         last_e = e
706
707     if ch:
708         chs.append ((last_e[0], ch))
709     t = 0
710     last_t = 0
711     last_bar_t = 0
712     bar_count = 1
713
714     lines = ['']
715     for ch in chs:
716         t = ch[0]
717
718         i = lines[-1].rfind ('\n') + 1
719         if len (lines[-1][i:]) > LINE_BELL:
720             lines.append ('')
721
722         if t - last_t > 0:
723             d = t - last_t
724             if bar_max and t > time.bar_clocks () * bar_max:
725                 d = time.bar_clocks () * bar_max - last_t
726             lines[-1] = lines[-1] + dump_skip (skip, d)
727         elif t - last_t < 0:
728             errorport.write ('BUG: time skew')
729
730         (s, last_bar_t, bar_count) = dump_bar_line (last_bar_t,
731                               t, bar_count)
732
733         if bar_max and bar_count > bar_max:
734             break
735
736         lines[-1] = lines[-1] + s
737         lines[-1] = lines[-1] + dump_chord (ch[1])
738
739         clocks = 0
740         for i in ch[1]:
741             if i.clocks > clocks:
742                 clocks = i.clocks
743
744         last_t = t + clocks
745
746         (s, last_bar_t, bar_count) = dump_bar_line (last_bar_t,
747                                                     last_t, bar_count)
748         lines[-1] = lines[-1] + s
749
750     return '\n  '.join (lines) + '\n'
751
752 def number2ascii (i):
753     s = ''
754     i += 1
755     while i > 0:
756         m = (i - 1) % 26
757         s = '%c' % (m + ord ('A')) + s
758         i = (i - m)/26
759     return s
760
761 def get_track_name (i):
762     return 'track' + number2ascii (i)
763
764 def get_channel_name (i):
765     return 'channel' + number2ascii (i)
766
767 def get_voice_name (i, zero_too_p=False):
768     if i or zero_too_p:
769         return 'voice' + number2ascii (i)
770     return ''
771
772 def lst_append (lst, x):
773     lst.append (x)
774     return lst
775
776 def get_voice_layout (average_pitch):
777     d = {}
778     for i in range (len (average_pitch)):
779         d[average_pitch[i]] = lst_append (d.get (average_pitch[i], []), i)
780     s = list (reversed (sorted (average_pitch)))
781     non_empty = len (filter (lambda x: x, s))
782     names = ['One', 'Two']
783     if non_empty > 2:
784         names = ['One', 'Three', 'Four', 'Two']
785     layout = map (lambda x: '', range (len (average_pitch)))
786     for i, n in zip (s, names):
787         if i:
788             v = d[i]
789             if type (v) == list:
790                 d[i] = v[1:]
791                 v = v[0]
792             layout[v] = n
793     return layout
794
795 def dump_track (track, n):
796     s = '\n'
797     track_name = get_track_name (n)
798
799     average_pitch = track_average_pitch (track)
800     voices = len (filter (lambda x: x, average_pitch[1:]))
801     clef = get_best_clef (average_pitch[0])
802
803     c = 0
804     vv = 0
805     for channel in track:
806         v = 0
807         channel_name = get_channel_name (c)
808         c += 1
809         for voice in channel:
810             voice_name = get_voice_name (v)
811             voice_id = track_name + channel_name + voice_name
812             item = voice_first_item (voice)
813
814             if item and item.__class__ == Note:
815                 skip = 'r'
816                 if global_options.skip:
817                     skip = 's'
818                 s += '%(voice_id)s = ' % locals ()
819                 if not global_options.absolute_pitches:
820                     s += '\\relative c '
821             elif item and item.__class__ == Text:
822                 skip = '" "'
823                 s += '%(voice_id)s = \\lyricmode ' % locals ()
824             else:
825                 skip = '\\skip '
826                 s += '%(voice_id)s = ' % locals ()
827             s += '{\n'
828             if not n and not vv and global_options.key:
829                 s += global_options.key.dump ()
830             if average_pitch[vv+1] and voices > 1:
831                 vl = get_voice_layout (average_pitch[1:])[vv]
832                 if vl:
833                     s += '  \\voice' + vl + '\n'
834                 else:
835                     if not global_options.quiet:
836                         warning (_ ('found more than 5 voices on a staff, expect bad output'))
837             s += '  ' + dump_voice (voice, skip)
838             s += '}\n\n'
839             v += 1
840             vv += 1
841
842     s += '%(track_name)s = <<\n' % locals ()
843
844     if clef.type != 2:
845         s += clef.dump () + '\n'
846
847     c = 0
848     vv = 0
849     for channel in track:
850         v = 0
851         channel_name = get_channel_name (c)
852         c += 1
853         for voice in channel:
854             voice_context_name = get_voice_name (vv, zero_too_p=True)
855             voice_name = get_voice_name (v)
856             v += 1
857             vv += 1
858             voice_id = track_name + channel_name + voice_name
859             item = voice_first_item (voice)
860             context = 'Voice'
861             if item and item.__class__ == Text:
862                 context = 'Lyrics'
863             s += '  \\context %(context)s = %(voice_context_name)s \\%(voice_id)s\n' % locals ()
864     s += '>>\n\n'
865     return s
866
867 def voice_first_item (voice):
868     for event in voice:
869         if (event[1].__class__ == Note
870             or (event[1].__class__ == Text
871                 and event[1].type == midi.LYRIC)):
872             return event[1]
873     return None
874
875 def channel_first_item (channel):
876     for voice in channel:
877         first = voice_first_item (voice)
878         if first:
879             return first
880     return None
881
882 def track_first_item (track):
883     for channel in track:
884         first = channel_first_item (channel)
885         if first:
886             return first
887     return None
888
889 def track_average_pitch (track):
890     i = 0
891     p = [0]
892     v = 1
893     for channel in track:
894         for voice in channel:
895             c = 0
896             p.append (0)
897             for event in voice:
898                 if event[1].__class__ == Note:
899                     i += 1
900                     c += 1
901                     p[v] += event[1].pitch
902             if c:
903                 p[0] += p[v]
904                 p[v] = p[v] / c
905             v += 1
906     if i:
907         p[0] = p[0] / i
908     return p
909
910 def get_best_clef (average_pitch):
911     if average_pitch:
912         if average_pitch <= 3*12:
913             return Clef (0)
914         elif average_pitch <= 5*12:
915             return Clef (1)
916         elif average_pitch >= 7*12:
917             return Clef (3)
918     return Clef (2)
919
920 class Staff:
921     def __init__ (self, track):
922         self.voices = track.get_voices ()
923     def dump (self, i):
924         return dump_track (self.voices, i)
925
926 def convert_midi (in_file, out_file):
927     global midi
928     import midi
929
930     global clocks_per_1, clocks_per_4, key
931     global start_quant_clocks
932     global duration_quant_clocks
933     global allowed_tuplet_clocks
934     global time
935
936     str = open (in_file, 'rb').read ()
937     clocks_max = bar_max * clocks_per_1 * 2
938     midi_dump = midi.parse (str, clocks_max)
939
940     clocks_per_1 = midi_dump[0][1]
941     clocks_per_4 = clocks_per_1 / 4
942     time = Time (4, 4)
943
944     if global_options.start_quant:
945         start_quant_clocks = clocks_per_1 / global_options.start_quant
946
947     if global_options.duration_quant:
948         duration_quant_clocks = clocks_per_1 / global_options.duration_quant
949
950     allowed_tuplet_clocks = []
951     for (dur, num, den) in global_options.allowed_tuplets:
952         allowed_tuplet_clocks.append (clocks_per_1 / dur * num / den)
953
954     if global_options.verbose:
955         print 'allowed tuplet clocks:', allowed_tuplet_clocks
956
957     tracks = [create_track (t) for t in midi_dump[1]]
958     # urg, parse all global track events, such as Key first
959     # this fixes key in different voice/staff problem
960     for t in tracks:
961         t.music = t.parse ()
962     prev = None
963     staves = []
964     for t in tracks:
965         voices = t.get_voices ()
966         if ((t.name and prev and prev.name)
967             and t.name.split (':')[0] == prev.name.split (':')[0]):
968             # staves[-1].voices += voices
969             # all global track events first
970             staves[-1].voices = ([staves[-1].voices[0]]
971                                  + [voices[0]]
972                                  + staves[-1].voices[1:]
973                                  + voices[1:])
974         else:
975             staves.append (Staff (t))
976         prev = t
977
978     tag = '%% Lily was here -- automatically converted by %s from %s' % ( program_name, in_file)
979
980
981     s = tag
982     s += r'''
983 \version "2.14.0"
984 '''
985
986     s += r'''
987 \layout {
988   \context {
989     \Voice
990     \remove "Note_heads_engraver"
991     \consists "Completion_heads_engraver"
992     \remove "Rest_engraver"
993     \consists "Completion_rest_engraver"
994   }
995 }
996 '''
997
998     for i in global_options.include_header:
999         s += '\n%% included from %(i)s\n' % locals ()
1000         s += open (i).read ()
1001         if s[-1] != '\n':
1002             s += '\n'
1003         s += '% end\n'
1004
1005     for i, t in enumerate (staves):
1006         s += t.dump (i)
1007
1008     s += '\n\\score {\n  <<\n'
1009
1010     control_track = False
1011     i = 0
1012     for i, staff in enumerate (staves):
1013         track_name = get_track_name (i)
1014         item = track_first_item (staff.voices)
1015         staff_name = track_name
1016         context = None
1017         if not i and not item and len (staves) > 1:
1018             control_track = track_name
1019             continue
1020         elif (item and item.__class__ == Note):
1021             context = 'Staff'
1022             if control_track:
1023                 s += '    \\context %(context)s=%(staff_name)s \\%(control_track)s\n' % locals ()
1024         elif item and item.__class__ == Text:
1025             context = 'Lyrics'
1026         if context:
1027             s += '    \\context %(context)s=%(staff_name)s \\%(track_name)s\n' % locals ()
1028
1029     s = s + '''  >>
1030   \layout {}
1031   \midi {}
1032 }
1033 '''
1034
1035     if not global_options.quiet:
1036         progress (_ ("%s output to `%s'...") % ('LY', out_file))
1037
1038     if out_file == '-':
1039         handle = sys.stdout
1040     else:
1041         handle = open (out_file, 'w')
1042
1043     handle.write (s)
1044     handle.close ()
1045
1046
1047 def get_option_parser ():
1048     p = ly.get_option_parser (usage=_ ("%s [OPTION]... FILE") % 'midi2ly',
1049                  description=_ ("Convert %s to LilyPond input.\n") % 'MIDI',
1050                  add_help_option=False)
1051
1052     p.add_option ('-a', '--absolute-pitches',
1053            action='store_true',
1054            help=_ ('print absolute pitches'))
1055     p.add_option ('-d', '--duration-quant',
1056            metavar=_ ('DUR'),
1057            help=_ ('quantise note durations on DUR'))
1058     p.add_option ('-D', '--debug',
1059            action='store_true',
1060            help=_ ('debug printing'))
1061     p.add_option ('-e', '--explicit-durations',
1062            action='store_true',
1063            help=_ ('print explicit durations'))
1064     p.add_option('-h', '--help',
1065            action='help',
1066            help=_ ('show this help and exit'))
1067     p.add_option('-i', '--include-header',
1068            help=_ ('prepend FILE to output'),
1069            action='append',
1070            default=[],
1071            metavar=_ ('FILE'))
1072     p.add_option('-k', '--key', help=_ ('set key: ALT=+sharps|-flats; MINOR=1'),
1073            metavar=_ ('ALT[:MINOR]'),
1074            default=None),
1075     p.add_option ('-o', '--output', help=_ ('write output to FILE'),
1076            metavar=_ ('FILE'),
1077            action='store')
1078     p.add_option ('-p', '--preview', help=_ ('preview of first 4 bars'),
1079            action='store_true')
1080     p.add_option ('-q', '--quiet',
1081            action="store_true",
1082            help=_ ("suppress progress messages and warnings about excess voices"))
1083     p.add_option ('-s', '--start-quant',help= _ ('quantise note starts on DUR'),
1084            metavar=_ ('DUR'))
1085     p.add_option ('-S', '--skip',
1086            action = "store_true",
1087            help =_ ("use s instead of r for rests"))
1088     p.add_option ('-t', '--allow-tuplet',
1089            metavar=_ ('DUR*NUM/DEN'),
1090            action = 'append',
1091            dest='allowed_tuplets',
1092            help=_ ('allow tuplet durations DUR*NUM/DEN'),
1093            default=[])
1094     p.add_option ('-V', '--verbose', help=_ ('be verbose'),
1095            action='store_true')
1096     p.version = 'midi2ly (LilyPond) @TOPLEVEL_VERSION@'
1097     p.add_option ('--version',
1098                  action='version',
1099                  help=_ ('show version number and exit'))
1100     p.add_option ('-w', '--warranty', help=_ ('show warranty and copyright'),
1101            action='store_true',)
1102     p.add_option ('-x', '--text-lyrics', help=_ ('treat every text as a lyric'),
1103            action='store_true')
1104
1105     p.add_option_group (ly.display_encode (_ ('Examples')),
1106               description = r'''
1107   $ midi2ly --key=-2:1 --duration-quant=32 --allow-tuplet=4*2/3 --allow-tuplet=2*4/3 foo.midi
1108 ''')
1109     p.add_option_group ('',
1110                         description=(
1111             _ ('Report bugs via %s')
1112             % 'http://post.gmane.org/post.php'
1113             '?group=gmane.comp.gnu.lilypond.bugs') + '\n')
1114     return p
1115
1116
1117
1118 def do_options ():
1119     opt_parser = get_option_parser ()
1120     (options, args) = opt_parser.parse_args ()
1121
1122     if options.warranty:
1123         warranty ()
1124         sys.exit (0)
1125
1126     if not args or args[0] == '-':
1127         opt_parser.print_help ()
1128         ly.stderr_write ('\n%s: %s %s\n' % (program_name, _ ('error: '),
1129                          _ ('no files specified on command line.')))
1130         sys.exit (2)
1131
1132     if options.duration_quant:
1133         options.duration_quant = int (options.duration_quant)
1134
1135     if options.key:
1136         (alterations, minor) = map (int, (options.key + ':0').split (':'))[0:2]
1137         sharps = 0
1138         flats = 0
1139         if alterations >= 0:
1140             sharps = alterations
1141         else:
1142             flats = - alterations
1143         options.key = Key (sharps, flats, minor)
1144
1145     if options.start_quant:
1146         options.start_quant = int (options.start_quant)
1147
1148     global bar_max
1149     if options.preview:
1150         bar_max = 4
1151
1152     options.allowed_tuplets = [map (int, a.replace ('/','*').split ('*'))
1153                 for a in options.allowed_tuplets]
1154
1155     if options.verbose:
1156         sys.stderr.write ('Allowed tuplets: %s\n' % `options.allowed_tuplets`)
1157
1158     global global_options
1159     global_options = options
1160
1161     return args
1162
1163 def main ():
1164     files = do_options ()
1165
1166     exts = ['.midi', '.mid', '.MID']
1167     for f in files:
1168         g = f
1169         for e in exts:
1170             g = strip_extension (g, e)
1171         if not os.path.exists (f):
1172             for e in exts:
1173                 n = g + e
1174                 if os.path.exists (n):
1175                     f = n
1176                     break
1177
1178         if not global_options.output:
1179             outdir = '.'
1180             outbase = os.path.basename (g)
1181             o = outbase + '-midi.ly'
1182         elif (global_options.output[-1] == os.sep
1183               or os.path.isdir (global_options.output)):
1184             outdir = global_options.output
1185             outbase = os.path.basename (g)
1186             o = os.path.join (outdir, outbase + '-midi.ly')
1187         else:
1188             o = global_options.output
1189             (outdir, outbase) = os.path.split (o)
1190
1191         if outdir and outdir != '.' and not os.path.exists (outdir):
1192             os.mkdir (outdir, 0777)
1193
1194         convert_midi (f, o)
1195
1196 if __name__ == '__main__':
1197     main ()