]> git.donarmstrong.com Git - lilypond.git/blob - scm/music-functions.scm
* lily/my-lily-lexer.cc (prepare_for_next_token): use previous
[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 (unfold-repeats music)
56 "
57 This function replaces all repeats  with unfold repeats. It was 
58 written by Rune Zedeler. "
59   (let* ((es (ly-get-mus-property music 'elements))
60          (e (ly-get-mus-property music 'element))
61          (n  (ly-music-name music)))
62  
63     (if (equal? n "Repeated_music")
64         (begin
65           (if (equal?
66                (ly-get-mus-property music 'iterator-ctor)
67                Chord_tremolo_iterator::constructor)
68               (shift-duration-log music  (intlog2 (ly-get-mus-property music 'repeat-count)) 0)
69               )
70           (ly-set-mus-property!
71            music 'length Repeated_music::unfolded_music_length)
72           (ly-set-mus-property!
73            music 'start-moment-function Repeated_music::first_start)
74           (ly-set-mus-property!
75            music 'iterator-ctor Unfolded_repeat_iterator::constructor)))
76
77     (if (pair? es)
78         (ly-set-mus-property!
79          music 'elements
80          (map unfold-repeats es)))
81
82     (if (music? e)
83         (ly-set-mus-property!
84          music 'element
85          (unfold-repeats e)))
86
87     music))
88
89
90 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
91 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
92
93 (define  (pitchify-scripts music)
94   "Copy the pitch fields of the Note_requests into  Text_script_requests, to aid
95 Fingering_engraver."
96   (define (find-note musics)
97     (filter-list (lambda (m) (equal? (ly-music-name m) "Note_req")) musics)
98     )
99   (define (find-scripts musics)
100     (filter-list (lambda (m) (equal? (ly-music-name m) "Text_script_req")) musics))
101
102   (let* (
103          (e (ly-get-mus-property music 'element))
104          (es (ly-get-mus-property music 'elements))
105          (notes (find-note es))
106          (pitch (if (pair? notes) (ly-get-mus-property (car  notes) 'pitch) #f))
107          )
108
109     (if pitch
110         (map (lambda (x) (ly-set-mus-property! x 'pitch pitch)) (find-scripts es))
111         )
112         
113     (if (pair? es)
114         (ly-set-mus-property!
115          music 'elements
116          (map pitchify-scripts es)))
117
118     (if (music? e)
119         (ly-set-mus-property!
120          music 'element
121          (pitchify-scripts e)))
122
123     music))
124
125
126 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
127 ;; property setting music objs.
128 (define-public (make-grob-property-set grob gprop val)
129   "Make a M-exp that sets GPROP to VAL in GROBS. Does a pop first, i.e.
130 this is not an override 
131 "
132   
133    (let* ((m (make-music-by-name  'OverrideProperty)))
134      (ly-set-mus-property! m 'symbol grob)
135      (ly-set-mus-property! m 'grob-property gprop)
136      (ly-set-mus-property! m 'grob-value val)
137      (ly-set-mus-property! m 'pop-first #t)
138                 
139      m
140    
141    ))
142
143
144 (define-public (make-grob-property-revert grob gprop)
145   "Revert the grob property GPROP for GROB."
146    (let* ((m (make-music-by-name  'OverrideProperty)))
147      (ly-set-mus-property! m 'symbol grob)
148      (ly-set-mus-property! m 'grob-property gprop)
149                 
150      m
151    
152    ))
153    
154 (define-public (make-voice-props-set n)
155   (make-sequential-music
156    (append
157       (map (lambda (x) (make-grob-property-set x 'direction
158                                                (if (odd? n) -1 1)))
159            '(Tie Slur Stem Dots))
160       (list (make-grob-property-set 'NoteColumn 'horizontal-shift (quotient n 2)))
161    )
162   ))
163
164 (define-public (make-voice-props-revert)
165   (make-sequential-music
166    (list
167       (make-grob-property-revert 'Tie 'direction)
168       (make-grob-property-revert 'Dots 'direction)
169       (make-grob-property-revert 'Stem 'direction)
170       (make-grob-property-revert 'Slur 'direction)          
171       (make-grob-property-revert 'NoteColumn 'horizontal-shift)
172    ))
173   )
174
175 (define-public (context-spec-music m context . rest)
176   "Add \context CONTEXT = foo to M. "
177   
178   (let* ((cm (make-music-by-name 'ContextSpeccedMusic)))
179     (ly-set-mus-property! cm 'element m)
180     (ly-set-mus-property! cm 'context-type context)
181     (if (and  (pair? rest) (string? (car rest)))
182         (ly-set-mus-property! cm 'context-id (car rest))
183     )
184     cm
185   ))
186
187 (define-public (make-sequential-music elts)
188   (let*  ((m (make-music-by-name 'SequentialMusic)))
189     (ly-set-mus-property! m 'elements elts)
190     m
191   ))
192
193 (define-public (make-simultaneous-music elts)
194   (let*  ((m (make-music-by-name 'SimultaneousMusic)))
195     (ly-set-mus-property! m 'elements elts)
196     m
197     ))
198
199 (define-public (make-event-chord elts)
200   (let*  ((m (make-music-by-name 'EventChord)))
201     (ly-set-mus-property! m 'elements elts)
202     m
203     ))
204
205
206 (define-public (make-multi-measure-rest duration location)
207   (let*
208       (
209        (start (make-music-by-name 'MultiMeasureRestEvent))
210        (stop  (make-music-by-name 'MultiMeasureRestEvent))
211        (skip ( make-music-by-name 'SkipEvent))
212        (ch (make-music-by-name 'BarCheck))
213        (ch2  (make-music-by-name 'BarCheck))
214        )
215
216     (ly-set-mus-property! start 'span-direction START)
217     (ly-set-mus-property! stop 'span-direction STOP)    
218     (ly-set-mus-property! skip 'duration duration)
219     (map (lambda (x) (ly-set-mus-property! x 'origin location))
220          (list start stop skip ch ch2))
221     (make-sequential-music
222      (list
223       ch
224       (make-event-chord (list start))
225       (make-event-chord (list skip))
226       (make-event-chord (list stop))
227       ch2
228       ))
229     ))
230
231 (define-public (set-mus-properties! m alist)
232   "Set all of ALIST as properties of M." 
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* ((ts (ly-get-mus-property m 'types )))
242     (memq 'separator ts)
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 (make-music-by-name '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
403