]> git.donarmstrong.com Git - lilypond.git/blob - scm/music-functions.scm
*** empty log message ***
[lilypond.git] / scm / music-functions.scm
1 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2 ;; tuplets.
3
4 (define-public (denominator-tuplet-formatter mus)
5   (number->string (ly-get-mus-property mus 'denominator)))
6
7 (define-public (fraction-tuplet-formatter mus)
8   (string-append (number->string (ly-get-mus-property mus 'numerator))
9                  ":"
10                  (number->string (ly-get-mus-property mus 'denominator))
11                  ))
12
13 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
14
15
16 (define-public (shift-duration-log music shift dot)
17   "Recurse through music, adding SHIFT to duration-log and optionally 
18   a dot to any note encountered. This scales the music up by a factor 
19   2^shift * (2 - (1/2)^dot)"
20   (let* ((es (ly-get-mus-property music 'elements))
21          (e (ly-get-mus-property music 'element))
22          (n  (ly-music-name music))
23          (f  (lambda (x)  (shift-duration-log x shift dot)))
24          )
25     (if (or (equal? n "Note_req")
26             (equal? n "Rest_req"))
27         (let* (
28                (d (ly-get-mus-property music 'duration))
29                (cp (duration-factor d))
30                (nd (make-duration (+ shift (duration-log d))
31                                   (+ dot (duration-dot-count d))
32                                   (car cp)
33                                   (cdr cp)))
34                
35                )
36           (ly-set-mus-property! music 'duration nd)
37           ))
38     
39     (if (pair? es)
40         (ly-set-mus-property!
41          music 'elements
42          (map f es)))
43     
44     (if (music? e)
45         (ly-set-mus-property!
46          music 'element
47          (f e)))
48     
49     music))
50
51
52 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
53 ;; repeats.
54
55 (define-public (repeat-name-to-ctor name)
56   (let*
57       ((supported-reps
58         `(("volta" . ((iterator-ctor . ,Volta_repeat_iterator::constructor)
59                       (start-moment-function .  ,Repeated_music::first_start)
60                       (length . ,Repeated_music::volta_music_length)))
61           
62             ("unfold" . ((iterator-ctor . ,Unfolded_repeat_iterator::constructor)
63                          (start-moment-function .  ,Repeated_music::first_start)                         
64                          (length . ,Repeated_music::unfolded_music_length)))
65             ("fold" . ((iterator-ctor  . ,Folded_repeat_iterator::constructor)
66                        (start-moment-function .  ,Repeated_music::minimum_start)                         
67                        (length . ,Repeated_music::folded_music_length)))
68             ("percent" . ((iterator-ctor . ,Percent_repeat_iterator::constructor)
69                           (start-moment-function .  ,Repeated_music::first_start)
70                           (length . ,Repeated_music::unfolded_music_length)))
71             ("tremolo" . ((iterator-ctor . ,Chord_tremolo_iterator::constructor)
72                           (start-moment-function .  ,Repeated_music::first_start)
73
74                           ;; the length of the repeat is handled by shifting the note logs
75                           (length . ,Repeated_music::folded_music_length)))))
76           
77        (handle (assoc name supported-reps)))
78
79     (if (pair? handle)
80         (cdr handle)
81         (begin
82           (ly-warn
83            (string-append "Unknown repeat type `" name "'\nSee scm/c++.scm for supported repeats"))
84           '(type . 'repeated-music)))))
85
86 (define-public (unfold-repeats music)
87 "
88 This function replaces all repeats  with unfold repeats. It was 
89 written by Rune Zedeler. "
90   (let* ((es (ly-get-mus-property music 'elements))
91          (e (ly-get-mus-property music 'element))
92          (n  (ly-music-name music)))
93  
94     (if (equal? n "Repeated_music")
95         (begin
96           (if (equal?
97                (ly-get-mus-property music 'iterator-ctor)
98                Chord_tremolo_iterator::constructor)
99               (shift-duration-log music  (intlog2 (ly-get-mus-property music 'repeat-count)) 0)
100               )
101           (ly-set-mus-property!
102            music 'length Repeated_music::unfolded_music_length)
103           (ly-set-mus-property!
104            music 'start-moment-function Repeated_music::first_start)
105           (ly-set-mus-property!
106            music 'iterator-ctor Unfolded_repeat_iterator::constructor)))
107
108     (if (pair? es)
109         (ly-set-mus-property!
110          music 'elements
111          (map unfold-repeats es)))
112
113     (if (music? e)
114         (ly-set-mus-property!
115          music 'element
116          (unfold-repeats e)))
117
118     music))
119
120
121 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
122 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
123
124 (define  (pitchify-scripts music)
125   "Copy the pitch fields of the Note_requests into  Text_script_requests, to aid
126 Fingering_engraver."
127   (define (find-note musics)
128     (filter-list (lambda (m) (equal? (ly-music-name m) "Note_req")) musics)
129     )
130   (define (find-scripts musics)
131     (filter-list (lambda (m) (equal? (ly-music-name m) "Text_script_req")) musics))
132
133   (let* (
134          (e (ly-get-mus-property music 'element))
135          (es (ly-get-mus-property music 'elements))
136          (notes (find-note es))
137          (pitch (if (pair? notes) (ly-get-mus-property (car  notes) 'pitch) #f))
138          )
139
140     (if pitch
141         (map (lambda (x) (ly-set-mus-property! x 'pitch pitch)) (find-scripts es))
142         )
143         
144     (if (pair? es)
145         (ly-set-mus-property!
146          music 'elements
147          (map pitchify-scripts es)))
148
149     (if (music? e)
150         (ly-set-mus-property!
151          music 'element
152          (pitchify-scripts e)))
153
154     music))
155
156
157 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
158 ;; property setting music objs.
159 (define-public (make-grob-property-set grob gprop val)
160   "Make a M-exp that sets GPROP to VAL in GROBS. Does a pop first, i.e.
161 this is not an override 
162 "
163   
164    (let* ((m (ly-make-music  "Music")))
165      (ly-set-mus-property! m 'iterator-ctor Push_property_iterator::constructor)
166      (ly-set-mus-property! m 'symbol grob)
167      (ly-set-mus-property! m 'grob-property gprop)
168      (ly-set-mus-property! m 'grob-value val)
169      (ly-set-mus-property! m 'pop-first #t)
170                 
171      m
172    
173    ))
174
175
176 (define-public (make-grob-property-revert grob gprop)
177   "Revert the grob property GPROP for GROB."
178    (let* ((m (ly-make-music  "Music")))
179      (ly-set-mus-property! m 'iterator-ctor Pop_property_iterator::constructor)
180      (ly-set-mus-property! m 'symbol grob)
181      (ly-set-mus-property! m 'grob-property gprop)
182                 
183      m
184    
185    ))
186    
187 (define-public (make-voice-props-set n)
188   (make-sequential-music
189    (append
190       (map (lambda (x) (make-grob-property-set x 'direction
191                                                (if (odd? n) -1 1)))
192            '(Tie Slur Stem Dots))
193       (list (make-grob-property-set 'NoteColumn 'horizontal-shift (quotient n 2)))
194    )
195   ))
196
197 (define-public (make-voice-props-revert)
198   (make-sequential-music
199    (list
200       (make-grob-property-revert 'Tie 'direction)
201       (make-grob-property-revert 'Dots 'direction)
202       (make-grob-property-revert 'Stem 'direction)
203       (make-grob-property-revert 'Slur 'direction)          
204       (make-grob-property-revert 'NoteColumn 'horizontal-shift)
205    ))
206   )
207
208 (define-public (context-spec-music m context . rest)
209   "Add \context CONTEXT = foo to M. "
210   
211   (let* ((cm (ly-make-music "Context_specced_music")))
212     (ly-set-mus-property! cm 'element m)
213     (ly-set-mus-property! cm 'context-type context)
214     (if (and  (pair? rest) (string? (car rest)))
215         (ly-set-mus-property! cm 'context-id (car rest))
216     )
217     cm
218   ))
219
220 (define-public (make-sequential-music elts)
221   (let*  ((m (ly-make-music "Sequential_music")))
222     (ly-set-mus-property! m 'elements elts)
223     m
224   ))
225
226 (define-public (make-simultaneous-music elts)
227   (let*  ((m (ly-make-music "Simultaneous_music")))
228     (ly-set-mus-property! m 'elements elts)
229     m
230     ))
231
232 (define-public (set-mus-properties! m alist)
233   (if (pair? alist)
234       (begin
235         (ly-set-mus-property! m (caar alist) (cdar alist))
236         (set-mus-properties! m (cdr alist)))
237   ))
238
239 (define-public (music-separator? m)
240   "Is M a separator."
241   (let* ((n (ly-get-mus-property m 'name )))
242     (and (symbol? n) (equal? 'separator n))
243   ))
244
245 (define (split-one sep?  l acc)
246   "Split off the first parts before separator and return both parts.
247
248 "
249   (if (null? l)
250       (cons acc '())
251       (if (sep? (car l))
252           (cons acc (cdr l))
253           (split-one sep? (cdr l) (cons (car l) acc))
254           )
255       ))
256
257 (define-public (split-list l sep?)
258   "
259
260 (display (split-list '(a b c / d e f / g) (lambda (x) (equal? x '/))) )
261 =>
262  ...
263
264 "
265   (if (null? l)
266       '()
267       (let* ((c (split-one sep? l '())))
268         (cons (reverse! (car c) '()) (split-list (cdr c) sep?))
269         )
270       )
271   )
272
273 ;;; splitting chords into voices.
274
275 (define (voicify-list lst number)
276    "Make a list of Musics.
277
278    voicify-list :: [ [Music ] ] -> number -> [Music]
279    LST is a list music-lists.
280 "
281
282    (if (null? lst) '()
283        (cons (context-spec-music
284               (make-sequential-music
285                (list
286                 (make-voice-props-set number)
287                 (make-simultaneous-music (car lst))))
288
289               "Voice"  (number->string number))
290               (voicify-list (cdr lst) (+ number 1))
291        ))
292    )
293
294 (define (voicify-chord ch)
295   "Split the parts of a chord into different Voices using separator"
296    (let* ((es (ly-get-mus-property ch 'elements)))
297
298
299      (ly-set-mus-property!  ch 'elements
300        (voicify-list (split-list es music-separator?) 0))
301      ch
302    ))
303
304 (define (voicify-music m)
305    "Recursively split chords that are separated with \\ "
306    
307    (if (not (music? m))
308        (begin (display m)
309        (error "not music!"))
310        )
311    (let*
312        ((es (ly-get-mus-property m 'elements))
313         (e (ly-get-mus-property m 'element))
314         )
315      (if (pair? es)
316          (ly-set-mus-property! m 'elements (map voicify-music es)))
317      (if (music? e)
318          (ly-set-mus-property! m 'element  (voicify-music e)))
319      (if
320       (and (equal? (ly-music-name m) "Simultaneous_music")
321            (reduce (lambda (x y ) (or x y))     (map music-separator? es)))
322       (voicify-chord m)
323       )
324
325      m
326      ))
327
328 (define-public (empty-music)
329   (ly-id (ly-make-music "Music"))
330   )
331 ;;;
332
333 ; Make a function that checks score element for being of a specific type. 
334 (define-public (make-type-checker symbol)
335   (lambda (elt)
336     ;;(display  symbol)
337     ;;(eq? #t (ly-get-grob-property elt symbol))
338     (not (eq? #f (memq symbol (ly-get-grob-property elt 'interfaces))))))
339
340
341 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
342 ;; warn for bare chords at start.
343
344 (define (has-request-chord elts)
345   (reduce (lambda (x y) (or x y)) (map (lambda (x) (equal? (ly-music-name x)
346                                                            "Request_chord")) elts)
347   ))
348
349 (define (ly-music-message music msg)
350   (let* (
351       (ip (ly-get-mus-property music 'origin))
352       )
353
354     (if (ly-input-location? ip)
355         (ly-input-message ip msg)
356         (ly-warn msg))
357   ))
358   
359 (define (check-start-chords music)
360   "Check music expression for a Simultaneous_music containing notes\n(ie. Request_chords), without context specification. Called  from parser."
361   
362      (let*
363        ((es (ly-get-mus-property music 'elements))
364         (e (ly-get-mus-property music 'element))
365         (name (ly-music-name music)) 
366         )
367
368        (cond 
369          ((equal? name "Context_specced_music") #t)
370          ((equal? name "Simultaneous_music")
371
372           (if (has-request-chord es)
373               (ly-music-message music "Starting score with a chord.\nPlease insert an explicit \\context before chord")
374               (map check-start-chords es)))
375          
376          ((equal? name "Sequential_music")
377            (if (pair? es)
378                (check-start-chords (car es))))
379           (else (if (music? e) (check-start-chords e )))
380        
381        ))
382      music
383      )
384
385
386 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
387 ;; switch it on here, so parsing and init isn't checked (too slow!)
388
389 ;; automatic music transformations.
390
391 (define (switch-on-debugging m)
392   (set-debug-cell-accesses! 15000)
393   m
394   )
395
396 (define-public toplevel-music-functions
397   (list check-start-chords
398         voicify-music
399
400 ; switch-on-debugging
401         ))
402