X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=scm%2Fpart-combiner.scm;h=40047d3ce136ee65be7478d821eb019a083d9311;hb=a73104e2c14edcb69e6740e928c5ea68ca4e0682;hp=2f4d37a434b784cc231956aaae056cbc96688240;hpb=ca208d43bd8e68c9af7e3e3314ecfb2869fdfd6f;p=lilypond.git diff --git a/scm/part-combiner.scm b/scm/part-combiner.scm index 2f4d37a434..40047d3ce1 100644 --- a/scm/part-combiner.scm +++ b/scm/part-combiner.scm @@ -1,8 +1,8 @@ ;;;; part-combiner.scm -- Part combining, staff changes. ;;;; ;;;; source file of the GNU LilyPond music typesetter -;;;; -;;;; (c) 2004--2007 Han-Wen Nienhuys +;;;; +;;;; (c) 2004--2009 Han-Wen Nienhuys ;; todo: figure out how to make module, ;; without breaking nested ly scopes @@ -19,7 +19,7 @@ ;; of (SYMBOL . RESULT-INDEX), which indicates where ;; said spanner was started. (spanner-state #:init-value '() #:accessor span-state)) - + (define-method (write (x ) file) (display (when x) file) (display " evs = " file) @@ -49,7 +49,7 @@ ;; (is #:init-keyword #:voice-states #:accessor voice-states) (synced #:init-keyword #:synced #:init-value #f #:getter synced?)) - + (define-method (write (x ) f) (display (when x) f) @@ -82,7 +82,7 @@ "Merge lists VS1 and VS2, containing Voice-state objects into vector of Split-state objects, crosslinking the Split-state vector and Voice-state objects -" +" (define (helper ss-idx ss-list idx1 idx2) (let* ((state1 (if (< idx1 (vector-length vs1)) (vector-ref vs1 idx1) #f)) (state2 (if (< idx2 (vector-length vs2)) (vector-ref vs2 idx2) #f)) @@ -114,13 +114,13 @@ Voice-state objects (define (helper index active) "Analyse EVS at INDEX, given state ACTIVE." - + (define (analyse-tie-start active ev) (if (equal? (ly:event-property ev 'class) 'tie-event) (acons 'tie (split-index (vector-ref voice-state-vec index)) active) active)) - + (define (analyse-tie-end active ev) (if (equal? (ly:event-property ev 'class) 'note-event) (assoc-remove! active 'tie) @@ -132,12 +132,12 @@ Voice-state objects (equal? STOP (ly:event-property ev 'span-direction)))) (assoc-remove! (assoc-remove! active 'cresc) 'decr) active)) - + (define (active i b) b) (set! (configuration (vector-ref result i)) x))) - + (define (put x) ;; (display (list "putting " x "\n")) (set! (configuration (vector-ref result result-idx)) x)) - + (define (current-voice-state now-state voice-num) (define vs ((if (= 1 voice-num) car cdr) (voice-states now-state))) (if (or (not vs) (equal? (when now-state) (when vs))) vs (previous-voice-state vs))) - + (define (try-solo type start-idx current-idx) "Find a maximum stretch that can be marked as solo. Only set the mark when there are no spanners active. @@ -414,7 +422,7 @@ the mark when there are no spanners active. ;; ;; This includes rests. This isn't a problem: long rests ;; will be shared with the silent voice, and be marked - ;; as unisilence. Therefore, long rests won't + ;; as unisilence. Therefore, long rests won't ;; accidentally be part of a solo. ;; (put-range type start-idx current-idx) @@ -423,7 +431,7 @@ the mark when there are no spanners active. (try-solo type start-idx (1+ current-idx))))) ;; try-solo start-idx)) - + (define (analyse-moment result-idx) "Analyse 'apart starting at RESULT-IDX. Return next index. " (let* ((now-state (vector-ref result result-idx)) @@ -449,11 +457,11 @@ the mark when there are no spanners active. (equal? (when vs2) (when now-state)) (null? (previous-span-state vs2))) (try-solo 'solo2 result-idx result-idx)) - + (else (1+ result-idx))) ;; analyse-moment (1+ result-idx)))) - + (if (< result-idx (vector-length result)) (if (equal? (configuration (vector-ref result result-idx)) 'apart) (analyse-solo12 (analyse-moment result-idx))