1 ;;;; music-functions.scm --
3 ;;;; source file of the GNU LilyPond music typesetter
5 ;;;; (c) 1998--2007 Jan Nieuwenhuizen <janneke@gnu.org>
6 ;;;; Han-Wen Nienhuys <hanwen@xs4all.nl>
8 ;; (use-modules (ice-9 optargs))
10 ;;; ly:music-property with setter
11 ;;; (ly:music-property my-music 'elements)
12 ;;; ==> the 'elements property
13 ;;; (set! (ly:music-property my-music 'elements) value)
14 ;;; ==> set the 'elements property and return it
15 (define-public ly:music-property
16 (make-procedure-with-setter ly:music-property
17 ly:music-set-property!))
19 (define-safe-public (music-is-of-type? mus type)
20 "Does @code{mus} belong to the music class @code{type}?"
21 (memq type (ly:music-property mus 'types)))
24 (define-public ly:grob-property
25 (make-procedure-with-setter ly:grob-property
26 ly:grob-set-property!))
28 (define-public ly:prob-property
29 (make-procedure-with-setter ly:prob-property
30 ly:prob-set-property!))
32 (define-public (music-map function music)
33 "Apply @var{function} to @var{music} and all of the music it contains.
35 First it recurses over the children, then the function is applied to MUSIC.
37 (let ((es (ly:music-property music 'elements))
38 (e (ly:music-property music 'element)))
39 (set! (ly:music-property music 'elements)
40 (map (lambda (y) (music-map function y)) es))
42 (set! (ly:music-property music 'element)
43 (music-map function e)))
46 (define-public (music-filter pred? music)
47 "Filter out music expressions that do not satisfy PRED."
49 (define (inner-music-filter pred? music)
51 (let* ((es (ly:music-property music 'elements))
52 (e (ly:music-property music 'element))
53 (as (ly:music-property music 'articulations))
54 (filtered-as (filter ly:music? (map (lambda (y) (inner-music-filter pred? y)) as)))
55 (filtered-e (if (ly:music? e)
56 (inner-music-filter pred? e)
58 (filtered-es (filter ly:music? (map (lambda (y) (inner-music-filter pred? y)) es))))
59 (set! (ly:music-property music 'element) filtered-e)
60 (set! (ly:music-property music 'elements) filtered-es)
61 (set! (ly:music-property music 'articulations) filtered-as)
62 ;; if filtering emptied the expression, we remove it completely.
63 (if (or (not (pred? music))
64 (and (eq? filtered-es '()) (not (ly:music? e))
65 (or (not (eq? es '()))
70 (set! music (inner-music-filter pred? music))
73 (make-music 'Music))) ;must return music.
75 (define-public (display-music music)
76 "Display music, not done with music-map for clarity of presentation."
80 (let ((es (ly:music-property music 'elements))
81 (e (ly:music-property music 'element)))
82 (display (ly:music-mutable-properties music))
84 (begin (display "\nElements: {\n")
85 (map display-music es)
95 ;;; A scheme music pretty printer
97 (define (markup-expression->make-markup markup-expression)
98 "Transform `markup-expression' into an equivalent, hopefuly readable, scheme expression.
100 \\markup \\bold \\italic hello
102 (markup #:line (#:bold (#:italic (#:simple \"hello\"))))"
103 (define (proc->command-keyword proc)
104 "Return a keyword, eg. `#:bold', from the `proc' function, eg. #<procedure bold-markup (layout props arg)>"
105 (let ((cmd-markup (symbol->string (procedure-name proc))))
106 (symbol->keyword (string->symbol (substring cmd-markup 0 (- (string-length cmd-markup)
107 (string-length "-markup")))))))
108 (define (transform-arg arg)
109 (cond ((and (pair? arg) (markup? (car arg))) ;; a markup list
110 (apply append (map inner-markup->make-markup arg)))
111 ((and (not (string? arg)) (markup? arg)) ;; a markup
112 (inner-markup->make-markup arg))
115 (define (inner-markup->make-markup mrkup)
118 (let ((cmd (proc->command-keyword (car mrkup)))
119 (args (map transform-arg (cdr mrkup))))
122 (if (string? markup-expression)
124 `(markup ,@(inner-markup->make-markup markup-expression))))
126 (define-public (music->make-music obj)
127 "Generate a expression that, once evaluated, may return an object equivalent to `obj',
128 that is, for a music expression, a (make-music ...) form."
129 (cond (;; markup expression
131 (markup-expression->make-markup obj))
135 ',(ly:music-property obj 'name)
136 ,@(apply append (map (lambda (prop)
138 ,(music->make-music (cdr prop))))
139 (remove (lambda (prop)
140 (eqv? (car prop) 'origin))
141 (ly:music-mutable-properties obj))))))
144 `(ly:make-moment ,(ly:moment-main-numerator obj)
145 ,(ly:moment-main-denominator obj)
146 ,(ly:moment-grace-numerator obj)
147 ,(ly:moment-grace-denominator obj)))
150 `(ly:make-duration ,(ly:duration-log obj)
151 ,(ly:duration-dot-count obj)
152 ,(car (ly:duration-factor obj))
153 ,(cdr (ly:duration-factor obj))))
156 `(ly:make-pitch ,(ly:pitch-octave obj)
157 ,(ly:pitch-notename obj)
158 ,(ly:pitch-alteration obj)))
161 (or (procedure-name obj) obj))
162 (;; a symbol (avoid having an unquoted symbol)
165 (;; an empty list (avoid having an unquoted empty list)
170 `(list ,@(map music->make-music obj)))
173 `(cons ,(music->make-music (car obj))
174 ,(music->make-music (cdr obj))))
178 (use-modules (ice-9 pretty-print))
179 (define*-public (display-scheme-music obj #:optional (port (current-output-port)))
180 "Displays `obj', typically a music expression, in a friendly fashion,
181 which often can be read back in order to generate an equivalent expression.
185 (pretty-print (music->make-music obj) port)
190 ;;; Scheme music expression --> Lily-syntax-using string translator
192 (use-modules (srfi srfi-39)
195 (define*-public (display-lily-music expr parser #:key force-duration)
196 "Display the music expression using LilyPond syntax"
197 (memoize-clef-names supported-clefs)
198 (parameterize ((*indent* 0)
199 (*previous-duration* (ly:make-duration 2))
200 (*force-duration* force-duration))
201 (display (music->lily-string expr parser))
204 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
206 (define-public (shift-one-duration-log music shift dot)
207 " add SHIFT to duration-log of 'duration in music and optionally
208 a dot to any note encountered. This scales the music up by a factor
209 2^shift * (2 - (1/2)^dot)"
210 (let ((d (ly:music-property music 'duration)))
212 (let* ((cp (ly:duration-factor d))
213 (nd (ly:make-duration (+ shift (ly:duration-log d))
214 (+ dot (ly:duration-dot-count d))
217 (set! (ly:music-property music 'duration) nd)))
220 (define-public (shift-duration-log music shift dot)
221 (music-map (lambda (x) (shift-one-duration-log x shift dot))
224 (define-public (make-repeat name times main alts)
225 "create a repeat music expression, with all properties initialized properly"
226 (let ((talts (if (< times (length alts))
228 (ly:warning (_ "More alternatives than repeats. Junking excess alternatives"))
231 (r (make-repeated-music name)))
232 (set! (ly:music-property r 'element) main)
233 (set! (ly:music-property r 'repeat-count) (max times 1))
234 (set! (ly:music-property r 'elements) talts)
235 (if (equal? name "tremolo")
236 (let* ((dots (1- (logcount times)))
237 (mult (/ (* times (ash 1 dots)) (1- (ash 2 dots))))
238 (shift (- (ly:intlog2 (floor mult)))))
239 (if (not (integer? mult))
240 (ly:warning (_ "invalid tremolo repeat count: ~a") times))
241 (if (memq 'sequential-music (ly:music-property main 'types))
242 ;; \repeat "tremolo" { c4 d4 }
243 (let ((children (length (ly:music-property main 'elements))))
245 ;; fixme: should be more generic.
246 (if (and (not (= children 2))
247 (not (= children 1)))
248 (ly:warning (_ "expecting 2 elements for chord tremolo, found ~a") children))
249 (ly:music-compress r (ly:make-moment 1 children))
250 (shift-duration-log r
251 (if (= children 2) (1- shift) shift)
253 ;; \repeat "tremolo" c4
254 (shift-duration-log r shift dots)))
257 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
260 (define-public (note-to-cluster music)
261 "Replace NoteEvents by ClusterNoteEvents."
262 (if (eq? (ly:music-property music 'name) 'NoteEvent)
263 (make-music 'ClusterNoteEvent
264 'pitch (ly:music-property music 'pitch)
265 'duration (ly:music-property music 'duration))
268 (define-public (notes-to-clusters music)
269 (music-map note-to-cluster music))
271 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
274 (define-public (unfold-repeats music)
276 This function replaces all repeats with unfold repeats. "
278 (let ((es (ly:music-property music 'elements))
279 (e (ly:music-property music 'element))
281 (if (memq 'repeated-music (ly:music-property music 'types))
283 ((props (ly:music-mutable-properties music))
284 (old-name (ly:music-property music 'name))
285 (flattened (flatten-alist props)))
287 (set! music (apply make-music (cons 'UnfoldedRepeatedMusic
290 (if (equal? old-name 'TremoloRepeatedMusic)
291 (let* ((seq-arg? (memq 'sequential-music
292 (ly:music-property e 'types)))
293 (count (ly:music-property music 'repeat-count))
294 (dot-shift (if (= 0 (remainder count 3))
298 (set! count (* 2 (quotient count 3))))
300 (shift-duration-log music (+ (if seq-arg? 1 0)
301 (ly:intlog2 count)) dot-shift)
304 (ly:music-compress e (ly:make-moment (length (ly:music-property
305 e 'elements)) 1)))))))
309 (set! (ly:music-property music 'elements)
310 (map unfold-repeats es)))
312 (set! (ly:music-property music 'element)
316 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
317 ;; property setting music objs.
319 (define-public (make-grob-property-set grob gprop val)
320 "Make a Music expression that sets GPROP to VAL in GROB. Does a pop first,
321 i.e. this is not an override"
322 (make-music 'OverrideProperty
328 (define-public (make-grob-property-override grob gprop val)
329 "Make a Music expression that sets GPROP to VAL in GROB. Does a pop first,
330 i.e. this is not an override"
331 (make-music 'OverrideProperty
336 (define-public (make-grob-property-revert grob gprop)
337 "Revert the grob property GPROP for GROB."
338 (make-music 'RevertProperty
340 'grob-property gprop))
342 (define direction-polyphonic-grobs
356 (define-safe-public (make-voice-props-set n)
357 (make-sequential-music
359 (map (lambda (x) (make-grob-property-set x 'direction
361 direction-polyphonic-grobs)
363 (make-property-set 'graceSettings
364 ;; TODO: take this from voicedGraceSettings or similar.
365 '((Voice Stem font-size -3)
366 (Voice NoteHead font-size -3)
367 (Voice Dots font-size -3)
368 (Voice Stem length-fraction 0.8)
369 (Voice Stem no-stem-extend #t)
370 (Voice Beam thickness 0.384)
371 (Voice Beam length-fraction 0.8)
372 (Voice Accidental font-size -4)))
374 (make-grob-property-set 'NoteColumn 'horizontal-shift (quotient n 2))
375 (make-grob-property-set 'MultiMeasureRest 'staff-position (if (odd? n) -4 4))))))
377 (define-safe-public (make-voice-props-revert)
378 (make-sequential-music
380 (map (lambda (x) (make-grob-property-revert x 'direction))
381 direction-polyphonic-grobs)
382 (list (make-property-unset 'graceSettings)
383 (make-grob-property-revert 'NoteColumn 'horizontal-shift)
384 (make-grob-property-revert 'MultiMeasureRest 'staff-position)))))
387 (define-safe-public (context-spec-music m context #:optional id)
388 "Add \\context CONTEXT = ID to M. "
389 (let ((cm (make-music 'ContextSpeccedMusic
391 'context-type context)))
393 (set! (ly:music-property cm 'context-id) id))
396 (define-public (descend-to-context m context)
397 "Like context-spec-music, but only descending. "
398 (let ((cm (context-spec-music m context)))
399 (ly:music-set-property! cm 'descend-only #t)
402 (define-public (make-non-relative-music mus)
403 (make-music 'UnrelativableMusic
406 (define-public (make-apply-context func)
407 (make-music 'ApplyContext
410 (define-public (make-sequential-music elts)
411 (make-music 'SequentialMusic
414 (define-public (make-simultaneous-music elts)
415 (make-music 'SimultaneousMusic
418 (define-safe-public (make-event-chord elts)
419 (make-music 'EventChord
422 (define-public (make-skip-music dur)
423 (make-music 'SkipMusic
426 (define-public (make-grace-music music)
427 (make-music 'GraceMusic
433 (define-public (make-multi-measure-rest duration location)
434 (make-music 'MultiMeasureRestMusic
438 (define-public (make-property-set sym val)
439 (make-music 'PropertySet
443 (define-public (make-property-unset sym)
444 (make-music 'PropertyUnset
447 (define-public (make-ottava-set octavation)
448 (let ((m (make-music 'ApplyContext)))
449 (define (ottava-modify context)
450 "Either reset middleCPosition to the stored original, or remember
451 old middleCPosition, add OCTAVATION to middleCPosition, and set
452 OTTAVATION to `8va', or whatever appropriate."
453 (if (number? (ly:context-property context 'middleCOffset))
454 (let ((where (ly:context-property-where-defined context 'middleCOffset)))
455 (ly:context-unset-property where 'middleCOffset)
456 (ly:context-unset-property where 'ottavation)))
458 (let* ((offset (* -7 octavation))
459 (string (cdr (assoc octavation '((2 . "15ma")
464 (ly:context-set-property! context 'middleCOffset offset)
465 (ly:context-set-property! context 'ottavation string)
466 (ly:set-middle-C! context)))
467 (set! (ly:music-property m 'procedure) ottava-modify)
468 (context-spec-music m 'Staff)))
470 (define-public (set-octavation ottavation)
471 (ly:export (make-ottava-set ottavation)))
473 (define-public (make-time-signature-set num den . rest)
474 "Set properties for time signature NUM/DEN. Rest can contain a list
477 (define (standard-beat-grouping num den)
479 "Some standard subdivisions for time signatures."
481 ((key (cons num den))
482 (entry (assoc key '(((6 . 8) . (3 3))
485 ((12 . 8) . (3 3 3 3))
493 (let* ((set1 (make-property-set 'timeSignatureFraction (cons num den)))
494 (beat (ly:make-moment 1 den))
495 (len (ly:make-moment num den))
496 (set2 (make-property-set 'beatLength beat))
497 (set3 (make-property-set 'measureLength len))
498 (set4 (make-property-set 'beatGrouping (if (pair? rest)
500 (standard-beat-grouping num den))))
501 (basic (list set1 set2 set3 set4)))
503 (context-spec-music (make-sequential-music basic) 'Timing) 'Score)))
505 (define-public (make-mark-set label)
506 "Make the music for the \\mark command."
507 (let* ((set (if (integer? label)
508 (context-spec-music (make-property-set 'rehearsalMark label)
511 (ev (make-music 'MarkEvent))
512 (ch (make-event-chord (list ev))))
514 (make-sequential-music (list set ch))
516 (set! (ly:music-property ev 'label) label)
519 (define-public (set-time-signature num den . rest)
520 (ly:export (apply make-time-signature-set `(,num ,den . ,rest))))
522 (define-safe-public (make-articulation name)
523 (make-music 'ArticulationEvent
524 'articulation-type name))
526 (define-public (make-lyric-event string duration)
527 (make-music 'LyricEvent
531 (define-safe-public (make-span-event type span-dir)
533 'span-direction span-dir))
535 (define-public (set-mus-properties! m alist)
536 "Set all of ALIST as properties of M."
539 (set! (ly:music-property m (caar alist)) (cdar alist))
540 (set-mus-properties! m (cdr alist)))))
542 (define-public (music-separator? m)
544 (let ((ts (ly:music-property m 'types)))
545 (memq 'separator ts)))
547 ;;; splitting chords into voices.
548 (define (voicify-list lst number)
549 "Make a list of Musics.
551 voicify-list :: [ [Music ] ] -> number -> [Music]
552 LST is a list music-lists.
554 NUMBER is 0-base, i.e. Voice=1 (upstems) has number 0.
558 (cons (context-spec-music
559 (make-sequential-music
560 (list (make-voice-props-set number)
561 (make-simultaneous-music (car lst))))
562 'Voice (number->string (1+ number)))
563 (voicify-list (cdr lst) (1+ number)))))
565 (define (voicify-chord ch)
566 "Split the parts of a chord into different Voices using separator"
567 (let ((es (ly:music-property ch 'elements)))
568 (set! (ly:music-property ch 'elements)
569 (voicify-list (split-list-by-separator es music-separator?) 0))
572 (define-public (voicify-music m)
573 "Recursively split chords that are separated with \\ "
574 (if (not (ly:music? m))
575 (ly:error (_ "music expected: ~S") m))
576 (let ((es (ly:music-property m 'elements))
577 (e (ly:music-property m 'element)))
580 (set! (ly:music-property m 'elements) (map voicify-music es)))
582 (set! (ly:music-property m 'element) (voicify-music e)))
583 (if (and (equal? (ly:music-property m 'name) 'SimultaneousMusic)
584 (reduce (lambda (x y ) (or x y)) #f (map music-separator? es)))
585 (set! m (context-spec-music (voicify-chord m) 'Staff)))
588 (define-public (empty-music)
589 (ly:export (make-music 'Music)))
591 ;; Make a function that checks score element for being of a specific type.
592 (define-public (make-type-checker symbol)
595 ;;(eq? #t (ly:grob-property elt symbol))
596 (not (eq? #f (memq symbol (ly:grob-property elt 'interfaces))))))
598 (define-public ((outputproperty-compatibility func sym val) grob g-context ao-context)
600 (set! (ly:grob-property grob sym) val)))
603 (define-public ((set-output-property grob-name symbol val) grob grob-c context)
606 \\applyoutput #(set-output-property 'Clef 'extra-offset '(0 . 1))
609 (let ((meta (ly:grob-property grob 'meta)))
610 (if (equal? (cdr (assoc 'name meta)) grob-name)
611 (set! (ly:grob-property grob symbol) val))))
615 (define-public (smart-bar-check n)
616 "Make a bar check that checks for a specific bar number.
618 (let ((m (make-music 'ApplyContext)))
620 (let* ((bn (ly:context-property tr 'currentBarNumber)))
624 ;; FIXME: uncomprehensable message
625 (_ "Bar check failed. Expect to be at ~a, instead at ~a")
627 (set! (ly:music-property m 'procedure) checker)
631 (define-public (skip->rest mus)
633 "Replace MUS by RestEvent of the same duration if it is a
634 SkipEvent. Useful for extracting parts from crowded scores"
636 (if (memq (ly:music-property mus 'name) '(SkipEvent SkipMusic))
637 (make-music 'RestEvent 'duration (ly:music-property mus 'duration))
641 (define-public (music-has-type music type)
642 (memq type (ly:music-property music 'types)))
644 (define-public (music-clone music)
645 (define (alist->args alist acc)
648 (alist->args (cdr alist)
649 (cons (caar alist) (cons (cdar alist) acc)))))
653 (ly:music-property music 'name)
654 (alist->args (ly:music-mutable-properties music) '())))
656 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
657 ;; warn for bare chords at start.
660 (define-public (ly:music-message music msg)
661 (let ((ip (ly:music-property music 'origin)))
662 (if (ly:input-location? ip)
663 (ly:input-message ip msg)
666 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
668 ;; setting stuff for grace context.
671 (define (vector-extend v x)
672 "Make a new vector consisting of V, with X added to the end."
673 (let* ((n (vector-length v))
674 (nv (make-vector (+ n 1) '())))
675 (vector-move-left! v 0 n nv 0)
679 (define (vector-map f v)
680 "Map F over V. This function returns nothing."
681 (do ((n (vector-length v))
684 (f (vector-ref v i))))
686 (define (vector-reverse-map f v)
687 "Map F over V, N to 0 order. This function returns nothing."
688 (do ((i (- (vector-length v) 1) (- i 1)))
690 (f (vector-ref v i))))
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* ((where (ly:context-property-where-defined context 'graceSettings))
696 (current (ly:context-property where 'graceSettings))
697 (new-settings (append current
698 (list (list context-name grob sym val)))))
699 (ly:context-set-property! where 'graceSettings new-settings)))
700 (ly:export (context-spec-music (make-apply-context set-prop) 'Voice)))
702 (define-public (remove-grace-property context-name grob sym)
703 "Remove all SYM for GROB in CONTEXT-NAME. "
704 (define (sym-grob-context? property sym grob context-name)
705 (and (eq? (car property) context-name)
706 (eq? (cadr property) grob)
707 (eq? (caddr property) sym)))
708 (define (delete-prop context)
709 (let* ((where (ly:context-property-where-defined context 'graceSettings))
710 (current (ly:context-property where 'graceSettings))
711 (prop-settings (filter
712 (lambda(x) (sym-grob-context? x sym grob context-name))
714 (new-settings current))
716 (set! new-settings (delete x new-settings)))
718 (ly:context-set-property! where 'graceSettings new-settings)))
719 (ly:export (context-spec-music (make-apply-context delete-prop) 'Voice)))
723 (defmacro-public def-grace-function (start stop)
724 `(define-music-function (parser location music) (ly:music?)
725 (make-music 'GraceMusic
727 'element (make-music 'SequentialMusic
728 'elements (list (ly:music-deep-copy ,start)
730 (ly:music-deep-copy ,stop))))))
732 (defmacro-public define-music-function (args signature . body)
733 "Helper macro for `ly:make-music-function'.
735 (define-music-function (parser location arg1 arg2 ...) (arg1-type? arg2-type? ...)
738 `(ly:make-music-function (list ,@signature)
743 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
745 (define-public (cue-substitute quote-music)
746 "Must happen after quote-substitute."
748 (if (vector? (ly:music-property quote-music 'quoted-events))
749 (let* ((dir (ly:music-property quote-music 'quoted-voice-direction))
750 (main-voice (if (eq? 1 dir) 1 0))
751 (cue-voice (if (eq? 1 dir) 0 1))
752 (main-music (ly:music-property quote-music 'element))
753 (return-value quote-music))
755 (if (or (eq? 1 dir) (eq? -1 dir))
757 ;; if we have stem dirs, change both quoted and main music
758 ;; to have opposite stems.
762 ;; cannot context-spec Quote-music, since context
763 ;; for the quotes is determined in the iterator.
764 (make-sequential-music
766 (context-spec-music (make-voice-props-set cue-voice) 'CueVoice "cue")
768 (context-spec-music (make-voice-props-revert) 'CueVoice "cue"))))
770 (make-sequential-music
772 (make-voice-props-set main-voice)
774 (make-voice-props-revert))))
775 (set! (ly:music-property quote-music 'element) main-music)))
780 (define-public ((quote-substitute quote-tab) music)
781 (let* ((quoted-name (ly:music-property music 'quoted-music-name))
782 (quoted-vector (if (string? quoted-name)
783 (hash-ref quote-tab quoted-name #f)
787 (if (string? quoted-name)
788 (if (vector? quoted-vector)
790 (set! (ly:music-property music 'quoted-events) quoted-vector)
791 (set! (ly:music-property music 'iterator-ctor)
792 ly:quote-iterator::constructor))
793 (ly:warning (_ "cannot find quoted music: `~S'") quoted-name)))
797 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
798 ;; switch it on here, so parsing and init isn't checked (too slow!)
800 ;; automatic music transformations.
802 (define (switch-on-debugging m)
803 (if (defined? 'set-debug-cell-accesses!)
804 (set-debug-cell-accesses! 15000))
807 (define (music-check-error music)
810 (if (and (ly:music? m)
811 (eq? (ly:music-property m 'error-found) #t))
814 (for-each signal (ly:music-property music 'elements))
815 (signal (ly:music-property music 'element))
818 (set! (ly:music-property music 'error-found) #t))
821 (define (precompute-music-length music)
822 (set! (ly:music-property music 'length)
823 (ly:music-length music))
826 (define-public (make-duration-of-length moment)
827 "Make duration of the given MOMENT length."
828 (ly:make-duration 0 0
829 (ly:moment-main-numerator moment)
830 (ly:moment-main-denominator moment)))
832 (define (skip-this moment)
833 "set skipTypesetting, make SkipMusic of the given MOMENT length,
834 and then unset skipTypesetting."
835 (make-sequential-music
837 (context-spec-music (make-property-set 'skipTypesetting #t)
839 (make-music 'SkipMusic 'duration
840 (make-duration-of-length moment))
841 (context-spec-music (make-property-set 'skipTypesetting #f)
844 (define (unskip-this moment)
845 "unset skipTypesetting, make SkipMusic of the given MOMENT length,
846 and then set skipTypesetting."
847 (make-sequential-music
849 (context-spec-music (make-property-set 'skipTypesetting #f)
851 (make-music 'SkipMusic 'duration
852 (make-duration-of-length moment))
853 (context-spec-music (make-property-set 'skipTypesetting #t)
856 (define (skip-as-needed music parser)
858 << { \\set skipTypesetting = ##f
859 LENGTHOF(\\showFirstLength)
860 \\set skipTypesetting = ##t
861 LENGTHOF(\\showLastLength) }
865 When only showFirstLength is set,
866 the 'length property of the music is
867 overridden to speed up compiling."
869 ((show-last (ly:parser-lookup parser 'showLastLength))
870 (show-first (ly:parser-lookup parser 'showFirstLength)))
873 ;; both properties may be set.
874 ((and (ly:music? show-first) (ly:music? show-last))
876 ((orig-length (ly:music-length music))
877 (skip-length (ly:moment-sub orig-length (ly:music-length show-last)))
878 (begin-length (ly:music-length show-first)))
879 (make-simultaneous-music
881 (make-sequential-music
883 (skip-this skip-length)
884 ;; let's draw a separator between the beginning and the end
885 (context-spec-music (make-property-set 'whichBar "||")
887 (unskip-this begin-length)
890 ;; we may only want to print the last length
891 ((ly:music? show-last)
893 ((orig-length (ly:music-length music))
894 (skip-length (ly:moment-sub orig-length (ly:music-length show-last))))
895 (make-simultaneous-music
897 (skip-this skip-length)
900 ;; we may only want to print the beginning; in this case
901 ;; only the first length will be processed (much faster).
902 ((ly:music? show-first)
904 ((orig-length (ly:music-length music))
905 (begin-length (ly:music-length show-first)))
906 ;; the first length must not exceed the original length.
907 (if (ly:moment<? begin-length orig-length)
908 (set! (ly:music-property music 'length)
909 (ly:music-length show-first)))
915 (define-public toplevel-music-functions
917 (lambda (music parser) (voicify-music music))
918 (lambda (x parser) (music-map music-check-error x))
919 (lambda (x parser) (music-map precompute-music-length x))
920 (lambda (music parser)
922 (music-map (quote-substitute (ly:parser-lookup parser 'musicQuotes)) music))
924 ;; switch-on-debugging
925 (lambda (x parser) (music-map cue-substitute x))
928 (skip-as-needed x parser)
935 (define (apply-durations lyric-music durations)
936 (define (apply-duration music)
937 (if (and (not (equal? (ly:music-length music) ZERO-MOMENT))
938 (ly:duration? (ly:music-property music 'duration)))
940 (set! (ly:music-property music 'duration) (car durations))
941 (set! durations (cdr durations)))))
943 (music-map apply-duration lyric-music))
946 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
949 (define-public ((make-accidental-rule octaveness lazyness) context pitch barnum measurepos)
950 "Creates an accidental rule that makes its decision based on the octave of the note
951 and a laziness value.
952 octaveness is either 'same-octave or 'any-octave and defines whether the rule should
953 respond to accidental changes in other octaves than the current. 'same-octave is the
954 normal way to typeset accidentals - an accidental is made if the alteration is different
955 from the last active pitch in the same octave. 'any-octave looks at the last active pitch
957 lazyness states over how many bars an accidental should be remembered.
958 0 is default - accidental lasts over 0 bar lines, that is, to the end of current measure.
959 A positive integer means that the accidental lasts over that many bar lines.
960 -1 is 'forget immediately', that is, only look at key signature.
962 (let ((keysig (ly:context-property context 'localKeySignature)))
963 (ly:find-accidentals-simple keysig pitch barnum lazyness octaveness)))
965 (define (key-entry-notename entry)
966 "Return the pitch of an entry in localKeySignature. The entry is either of the form
967 '(notename . alter) or '((octave . notename) . (alter barnum . measurepos))."
968 (if (number? (car entry))
972 (define (key-entry-octave entry)
973 "Return the octave of an entry in localKeySignature (or #f if the entry does not have
975 (and (pair? (car entry)) (caar entry)))
977 (define (key-entry-bar-number entry)
978 "Return the bar number of an entry in localKeySignature (or #f if the entry does not
980 (and (pair? (car entry)) (caddr entry)))
982 (define (key-entry-measure-position entry)
983 "Return the measure position of an entry in localKeySignature (or #f if the entry does
984 not have a measure position)."
985 (and (pair? (car entry)) (cdddr entry)))
987 (define (key-entry-alteration entry)
988 "Return the alteration of an entry in localKeySignature."
989 (if (number? (car entry))
993 (define-public (find-pitch-entry keysig pitch accept-global accept-local)
994 "Return the first entry in keysig that matches the pitch.
995 accept-global states whether key signature entries should be included.
996 accept-local states whether local accidentals should be included.
997 if no matching entry is found, #f is returned."
999 (let* ((entry (car keysig))
1000 (entryoct (key-entry-octave entry))
1001 (entrynn (key-entry-notename entry))
1002 (oct (ly:pitch-octave pitch))
1003 (nn (ly:pitch-notename pitch)))
1004 (if (and (equal? nn entrynn)
1005 (or (and accept-global (equal? #f entryoct))
1006 (and accept-local (equal? oct entryoct))))
1008 (find-pitch-entry (cdr keysig) pitch accept-global accept-local)))
1011 (define-public (neo-modern-accidental-rule context pitch barnum measurepos)
1012 "an accidental rule that typesets an accidental if it differs from the key signature
1013 AND does not directly follow a note on the same staff-line.
1014 This rule should not be used alone because it does neither look at bar lines
1015 nor different accidentals at the same notename"
1016 (let* ((keysig (ly:context-property context 'localKeySignature))
1017 (entry (find-pitch-entry keysig pitch #t #t)))
1018 (if (equal? #f entry)
1020 (let* ((global-entry (find-pitch-entry keysig pitch #t #f))
1021 (key-acc (if (equal? global-entry #f)
1023 (key-entry-alteration global-entry)))
1024 (acc (ly:pitch-alteration pitch))
1025 (entrymp (key-entry-measure-position entry))
1026 (entrybn (key-entry-bar-number entry)))
1027 (cons #f (not (or (equal? acc key-acc)
1028 (and (equal? entrybn barnum) (equal? entrymp measurepos)))))))))
1030 (define-public (teaching-accidental-rule context pitch barnum measurepos)
1031 "an accidental rule that typesets a cautionary accidental
1032 if it is included in the key signature AND does not directly follow
1033 a note on the same staff-line."
1034 (let* ((keysig (ly:context-property context 'localKeySignature))
1035 (entry (find-pitch-entry keysig pitch #t #t)))
1036 (if (equal? #f entry)
1038 (let* ((global-entry (find-pitch-entry keysig pitch #f #f))
1039 (key-acc (if (equal? global-entry #f)
1041 (key-entry-alteration global-entry)))
1042 (acc (ly:pitch-alteration pitch))
1043 (entrymp (key-entry-measure-position entry))
1044 (entrybn (key-entry-bar-number entry)))
1045 (cons #f (not (or (equal? acc key-acc)
1046 (and (equal? entrybn barnum) (equal? entrymp measurepos)))))))))
1048 (define-public (set-accidentals-properties extra-natural
1049 auto-accs auto-cauts
1052 (make-sequential-music
1053 (append (if (boolean? extra-natural)
1054 (list (make-property-set 'extraNatural extra-natural))
1056 (list (make-property-set 'autoAccidentals auto-accs)
1057 (make-property-set 'autoCautionaries auto-cauts))))
1060 (define-public (set-accidental-style style . rest)
1061 "Set accidental style to STYLE. Optionally takes a context argument,
1062 e.g. 'Staff or 'Voice. The context defaults to Staff, except for piano styles, which
1063 use GrandStaff as a context. "
1064 (let ((context (if (pair? rest)
1066 (pcontext (if (pair? rest)
1067 (car rest) 'GrandStaff)))
1070 ;; accidentals as they were common in the 18th century.
1071 ((equal? style 'default)
1072 (set-accidentals-properties #t
1073 `(Staff ,(make-accidental-rule 'same-octave 0))
1076 ;; accidentals from one voice do NOT get cancelled in other voices
1077 ((equal? style 'voice)
1078 (set-accidentals-properties #t
1079 `(Voice ,(make-accidental-rule 'same-octave 0))
1082 ;; accidentals as suggested by Kurt Stone, Music Notation in the 20th century.
1083 ;; This includes all the default accidentals, but accidentals also needs cancelling
1084 ;; in other octaves and in the next measure.
1085 ((equal? style 'modern)
1086 (set-accidentals-properties #f
1087 `(Staff ,(make-accidental-rule 'same-octave 0)
1088 ,(make-accidental-rule 'any-octave 0)
1089 ,(make-accidental-rule 'same-octave 1))
1092 ;; the accidentals that Stone adds to the old standard as cautionaries
1093 ((equal? style 'modern-cautionary)
1094 (set-accidentals-properties #f
1095 `(Staff ,(make-accidental-rule 'same-octave 0))
1096 `(Staff ,(make-accidental-rule 'any-octave 0)
1097 ,(make-accidental-rule 'same-octave 1))
1099 ;; same as modern, but accidentals different from the key signature are always
1100 ;; typeset - unless they directly follow a note of the same pitch.
1101 ((equal? style 'neo-modern)
1102 (set-accidentals-properties #f
1103 `(Staff ,(make-accidental-rule 'same-octave 0)
1104 ,(make-accidental-rule 'any-octave 0)
1105 ,(make-accidental-rule 'same-octave 1)
1106 ,neo-modern-accidental-rule)
1109 ((equal? style 'neo-modern-cautionary)
1110 (set-accidentals-properties #f
1111 `(Staff ,(make-accidental-rule 'same-octave 0))
1112 `(Staff ,(make-accidental-rule 'any-octave 0)
1113 ,(make-accidental-rule 'same-octave 1)
1114 ,neo-modern-accidental-rule)
1116 ;; Accidentals as they were common in dodecaphonic music with no tonality.
1117 ;; Each note gets one accidental.
1118 ((equal? style 'dodecaphonic)
1119 (set-accidentals-properties #f
1120 `(Staff ,(lambda (c p bn mp) '(#f . #t)))
1123 ;; Multivoice accidentals to be read both by musicians playing one voice
1124 ;; and musicians playing all voices.
1125 ;; Accidentals are typeset for each voice, but they ARE cancelled across voices.
1126 ((equal? style 'modern-voice)
1127 (set-accidentals-properties #f
1128 `(Voice ,(make-accidental-rule 'same-octave 0)
1129 ,(make-accidental-rule 'any-octave 0)
1130 ,(make-accidental-rule 'same-octave 1)
1131 Staff ,(make-accidental-rule 'same-octave 0)
1132 ,(make-accidental-rule 'any-octave 0)
1133 ,(make-accidental-rule 'same-octave 1))
1136 ;; same as modernVoiceAccidental eccept that all special accidentals are typeset
1138 ((equal? style 'modern-voice-cautionary)
1139 (set-accidentals-properties #f
1140 `(Voice ,(make-accidental-rule 'same-octave 0))
1141 `(Voice ,(make-accidental-rule 'any-octave 0)
1142 ,(make-accidental-rule 'same-octave 1)
1143 Staff ,(make-accidental-rule 'same-octave 0)
1144 ,(make-accidental-rule 'any-octave 0)
1145 ,(make-accidental-rule 'same-octave 1))
1147 ;; stone's suggestions for accidentals on grand staff.
1148 ;; Accidentals are cancelled across the staves in the same grand staff as well
1149 ((equal? style 'piano)
1150 (set-accidentals-properties #f
1151 `(Staff ,(make-accidental-rule 'same-octave 0)
1152 ,(make-accidental-rule 'any-octave 0)
1153 ,(make-accidental-rule 'same-octave 1)
1155 ,(make-accidental-rule 'any-octave 0)
1156 ,(make-accidental-rule 'same-octave 1))
1159 ((equal? style 'piano-cautionary)
1160 (set-accidentals-properties #f
1161 `(Staff ,(make-accidental-rule 'same-octave 0))
1162 `(Staff ,(make-accidental-rule 'any-octave 0)
1163 ,(make-accidental-rule 'same-octave 1)
1165 ,(make-accidental-rule 'any-octave 0)
1166 ,(make-accidental-rule 'same-octave 1))
1169 ;; same as modern, but cautionary accidentals are printed for all sharp or flat
1170 ;; tones specified by the key signature.
1171 ((equal? style 'teaching)
1172 (set-accidentals-properties #f
1173 `(Staff ,(make-accidental-rule 'same-octave 0))
1174 `(Staff ,(make-accidental-rule 'same-octave 1)
1175 ,teaching-accidental-rule)
1178 ;; do not set localKeySignature when a note alterated differently from
1179 ;; localKeySignature is found.
1180 ;; Causes accidentals to be printed at every note instead of
1181 ;; remembered for the duration of a measure.
1182 ;; accidentals not being remembered, causing accidentals always to
1183 ;; be typeset relative to the time signature
1184 ((equal? style 'forget)
1185 (set-accidentals-properties '()
1186 `(Staff ,(make-accidental-rule 'same-octave -1))
1189 ;; Do not reset the key at the start of a measure. Accidentals will be
1190 ;; printed only once and are in effect until overridden, possibly many
1192 ((equal? style 'no-reset)
1193 (set-accidentals-properties '()
1194 `(Staff ,(make-accidental-rule 'same-octave #t))
1198 (ly:warning (_ "unknown accidental style: ~S") style)
1199 (make-sequential-music '()))))))
1201 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1203 (define-public (skip-of-length mus)
1204 "Create a skip of exactly the same length as MUS."
1208 'duration (ly:make-duration 0 0))))
1210 (make-event-chord (list (ly:music-compress skip (ly:music-length mus))))))
1212 (define-public (mmrest-of-length mus)
1213 "Create a mmrest of exactly the same length as MUS."
1216 (make-multi-measure-rest
1217 (ly:make-duration 0 0) '())))
1218 (ly:music-compress skip (ly:music-length mus))
1221 (define-public (pitch-of-note event-chord)
1224 ((evs (filter (lambda (x) (memq 'note-event (ly:music-property x 'types)))
1225 (ly:music-property event-chord 'elements))))
1228 (ly:music-property (car evs) 'pitch)
1231 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1233 (define-public (extract-named-music music music-name)
1234 "Return a flat list of all music named @code{music-name}
1236 (let ((extracted-list
1237 (if (ly:music? music)
1238 (if (eq? (ly:music-property music 'name) music-name)
1240 (let ((elt (ly:music-property music 'element))
1241 (elts (ly:music-property music 'elements)))
1243 (extract-named-music elt music-name)
1247 (extract-named-music x music-name ))
1250 (flatten-list extracted-list)))
1252 (define-public (event-chord-notes event-chord)
1253 "Return a list of all notes from @{event-chord}."
1255 (lambda (m) (eq? 'NoteEvent (ly:music-property m 'name)))
1256 (ly:music-property event-chord 'elements)))
1258 (define-public (event-chord-pitches event-chord)
1259 "Return a list of all pitches from @{event-chord}."
1260 (map (lambda (x) (ly:music-property x 'pitch))
1261 (event-chord-notes event-chord)))