X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=scm%2Ftranslation-functions.scm;h=0367a007ae5d512bcf3dc11a41d34f6ed1e91b83;hb=edf17353d89f4f6bd831466262402bb9151a26ca;hp=96a5c7ec27b2c7f1bab4268337b5a3127e3984e8;hpb=68f8545bd6a0221ee1100336e4ad49399a7ffaa4;p=lilypond.git diff --git a/scm/translation-functions.scm b/scm/translation-functions.scm index 96a5c7ec27..0367a007ae 100644 --- a/scm/translation-functions.scm +++ b/scm/translation-functions.scm @@ -2,20 +2,44 @@ ;;;; ;;;; source file of the GNU LilyPond music typesetter ;;;; -;;;; (c) 1998--2006 Han-Wen Nienhuys +;;;; (c) 1998--2007 Han-Wen Nienhuys ;;;; Jan Nieuwenhuizen ;; metronome marks -(define-public (format-metronome-markup dur count context) - (let* ((note-mark (make-smaller-markup - (make-note-by-number-markup (ly:duration-log dur) - (ly:duration-dot-count dur) - 1)))) - (make-line-markup - (list - (make-general-align-markup Y DOWN note-mark) - (make-simple-markup "=") - (make-simple-markup (number->string count)))))) +(define-public (format-metronome-markup text dur count context) + (let* ((hide_note (eq? #t (ly:context-property context 'tempoHideNote))) + (note-mark (if (and (not hide_note) (ly:duration? dur)) + (make-smaller-markup + (make-note-by-number-markup (ly:duration-log dur) + (ly:duration-dot-count dur) + 1)) + #f)) + (note-markup (if (and note-mark (number? count) (> count 0) ) + (make-concat-markup (list + (make-general-align-markup Y DOWN note-mark) + (make-simple-markup " ") + (make-simple-markup "=") + (make-simple-markup " ") + (make-simple-markup (number->string count)))) + #f)) + (text-markup (if (not (null? text)) + (make-bold-markup text) + #f))) + (if text-markup + (if note-markup + (make-line-markup (list text-markup + (make-concat-markup (list (make-simple-markup "(") + note-markup + (make-simple-markup ")"))))) + (make-line-markup (list text-markup)) + ) + (if note-markup + (make-line-markup (list note-markup)) + #f + ) + ) + ) +) (define-public (format-mark-alphabet mark context) (make-bold-markup (make-markalphabet-markup (1- mark)))) @@ -72,9 +96,12 @@ (lambda (y) (make-translate-scaled-markup (cons -0.7 0) y)) identity) - (if (eq? #t (ly:event-property event 'diminished)) - (markup #:slashed-digit figure) - (markup #:number (number->string figure 10)))) + (cond + ((eq? #t (ly:event-property event 'diminished)) + (markup #:slashed-digit figure)) + ((eq? #t (ly:event-property event 'augmented-slash)) + (markup #:backslashed-digit figure)) + (else (markup #:number (number->string figure 10))))) #f )) (alt (ly:event-property event 'alteration)) @@ -137,3 +164,143 @@ )) +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;; fret diagrams + +(define-public (determine-frets context grob notes string-numbers) + (define (ensure-number a b) + (if (number? a) + a + b)) +(let* + ((tunings (ly:context-property context 'stringTunings)) + (details (ly:grob-property grob 'fret-diagram-details)) + (minimum-fret (ensure-number + (ly:context-property context 'minimumFret) 0)) + (max-stretch (ensure-number + (ly:context-property context 'maximumFretStretch) 4)) + (string-frets (determine-frets-mf notes string-numbers + minimum-fret max-stretch + tunings))) + + (set! (ly:grob-property grob 'fret-diagram-details) + (if (null? details) + (acons 'string-count (length tunings) '()) + (acons 'string-count (length tunings) details))) + (set! (ly:grob-property grob 'string-fret-finger-combinations) string-frets))) + +(define-public (determine-frets-mf notes string-numbers + minimum-fret max-stretch + tunings) + + (define (calc-fret pitch string tuning) + (- (ly:pitch-semitones pitch) (list-ref tuning (1- string)))) + + (define (note-pitch a) + (ly:event-property a 'pitch)) + + (define (note-pitch max-stretch (abs (- fret specced-fret)))) + specified-frets) + )) + + (define (string-qualifies string pitch) + (let* + ((fret (calc-fret pitch string tunings))) + + (and (>= fret minimum-fret) + (close-enough fret)) + + )) + + (define string-fret-fingering-tuples '()) + (define (set-fret note string) + (set! string-fret-fingering-tuples + (cons (list string + (calc-fret (ly:event-property note 'pitch) + string tunings) + (note-finger note)) + string-fret-fingering-tuples)) + (del-string string)) + + + ;;; body. + (set! specified-frets + (filter identity (map + (lambda (note) + (if (note-string note) + (calc-fret (note-pitch note) + (note-string note) tunings) + #f)) + notes))) + + + (set! free-strings (map 1+ (iota (length tunings)))) + + (for-each (lambda (note) + (del-string (note-string note))) + notes) + + + (for-each + (lambda (note) + (if (note-string note) + (set-fret note (note-string note)) + (let* + ((string (find (lambda (string) (string-qualifies string + (note-pitch note))) + (reverse free-strings)))) + (if string + (set-fret note string) + (ly:warning "No string for pitch ~a (given frets ~a)" (note-pitch note) + specified-frets)) + + ))) + (sort notes note-pitch