]> git.donarmstrong.com Git - lilypond.git/blob - scm/music-functions.scm
* input/regression/balloon.ly: new file.
[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 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-nonevent-skip dur)
287   (let*  ((m (make-music-by-name 'NonEventSkip)))
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        (stop  (make-music-by-name 'MultiMeasureRestEvent))
300        (skip ( make-music-by-name 'SkipEvent))
301        (ch (make-music-by-name 'BarCheck))
302        (ch2  (make-music-by-name 'BarCheck))
303        (seq  (make-music-by-name 'MultiMeasureRestMusicGroup))
304        )
305
306     (map (lambda (x) (ly:set-mus-property! x 'origin location))
307          (list start stop skip ch ch2 seq))
308     (ly:set-mus-property! start 'span-direction START)
309     (ly:set-mus-property! stop 'span-direction STOP)    
310     (ly:set-mus-property! skip 'duration duration)
311     (ly:set-mus-property! seq 'elements
312      (list
313       ch
314       (make-event-chord (list start))
315       (make-event-chord (list skip))
316       (make-event-chord (list stop))
317       ch2
318       ))
319
320     seq
321     ))
322
323 (define-public (glue-mm-rest-texts music)
324   "Check if we have R1*4-\\markup { .. }, and if applicable convert to
325 a property set for MultiMeasureRestNumber."
326   
327   (define (script-to-mmrest-text script-music)
328     "Extract 'direction and 'text   from SCRIPT-MUSIC, and transform into property sets."
329     
330     (let*
331         (
332          (text (ly:get-mus-property script-music 'text))
333          (dir (ly:get-mus-property script-music 'direction))
334          (p (make-music-by-name 'MultiMeasureTextEvent))
335          )
336
337       (if (ly:dir? dir)
338           (ly:set-mus-property! p  'direction dir))
339       (ly:set-mus-property! p 'text text)
340       p
341     ))
342   
343   (if (eq? (ly:get-mus-property music 'name)  'MultiMeasureRestMusicGroup)
344       (let*
345           (
346            (text? (lambda (x) (memq 'script-event (ly:get-mus-property x 'types))))
347            (es (ly:get-mus-property  music 'elements))
348            (texts (map script-to-mmrest-text  (filter text? es)))
349            (others (remove text? es))
350            )
351         (if (pair? texts)
352             (ly:set-mus-property!
353              music 'elements
354              (cons (make-event-chord texts) others)
355             ))
356       ))
357   music
358   )
359
360
361 (define-public (make-property-set sym val)
362   (let*
363       (
364        (m (make-music-by-name 'PropertySet))
365        )
366     (ly:set-mus-property! m 'symbol sym)
367     (ly:set-mus-property! m 'value val)
368     m
369   ))
370
371
372
373 (define-public (make-ottava-set octavation)
374   (let*
375       ((m (make-music-by-name 'ApplyContext)))
376     
377   
378   (define (ottava-modify context)
379     "Either reset centralCPosition to the stored original, or remember
380 old centralCPosition, add OCTAVATION to centralCPosition, and set
381 OTTAVATION to `8va', or whatever appropriate."
382     
383     (if (number? (ly:get-context-property  context 'centralCPosition))
384         
385         (if (= octavation 0)
386             (let*
387                 ((where (ly:context-property-where-defined context 'centralCPosition))
388                  (oc0 (ly:get-context-property context 'originalCentralCPosition)))
389
390               (ly:set-context-property! context 'centralCPosition oc0)
391               (ly:unset-context-property where 'originalCentralCPosition)
392               (ly:unset-context-property where 'ottavation))
393
394             (let*
395                 ((where (ly:context-property-where-defined context 'centralCPosition))
396                  (c0 (ly:get-context-property context 'centralCPosition))
397                  (new-c0 (+ c0 (* -7 octavation)))
398                  (string (cdr
399                           (assoc octavation '((2 . "15ma")
400                                               (1 . "8va")
401                                               (0 . #f)
402                                               (-1 . "8va bassa")
403                                               (-2 . "15ma bassa"))))))
404
405               (ly:set-context-property! context 'centralCPosition new-c0)
406               (ly:set-context-property! context 'originalCentralCPosition c0)
407               (ly:set-context-property! context 'ottavation string)
408               
409               ))))
410
411   (ly:set-mus-property! m 'procedure  ottava-modify)
412   (context-spec-music m 'Staff)
413   ))
414
415 (define-public (set-octavation ottavation)
416   (ly:export (make-ottava-set ottavation)))
417
418 (define-public (make-time-signature-set num den . rest)
419   " Set properties for time signature NUM/DEN.
420 Rest can contain a list of beat groupings 
421
422 "
423   
424   (let*
425       (
426        (set1 (make-property-set 'timeSignatureFraction (cons num den) ))
427        (beat (ly:make-moment 1 den))
428        (len  (ly:make-moment num den))
429        (set2 (make-property-set 'beatLength beat))
430        (set3 (make-property-set 'measureLength len))
431        (set4 (make-property-set 'beatGrouping (if (pair? rest)
432                                                   (car rest)
433                                                   '())))
434        (basic  (list set1 set2 set3 set4)))
435
436     (context-spec-music
437      (make-sequential-music basic) 'Timing)))
438
439 (define-public (set-time-signature num den . rest)
440   (ly:export (apply make-time-signature-set `(,num ,den . ,rest))))
441
442 (define-public (make-penalty-music pen)
443  (let
444      ((m (make-music-by-name 'BreakEvent)))
445    (ly:set-mus-property! m 'penalty pen)
446    m))
447
448 (define-public (make-articulation name)
449   (let* (
450          (m (make-music-by-name 'ArticulationEvent))
451       )
452       (ly:set-mus-property! m 'articulation-type name)
453       m
454   ))
455
456 (define-public (make-lyric-event string duration)
457   (let* ((m (make-music-by-name 'LyricEvent)))
458
459     (ly:set-mus-property! m 'duration duration)
460     (ly:set-mus-property! m 'text string)
461     m))
462
463 (define-public (make-span-event type spandir)
464   (let* (
465          (m (make-music-by-name  type))
466          )
467     (ly:set-mus-property! m 'span-direction spandir)
468     m
469     ))
470
471 (define-public (set-mus-properties! m alist)
472   "Set all of ALIST as properties of M." 
473   (if (pair? alist)
474       (begin
475         (ly:set-mus-property! m (caar alist) (cdar alist))
476         (set-mus-properties! m (cdr alist)))
477   ))
478
479
480
481 (define-public (music-separator? m)
482   "Is M a separator?"
483   (let* ((ts (ly:get-mus-property m 'types )))
484     (memq 'separator ts)
485   ))
486
487
488 ;;; splitting chords into voices.
489
490 (define (voicify-list lst number)
491    "Make a list of Musics.
492
493    voicify-list :: [ [Music ] ] -> number -> [Music]
494    LST is a list music-lists.
495 "
496
497    (if (null? lst) '()
498        (cons (context-spec-music
499               (make-sequential-music
500                (list
501                 (make-voice-props-set number)
502                 (make-simultaneous-music (car lst))))
503
504               'Voice  (number->string number))
505               (voicify-list (cdr lst) (+ number 1))
506        ))
507    )
508
509 (define (voicify-chord ch)
510   "Split the parts of a chord into different Voices using separator"
511    (let* ((es (ly:get-mus-property ch 'elements)))
512      
513      (ly:set-mus-property!  ch 'elements
514        (voicify-list (split-list es music-separator?) 0))
515      ch
516    ))
517
518 (define (voicify-music m)
519    "Recursively split chords that are separated with \\ "
520    
521    (if (not (ly:music? m))
522        (begin (display m)
523        (error "not music!"))
524        )
525    (let*
526        ((es (ly:get-mus-property m 'elements))
527         (e (ly:get-mus-property m 'element))
528         )
529      (if (pair? es)
530          (ly:set-mus-property! m 'elements (map voicify-music es)))
531      (if (ly:music? e)
532          (ly:set-mus-property! m 'element  (voicify-music e)))
533      (if
534       (and (equal? (ly:music-name m) "Simultaneous_music")
535            (reduce (lambda (x y ) (or x y)) #f (map music-separator? es)))
536       (voicify-chord m)
537       )
538
539      m
540      ))
541
542 (define-public (empty-music)
543   (ly:export (make-music-by-name 'Music))
544   )
545 ;;;
546
547 ; Make a function that checks score element for being of a specific type. 
548 (define-public (make-type-checker symbol)
549   (lambda (elt)
550     ;;(display  symbol)
551     ;;(eq? #t (ly:get-grob-property elt symbol))
552     (not (eq? #f (memq symbol (ly:get-grob-property elt 'interfaces))))))
553
554 (define-public ((outputproperty-compatibility func sym val) grob g-context ao-context)
555   (if (func grob)
556       (ly:set-grob-property! grob sym val)))
557
558
559 (define-public ((set-output-property grob-name symbol val)  grob grob-c context)
560    "Usage:
561
562 \\applyoutput #(set-output-property 'Clef 'extra-offset '(0 . 1))
563
564 "
565    
566    (let*
567        ((meta (ly:get-grob-property grob 'meta)))
568
569      (if (equal?  (cdr (assoc 'name meta)) grob-name)
570          (ly:set-grob-property! grob symbol val)
571          )))
572
573
574 ;;
575 (define-public (smart-bar-check n)
576   "Make  a bar check that checks for a specific bar number. 
577 "
578   (let*
579       (
580        (m (make-music-by-name 'ApplyContext))
581        )
582     
583     (define (checker tr)
584       (let* ((bn (ly:get-context-property tr 'currentBarNumber)))
585         (if (= bn  n)
586             #t
587             (error
588              (format "Bar check failed, we should have reached ~a, instead at ~a\n"
589                      n bn ))
590             )))
591
592     (ly:set-mus-property! m 'procedure checker)
593     m
594     ))
595
596 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
597 ;; warn for bare chords at start.
598
599 (define (has-request-chord elts)
600   (reduce (lambda (x y) (or x y)) #f (map (lambda (x) (equal? (ly:music-name x)
601                                                            "Request_chord")) elts)
602   ))
603
604 (define (ly:music-message music msg)
605   (let*
606       (
607       (ip (ly:get-mus-property music 'origin))
608       )
609
610     (if (ly:input-location? ip)
611         (ly:input-message ip msg)
612         (ly:warn msg))
613   ))
614   
615 (define (check-start-chords music)
616   "Check music expression for a Simultaneous_music containing notes\n(ie. Request_chords), without context specification. Called  from parser."
617   
618      (let*
619        ((es (ly:get-mus-property music 'elements))
620         (e (ly:get-mus-property music 'element))
621         (name (ly:music-name music)) 
622         )
623
624        (cond 
625          ((equal? name "Context_specced_music") #t)
626          ((equal? name "Simultaneous_music")
627
628           (if (has-request-chord es)
629               (ly:music-message music "Starting score with a chord.\nPlease insert an explicit \\context before chord")
630               (map check-start-chords es)))
631          
632          ((equal? name "Sequential_music")
633            (if (pair? es)
634                (check-start-chords (car es))))
635           (else (if (ly:music? e) (check-start-chords e )))
636        
637        ))
638      music
639      )
640
641
642
643 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
644 ;;
645 ;; setting stuff for grace context.
646 ;;
647
648 (define (vector-extend v x)
649   "Make a new vector consisting of V, with X added to the end."
650   (let*
651       ((n (vector-length v))
652        (nv (make-vector (+ n 1) '())))
653
654     
655     (vector-move-left! v 0 n nv 0)
656     (vector-set! nv n x)
657     nv))
658
659
660 (define (vector-map f v)
661   "Map  F over V. This function returns nothing."
662   (do
663       ((n (vector-length v))
664        (i 0 (+ i 1)))
665       ((>= i n))
666   
667     (f (vector-ref v i))))
668
669 (define (vector-reverse-map f v)
670   "Map  F over V, N to 0 order. This function returns nothing."
671   (do
672       ((i (- (vector-length v) 1) (- i 1)))
673       ((< i 0))
674   
675     (f (vector-ref v i))))
676
677 ;; TODO:  make a remove-grace-property too.
678 (define-public (add-grace-property context-name grob sym val)
679   "Set SYM=VAL for GROB in CONTEXT-NAME. "
680   (define (set-prop context)
681     (let*
682         ((where (ly:context-property-where-defined context 'graceSettings))
683          (current (ly:get-context-property where 'graceSettings))
684          (new-settings (vector-extend current (list context-name grob sym val)))
685          )
686       (ly:set-context-property! where 'graceSettings new-settings)))
687     
688     (ly:export (context-spec-music (make-apply-context set-prop) 'Voice)))
689
690
691 (define-public (set-start-grace-properties context)
692   (define (execute-1 x)
693     (let*
694         ((tr (ly:translator-find context (car x))))
695
696       (if (ly:context? tr)
697           (ly:context-pushpop-property tr (cadr x) (caddr x) (cadddr x))
698           )))
699   
700   (let*
701       ((props (ly:get-context-property context 'graceSettings)))
702     (if (vector? props)
703         (vector-map execute-1 props))))
704
705 (define-public (set-stop-grace-properties context)
706   (define (execute-1 x)
707     (let*
708         ((tr (ly:translator-find context (car x))))
709       (if (ly:context? tr)
710           (ly:context-pushpop-property tr (cadr x) (caddr x))
711           )))
712   
713   (let*
714       ((props (ly:get-context-property context 'graceSettings)))
715     (if (vector? props)
716         (vector-reverse-map execute-1 props))))
717
718 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
719 ;; switch it on here, so parsing and init isn't checked (too slow!)
720 ;;
721 ;; automatic music transformations.
722
723 (define (switch-on-debugging m)
724   (set-debug-cell-accesses! 15000)
725   m)
726
727 (define-public toplevel-music-functions
728   (list
729 ;;   check-start-chords ; ; no longer needed with chord syntax. 
730         voicify-music
731         (lambda (x) (music-map glue-mm-rest-texts x))
732 ; switch-on-debugging
733         ))
734
735
736
737
738 ;;;;;;;;;;;;;;;;;
739 ;; lyrics
740
741 (define (apply-durations lyric-music durations) 
742   (define (apply-duration music)
743     (if (and (not (equal? (ly:music-length music) ZERO-MOMENT))
744              (ly:duration?  (ly:get-mus-property music 'duration)))
745         (begin
746           (ly:set-mus-property! music 'duration (car durations))
747           (set! durations (cdr durations))
748           )))
749
750   (music-map apply-duration lyric-music))
751
752
753 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
754 ;;
755
756
757 (define-public ((add-balloon-text object-name text off) grob orig-context cur-context)
758    "Usage: see input/regression/balloon.ly "
759   (let*
760    ((meta (ly:get-grob-property grob 'meta))
761     (nm (if (pair? meta) (cdr (assoc 'name meta)) "nonexistant"))
762     (cb (ly:get-grob-property grob 'molecule-callback)))
763     
764    (if (equal? nm object-name)
765     (begin
766      (ly:set-grob-property! grob 'molecule-callback Balloon_interface::brew_molecule)
767      (ly:set-grob-property! grob 'balloon-original-callback cb)
768      (ly:set-grob-property! grob 'balloon-text text)
769      (ly:set-grob-property! grob 'balloon-text-offset off)
770      (ly:set-grob-property! grob 'balloon-text-props '((font-family . roman)))
771
772      ))))