]> git.donarmstrong.com Git - lilypond.git/blob - scm/music-functions.scm
* lily/rest.cc (polyphonic_offset_callback): new function. Do
[lilypond.git] / scm / music-functions.scm
1 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2
3 (define-public (music-map function music)
4   "Apply @var{function} to @var{music} and all of the music it contains. "
5   (let* ((es (ly:get-mus-property music 'elements))
6          (e (ly:get-mus-property music 'element))
7          )
8
9     (ly:set-mus-property! music 'elements 
10         (map (lambda (y) (music-map  function y)) es))
11         (if (ly:music? e)
12             (ly:set-mus-property! music 'element (music-map function  e)))
13         (function music)
14         ))
15
16 (define-public (music-filter pred? music)
17   "Filter out music expressions that do not satisfy PRED."
18   
19   (define (inner-music-filter pred? music)
20     "Recursive function."
21     (let* ((es (ly:get-mus-property music 'elements))
22            (e (ly:get-mus-property music 'element))
23            (as (ly:get-mus-property music 'articulations))
24            (filtered-as (filter ly:music? (map (lambda (y) (inner-music-filter pred? y)) as)))
25            (filtered-e (if (ly:music? e)
26                            (inner-music-filter pred? e)
27                            e))
28            (filtered-es (filter ly:music? (map (lambda (y) (inner-music-filter pred? y)) es)))
29            )
30
31       (ly:set-mus-property! music 'element filtered-e)
32       (ly:set-mus-property! music 'elements filtered-es)
33       (ly:set-mus-property! music 'articulations filtered-as)
34
35       ;; if filtering emptied the expression, we remove it completely.
36       (if (or (pred? music)
37               (and (eq? filtered-es '()) (not (ly:music? e))
38                    (or (not (eq? es '()))
39                        (ly:music? e))))
40           (set! music '()))
41       
42       music))
43
44   (set! music (inner-music-filter pred? music))
45   (if (ly:music? music)
46       music
47       (make-music-by-name 'Music)       ;must return music.
48       ))
49
50 (define-public (remove-tag tag)
51   (lambda (mus)
52     (music-filter
53      (lambda (m)
54        (let* ((tags (ly:get-mus-property m 'tags))
55               (res (memq tag tags)))
56        res)) mus)))
57
58 (define-public (display-music music)
59   "Display music, not done with music-map for clarity of presentation."
60   (display music)
61   (display ": { ")
62   
63   (let* ((es (ly:get-mus-property music 'elements))
64          (e (ly:get-mus-property music 'element))
65          )
66
67     (display (ly:get-mutable-properties music))
68
69     (if (pair?  es)
70         (begin (display "\nElements: {\n")
71                (map display-music es)
72                (display "}\n")
73         ))
74     
75     
76     (if (ly:music? e)
77         (begin
78           (display "\nChild:")
79           (display-music e)
80           )
81         )
82     )
83   (display " }\n")
84   music
85   )
86
87
88
89
90 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
91
92 (define (shift-one-duration-log music shift dot)
93   "  add SHIFT to ly:duration-log and optionally 
94   a dot to any note encountered. This scales the music up by a factor 
95   2^shift * (2 - (1/2)^dot)"
96
97   (let*
98       (
99        (d (ly:get-mus-property music 'duration))
100        )
101     (if (ly:duration? d)
102         (let* (
103                (cp (ly:duration-factor d))
104                (nd (ly:make-duration (+ shift (ly:duration-log d))
105                                      (+ dot (ly:duration-dot-count d))
106                                      (car cp)
107                                      (cdr cp)))
108                
109                )
110           (ly:set-mus-property! music 'duration nd)
111           ))
112     music))
113
114
115
116 (define-public (shift-duration-log music shift dot)
117   (music-map (lambda (x) (shift-one-duration-log x shift dot))
118              music))
119   
120
121 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
122 ;; clusters.
123
124 (define-public (note-to-cluster music)
125   "Replace NoteEvents by ClusterNoteEvents."
126   (if (eq? (ly:get-mus-property music 'name) 'NoteEvent)
127       (let* ((cn (make-music-by-name 'ClusterNoteEvent)))
128
129              (ly:set-mus-property! cn 'pitch (ly:get-mus-property music 'pitch))
130              (ly:set-mus-property! cn 'duration (ly:get-mus-property music 'duration))
131              cn)
132       music))
133
134 (define-public (notes-to-clusters music)
135   (music-map note-to-cluster music))
136
137 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
138 ;; repeats.
139
140 (define-public (unfold-repeats music)
141 "
142 This function replaces all repeats  with unfold repeats. It was 
143 written by Rune Zedeler. "
144   (let* ((es (ly:get-mus-property music 'elements))
145          (e (ly:get-mus-property music 'element))
146          (n  (ly:music-name music)))
147  
148     (if (equal? n "Repeated_music")
149         (begin
150           (if (equal?
151                (ly:get-mus-property music 'iterator-ctor)
152                Chord_tremolo_iterator::constructor)
153               (shift-duration-log music  (ly:intlog2 (ly:get-mus-property music 'repeat-count)) 0)
154               )
155           (ly:set-mus-property!
156            music 'length Repeated_music::unfolded_music_length)
157           (ly:set-mus-property!
158            music 'start-moment-function Repeated_music::first_start)
159           (ly:set-mus-property!
160            music 'iterator-ctor Unfolded_repeat_iterator::constructor)))
161
162     (if (pair? es)
163         (ly:set-mus-property!
164          music 'elements
165          (map unfold-repeats es)))
166
167     (if (ly:music? e)
168         (ly:set-mus-property!
169          music 'element
170          (unfold-repeats e)))
171
172     music))
173
174
175 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
176 ;; property setting music objs.
177
178 (define-public (make-grob-property-set grob gprop val)
179
180   "Make a Music expression that sets GPROP to VAL in GROB. Does a pop first,
181 i.e.  this is not an override"
182   
183    (let* ((m (make-music-by-name  'OverrideProperty)))
184      (ly:set-mus-property! m 'symbol grob)
185      (ly:set-mus-property! m 'grob-property gprop)
186      (ly:set-mus-property! m 'grob-value val)
187      (ly:set-mus-property! m 'pop-first #t)
188                 
189      m
190    
191    ))
192 (define-public (make-grob-property-override grob gprop val)
193
194   "Make a Music expression that sets GPROP to VAL in GROB. Does a pop first,
195 i.e.  this is not an override"
196   
197    (let* ((m (make-music-by-name  'OverrideProperty)))
198      (ly:set-mus-property! m 'symbol grob)
199      (ly:set-mus-property! m 'grob-property gprop)
200      (ly:set-mus-property! m 'grob-value val)
201                 
202      m
203    
204    ))
205
206
207 (define-public (make-grob-property-revert grob gprop)
208   "Revert the grob property GPROP for GROB."
209    (let* ((m (make-music-by-name  'OverrideProperty)))
210      (ly:set-mus-property! m 'symbol grob)
211      (ly:set-mus-property! m 'grob-property gprop)
212                 
213      m
214    
215    ))
216
217 (define direction-polyphonic-grobs
218    '(Tie Rest Slur Script TextScript Stem Dots DotColumn))
219
220 (define-public (make-voice-props-set n)
221   (make-sequential-music
222    (append
223       (map (lambda (x) (make-grob-property-set x 'direction
224                                                (if (odd? n) -1 1)))
225            direction-polyphonic-grobs)
226       (list
227        (make-grob-property-set 'NoteColumn 'horizontal-shift (quotient n 2))
228        (make-grob-property-set 'MultiMeasureRest 'staff-position
229                                (if (odd? n) -4 4)
230                                )
231        
232        )
233    )
234   ))
235
236 (define-public (make-voice-props-revert)
237   (make-sequential-music
238    (append
239     (map (lambda (x) (make-grob-property-revert x 'direction))
240          direction-polyphonic-grobs)
241       
242       (list (make-grob-property-revert 'NoteColumn 'horizontal-shift))
243    ))
244   )
245
246
247 (define-public (context-spec-music m context . rest)
248   "Add \\context CONTEXT = foo to M. "
249   
250   (let* ((cm (make-music-by-name 'ContextSpeccedMusic)))
251     (ly:set-mus-property! cm 'element m)
252     (ly:set-mus-property! cm 'context-type context)
253     (if (and  (pair? rest) (string? (car rest)))
254         (ly:set-mus-property! cm 'context-id (car rest))
255     )
256     cm
257   ))
258
259 (define-public (make-apply-context func)
260   (let*
261       ((m (make-music-by-name 'ApplyContext)))
262
263     (ly:set-mus-property! m 'procedure func)
264     m
265   ))
266
267 (define-public (make-sequential-music elts)
268   (let*  ((m (make-music-by-name 'SequentialMusic)))
269     (ly:set-mus-property! m 'elements elts)
270     m
271   ))
272
273 (define-public (make-simultaneous-music elts)
274   (let*  ((m (make-music-by-name 'SimultaneousMusic)))
275     (ly:set-mus-property! m 'elements elts)
276     m
277     ))
278
279 (define-public (make-event-chord elts)
280   (let*  ((m (make-music-by-name 'EventChord)))
281     (ly:set-mus-property! m 'elements elts)
282     m
283     ))
284
285
286 (define-public (make-skip-music dur)
287   (let*  ((m (make-music-by-name 'SkipMusic)))
288     (ly:set-mus-property! m 'duration dur)
289     m
290   ))
291
292 ;;;;;;;;;;;;;;;;
293
294 ;; mmrest
295 (define-public (make-multi-measure-rest duration location)
296   (let*
297       (
298        (start (make-music-by-name 'MultiMeasureRestEvent))
299        (ch (make-music-by-name 'BarCheck))
300        (ch2  (make-music-by-name 'BarCheck))
301        (seq (make-music-by-name 'MultiMeasureRestMusicGroup))
302        )
303
304     (map (lambda (x) (ly:set-mus-property! x 'origin location))
305          (list start ch ch2 seq))
306     (ly:set-mus-property! start 'duration duration)
307     (ly:set-mus-property! seq 'elements
308      (list
309       ch
310       (make-event-chord (list start))
311       ch2
312       ))
313
314     seq
315     ))
316
317 (define-public (glue-mm-rest-texts music)
318   "Check if we have R1*4-\\markup { .. }, and if applicable convert to
319 a property set for MultiMeasureRestNumber."
320   
321   (define (script-to-mmrest-text script-music)
322     "Extract 'direction and 'text   from SCRIPT-MUSIC, and transform into property sets."
323     
324     (let*
325         (
326          (text (ly:get-mus-property script-music 'text))
327          (dir (ly:get-mus-property script-music 'direction))
328          (p (make-music-by-name 'MultiMeasureTextEvent))
329          )
330
331       (if (ly:dir? dir)
332           (ly:set-mus-property! p  'direction dir))
333       (ly:set-mus-property! p 'text text)
334       p
335     ))
336   
337   (if (eq? (ly:get-mus-property music 'name)  'MultiMeasureRestMusicGroup)
338       (let*
339           (
340            (text? (lambda (x) (memq 'script-event (ly:get-mus-property x 'types))))
341            (es (ly:get-mus-property  music 'elements))
342            (texts (map script-to-mmrest-text  (filter text? es)))
343            (others (remove text? es))
344            )
345         (if (pair? texts)
346             (ly:set-mus-property!
347              music 'elements
348              (cons (make-event-chord texts) others)
349             ))
350       ))
351   music
352   )
353
354
355 (define-public (make-property-set sym val)
356   (let*
357       (
358        (m (make-music-by-name 'PropertySet))
359        )
360     (ly:set-mus-property! m 'symbol sym)
361     (ly:set-mus-property! m 'value val)
362     m
363   ))
364
365
366
367 (define-public (make-ottava-set octavation)
368   (let*
369       ((m (make-music-by-name 'ApplyContext)))
370     
371   
372   (define (ottava-modify context)
373     "Either reset centralCPosition to the stored original, or remember
374 old centralCPosition, add OCTAVATION to centralCPosition, and set
375 OTTAVATION to `8va', or whatever appropriate."
376     
377     (if (number? (ly:get-context-property  context 'centralCPosition))
378         
379         (if (= octavation 0)
380             (let*
381                 ((where (ly:context-property-where-defined context 'centralCPosition))
382                  (oc0 (ly:get-context-property context 'originalCentralCPosition)))
383
384               (ly:set-context-property! context 'centralCPosition oc0)
385               (ly:unset-context-property where 'originalCentralCPosition)
386               (ly:unset-context-property where 'ottavation))
387
388             (let*
389                 ((where (ly:context-property-where-defined context 'centralCPosition))
390                  (c0 (ly:get-context-property context 'centralCPosition))
391                  (new-c0 (+ c0 (* -7 octavation)))
392                  (string (cdr
393                           (assoc octavation '((2 . "15ma")
394                                               (1 . "8va")
395                                               (0 . #f)
396                                               (-1 . "8va bassa")
397                                               (-2 . "15ma bassa"))))))
398
399               (ly:set-context-property! context 'centralCPosition new-c0)
400               (ly:set-context-property! context 'originalCentralCPosition c0)
401               (ly:set-context-property! context 'ottavation string)
402               
403               ))))
404
405   (ly:set-mus-property! m 'procedure  ottava-modify)
406   (context-spec-music m 'Staff)
407   ))
408
409 (define-public (set-octavation ottavation)
410   (ly:export (make-ottava-set ottavation)))
411
412 (define-public (make-time-signature-set num den . rest)
413   " Set properties for time signature NUM/DEN.
414 Rest can contain a list of beat groupings 
415
416 "
417   
418   (let*
419       (
420        (set1 (make-property-set 'timeSignatureFraction (cons num den) ))
421        (beat (ly:make-moment 1 den))
422        (len  (ly:make-moment num den))
423        (set2 (make-property-set 'beatLength beat))
424        (set3 (make-property-set 'measureLength len))
425        (set4 (make-property-set 'beatGrouping (if (pair? rest)
426                                                   (car rest)
427                                                   '())))
428        (basic  (list set1 set2 set3 set4)))
429
430     (context-spec-music
431      (make-sequential-music basic) 'Timing)))
432
433 (define-public (make-mark-set label)
434   "make the music for the \\mark command."
435   
436   (let*
437       ((set (if (integer? label)
438                 (context-spec-music (make-property-set 'rehearsalMark label)
439                                     'Score)
440                 #f))
441        (ev (make-music-by-name 'MarkEvent))
442        (ch (make-event-chord (list ev)))
443        )
444
445     
446     (if set
447         (make-sequential-music (list set ch))
448         (begin
449           (ly:set-mus-property! ev 'label label)
450           ch))))
451     
452
453
454 (define-public (set-time-signature num den . rest)
455   (ly:export (apply make-time-signature-set `(,num ,den . ,rest))))
456
457 (define-public (make-penalty-music pen)
458  (let
459      ((m (make-music-by-name 'BreakEvent)))
460    (ly:set-mus-property! m 'penalty pen)
461    m))
462
463 (define-public (make-articulation name)
464   (let* (
465          (m (make-music-by-name 'ArticulationEvent))
466       )
467       (ly:set-mus-property! m 'articulation-type name)
468       m
469   ))
470
471 (define-public (make-lyric-event string duration)
472   (let* ((m (make-music-by-name 'LyricEvent)))
473
474     (ly:set-mus-property! m 'duration duration)
475     (ly:set-mus-property! m 'text string)
476     m))
477
478 (define-public (make-span-event type spandir)
479   (let* (
480          (m (make-music-by-name  type))
481          )
482     (ly:set-mus-property! m 'span-direction spandir)
483     m
484     ))
485
486 (define-public (set-mus-properties! m alist)
487   "Set all of ALIST as properties of M." 
488   (if (pair? alist)
489       (begin
490         (ly:set-mus-property! m (caar alist) (cdar alist))
491         (set-mus-properties! m (cdr alist)))
492   ))
493
494
495
496 (define-public (music-separator? m)
497   "Is M a separator?"
498   (let* ((ts (ly:get-mus-property m 'types )))
499     (memq 'separator ts)
500   ))
501
502
503 ;;; splitting chords into voices.
504 (define (voicify-list lst number)
505    "Make a list of Musics.
506
507    voicify-list :: [ [Music ] ] -> number -> [Music]
508    LST is a list music-lists.
509 "
510
511    (if (null? lst) '()
512        (cons (context-spec-music
513               (make-sequential-music
514                (list
515                 (make-voice-props-set number)
516                 (make-simultaneous-music (car lst))))
517
518               'Voice  (number->string number))
519               (voicify-list (cdr lst) (1+ number))
520        ))
521    )
522
523 (define (voicify-chord ch)
524   "Split the parts of a chord into different Voices using separator"
525    (let* ((es (ly:get-mus-property ch 'elements)))
526      
527      (ly:set-mus-property!  ch 'elements
528        (voicify-list (split-list es music-separator?) 0))
529      ch
530    ))
531
532 (define (voicify-music m)
533    "Recursively split chords that are separated with \\ "
534    
535    (if (not (ly:music? m))
536        (begin (display m)
537        (error "not music!"))
538        )
539    (let*
540        ((es (ly:get-mus-property m 'elements))
541         (e (ly:get-mus-property m 'element))
542         )
543      (if (pair? es)
544          (ly:set-mus-property! m 'elements (map voicify-music es)))
545      (if (ly:music? e)
546          (ly:set-mus-property! m 'element  (voicify-music e)))
547      (if
548       (and (equal? (ly:music-name m) "Simultaneous_music")
549            (reduce (lambda (x y ) (or x y)) #f (map music-separator? es)))
550       (set! m  (context-spec-music (voicify-chord m)  'Staff))
551       )
552
553      m
554      ))
555
556 (define-public (empty-music)
557   (ly:export (make-music-by-name 'Music))
558   )
559 ;;;
560
561 ; Make a function that checks score element for being of a specific type. 
562 (define-public (make-type-checker symbol)
563   (lambda (elt)
564     ;;(display  symbol)
565     ;;(eq? #t (ly:get-grob-property elt symbol))
566     (not (eq? #f (memq symbol (ly:get-grob-property elt 'interfaces))))))
567
568 (define-public ((outputproperty-compatibility func sym val) grob g-context ao-context)
569   (if (func grob)
570       (ly:set-grob-property! grob sym val)))
571
572
573 (define-public ((set-output-property grob-name symbol val)  grob grob-c context)
574    "Usage:
575
576 \\applyoutput #(set-output-property 'Clef 'extra-offset '(0 . 1))
577
578 "
579    
580    (let*
581        ((meta (ly:get-grob-property grob 'meta)))
582
583      (if (equal?  (cdr (assoc 'name meta)) grob-name)
584          (ly:set-grob-property! grob symbol val)
585          )))
586
587
588 ;;
589 (define-public (smart-bar-check n)
590   "Make  a bar check that checks for a specific bar number. 
591 "
592   (let*
593       (
594        (m (make-music-by-name 'ApplyContext))
595        )
596     
597     (define (checker tr)
598       (let* ((bn (ly:get-context-property tr 'currentBarNumber)))
599         (if (= bn  n)
600             #t
601             (error
602              (format "Bar check failed, we should have reached ~a, instead at ~a\n"
603                      n bn ))
604             )))
605
606     (ly:set-mus-property! m 'procedure checker)
607     m
608     ))
609
610 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
611 ;; warn for bare chords at start.
612
613 (define (has-request-chord elts)
614   (reduce (lambda (x y) (or x y)) #f (map (lambda (x) (equal? (ly:music-name x)
615                                                            "Request_chord")) elts)
616   ))
617
618 (define (ly:music-message music msg)
619   (let*
620       (
621       (ip (ly:get-mus-property music 'origin))
622       )
623
624     (if (ly:input-location? ip)
625         (ly:input-message ip msg)
626         (ly:warn msg))
627   ))
628   
629 (define (check-start-chords music)
630   "Check music expression for a Simultaneous_music containing notes\n(ie. Request_chords), without context specification. Called  from parser."
631   
632      (let*
633        ((es (ly:get-mus-property music 'elements))
634         (e (ly:get-mus-property music 'element))
635         (name (ly:music-name music)) 
636         )
637
638        (cond 
639          ((equal? name "Context_specced_music") #t)
640          ((equal? name "Simultaneous_music")
641
642           (if (has-request-chord es)
643               (ly:music-message music "Starting score with a chord.\nPlease insert an explicit \\context before chord")
644               (map check-start-chords es)))
645          
646          ((equal? name "Sequential_music")
647            (if (pair? es)
648                (check-start-chords (car es))))
649           (else (if (ly:music? e) (check-start-chords e )))
650        
651        ))
652      music
653      )
654
655
656
657 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
658 ;;
659 ;; setting stuff for grace context.
660 ;;
661
662 (define (vector-extend v x)
663   "Make a new vector consisting of V, with X added to the end."
664   (let*
665       ((n (vector-length v))
666        (nv (make-vector (+ n 1) '())))
667
668     
669     (vector-move-left! v 0 n nv 0)
670     (vector-set! nv n x)
671     nv))
672
673
674 (define (vector-map f v)
675   "Map  F over V. This function returns nothing."
676   (do
677       ((n (vector-length v))
678        (i 0 (+ i 1)))
679       ((>= i n))
680   
681     (f (vector-ref v i))))
682
683 (define (vector-reverse-map f v)
684   "Map  F over V, N to 0 order. This function returns nothing."
685   (do
686       ((i (- (vector-length v) 1) (- i 1)))
687       ((< i 0))
688   
689     (f (vector-ref v i))))
690
691 ;; TODO:  make a remove-grace-property too.
692 (define-public (add-grace-property context-name grob sym val)
693   "Set SYM=VAL for GROB in CONTEXT-NAME. "
694   (define (set-prop context)
695     (let*
696         ((where (ly:context-property-where-defined context 'graceSettings))
697          (current (ly:get-context-property where 'graceSettings))
698          (new-settings (vector-extend current (list context-name grob sym val)))
699          )
700       (ly:set-context-property! where 'graceSettings new-settings)))
701     
702     (ly:export (context-spec-music (make-apply-context set-prop) 'Voice)))
703
704
705 (define-public (set-start-grace-properties context)
706   (define (execute-1 x)
707     (let*
708         ((tr (ly:translator-find context (car x))))
709
710       (if (ly:context? tr)
711           (ly:context-pushpop-property tr (cadr x) (caddr x) (cadddr x))
712           )))
713   
714   (let*
715       ((props (ly:get-context-property context 'graceSettings)))
716     (if (vector? props)
717         (vector-map execute-1 props))))
718
719 (define-public (set-stop-grace-properties context)
720   (define (execute-1 x)
721     (let*
722         ((tr (ly:translator-find context (car x))))
723       (if (ly:context? tr)
724           (ly:context-pushpop-property tr (cadr x) (caddr x))
725           )))
726   
727   (let*
728       ((props (ly:get-context-property context 'graceSettings)))
729     (if (vector? props)
730         (vector-reverse-map execute-1 props))))
731
732 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
733 ;; switch it on here, so parsing and init isn't checked (too slow!)
734 ;;
735 ;; automatic music transformations.
736
737 (define (switch-on-debugging m)
738   (set-debug-cell-accesses! 15000)
739   m)
740
741 (define-public toplevel-music-functions
742   (list
743 ;;   check-start-chords ; ; no longer needed with chord syntax. 
744         voicify-music
745         (lambda (x) (music-map glue-mm-rest-texts x))
746 ; switch-on-debugging
747         ))
748
749
750
751
752 ;;;;;;;;;;;;;;;;;
753 ;; lyrics
754
755 (define (apply-durations lyric-music durations) 
756   (define (apply-duration music)
757     (if (and (not (equal? (ly:music-length music) ZERO-MOMENT))
758              (ly:duration?  (ly:get-mus-property music 'duration)))
759         (begin
760           (ly:set-mus-property! music 'duration (car durations))
761           (set! durations (cdr durations))
762           )))
763
764   (music-map apply-duration lyric-music))
765
766
767 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
768 ;;
769
770
771 (define-public ((add-balloon-text object-name text off) grob orig-context cur-context)
772    "Usage: see input/regression/balloon.ly "
773   (let*
774    ((meta (ly:get-grob-property grob 'meta))
775     (nm (if (pair? meta) (cdr (assoc 'name meta)) "nonexistant"))
776     (cb (ly:get-grob-property grob 'print-function)))
777     
778    (if (equal? nm object-name)
779     (begin
780      (ly:set-grob-property! grob 'print-function Balloon_interface::print)
781      (ly:set-grob-property! grob 'balloon-original-callback cb)
782      (ly:set-grob-property! grob 'balloon-text text)
783      (ly:set-grob-property! grob 'balloon-text-offset off)
784      (ly:set-grob-property! grob 'balloon-text-props '((font-family . roman)))
785
786      ))))
787
788