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