X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=scm%2Fpart-combiner.scm;h=7deeeeb4815615f4ffb5e9ff48b1dcda321a716a;hb=623fac8d645e4078af36758af5d437c5eb39e793;hp=a444313f6617f1d385580e8cd76905b1041b8eb7;hpb=77937d2cc4905b92803e18fb69ee315f5f8c562b;p=lilypond.git diff --git a/scm/part-combiner.scm b/scm/part-combiner.scm index a444313f66..7deeeeb481 100644 --- a/scm/part-combiner.scm +++ b/scm/part-combiner.scm @@ -1,8 +1,19 @@ -;;;; part-combiner.scm -- Part combining, staff changes. +;;;; This file is part of LilyPond, the GNU music typesetter. ;;;; -;;;; source file of the GNU LilyPond music typesetter -;;;; -;;;; (c) 2004--2006 Han-Wen Nienhuys +;;;; Copyright (C) 2004--2012 Han-Wen Nienhuys +;;;; +;;;; LilyPond is free software: you can redistribute it and/or modify +;;;; it under the terms of the GNU General Public License as published by +;;;; the Free Software Foundation, either version 3 of the License, or +;;;; (at your option) any later version. +;;;; +;;;; LilyPond is distributed in the hope that it will be useful, +;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;;;; GNU General Public License for more details. +;;;; +;;;; You should have received a copy of the GNU General Public License +;;;; along with LilyPond. If not, see . ;; todo: figure out how to make module, ;; without breaking nested ly scopes @@ -19,7 +30,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) @@ -30,7 +41,7 @@ (define-method (note-events (vs )) (define (f? x) - (equal? (ly:event-property x 'class) 'note-event)) + (ly:in-event-class? x 'note-event)) (filter f? (events vs))) (define-method (previous-voice-state (vs )) @@ -43,13 +54,16 @@ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (define-class () + ;; The automatically determined split configuration (configuration #:init-value '() #:accessor configuration) + ;; Allow overriding split configuration, takes precedence over configuration + (forced-configuration #:init-value #f #:accessor forced-configuration) (when-moment #:accessor when #:init-keyword #:when) ;; voice-states are states starting with the Split-state or later ;; (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 +96,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,32 +128,32 @@ 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) + (if (ly:in-event-class? ev '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) + (if (ly:in-event-class? ev 'note-event) (assoc-remove! active 'tie) active)) (define (analyse-absdyn-end active ev) - (if (or (equal? (ly:event-property ev 'class) 'absolute-dynamic-event) - (and (equal? (ly:event-property ev 'class) 'crescendo-event) + (if (or (ly:in-event-class? ev 'absolute-dynamic-event) + (and (ly:in-event-class? ev 'span-dynamic-event) (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 + "Find a maximum stretch that can be marked as solo. Only set the mark when there are no spanners active. return next idx to analyse. @@ -424,7 +488,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) @@ -433,9 +497,9 @@ 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. " + "Analyse 'apart starting at RESULT-IDX. Return next index." (let* ((now-state (vector-ref result result-idx)) (vs1 (current-voice-state now-state 1)) (vs2 (current-voice-state now-state 2)) @@ -459,11 +523,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)) @@ -479,14 +543,25 @@ the mark when there are no spanners active. (display "***\n") (display result) (display "***\n"))) + + ;; Extract all forced combine strategies, i.e. events inserted by + ;; \partcombine(Apart|Automatic|SoloI|SoloII|Chords)[Once] + ;; They will in the end override the automaically determined ones. + ;; Initial state for both voices is no override + (analyse-forced-combine 0 #f) + ;; Now go through all time steps in a loop and find a combination strategy + ;; based only on the events of that one moment (i.e. neglecting longer + ;; periods of solo/apart, etc.) (analyse-time-step 0) ;; (display result) + ;; Check for unisono or unisilence moments (analyse-a2 0) ;;(display result) (analyse-solo12 0) ;; (display result) (set! result (map - (lambda (x) (cons (when x) (configuration x))) + ;; forced-configuration overrides, if it is set + (lambda (x) (cons (when x) (or (forced-configuration x) (configuration x)))) (vector->list result))) (if #f ;; pc-debug (display result)) @@ -495,13 +570,29 @@ the mark when there are no spanners active. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -(define-public (add-quotable name mus) - (set! noticed '()) +(define-public (add-quotable parser name mus) (let* ((tab (eval 'musicQuotes (current-module))) - (context-list (recording-group-emulate (context-spec-music mus 'Voice) - part-combine-listener))) - (if (pair? context-list) - (hash-set! tab name - ;; cdr : skip name string - (list->vector (reverse! (cdar context-list) - '())))))) + (voicename (get-next-unique-voice-name)) + ;; recording-group-emulate returns an assoc list (reversed!), so + ;; hand it a proper unique context name and extract that key: + (ctx-spec (context-spec-music mus 'Voice voicename)) + (listener (ly:parser-lookup parser 'partCombineListener)) + (context-list (reverse (recording-group-emulate ctx-spec listener))) + (raw-voice (assoc voicename context-list)) + (quote-contents (if (pair? raw-voice) (cdr raw-voice) '()))) + + ;; If the context-specced quoted music does not contain anything, try to + ;; use the first child, i.e. the next in context-list after voicename + ;; That's the case e.g. for \addQuote "x" \relative c \new Voice {...} + (if (null? quote-contents) + (let find-non-empty ((current-tail (member raw-voice context-list))) + ;; if voice has contents, use them, otherwise check next ctx + (cond ((null? current-tail) #f) + ((and (pair? (car current-tail)) + (pair? (cdar current-tail))) + (set! quote-contents (cdar current-tail))) + (else (find-non-empty (cdr current-tail)))))) + + (if (not (null? quote-contents)) + (hash-set! tab name (list->vector (reverse! quote-contents '()))) + (ly:music-warning mus (ly:format (_ "quoted music `~a' is empty") name)))))