X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=scm%2Ffret-diagrams.scm;h=6dda45292852bdc0937521eda8abb1286d343b91;hb=HEAD;hp=a1daae33213f724d8ecd087a4218c349b6279fc7;hpb=c75617c60b8585fc27615de77b3add995adc9fee;p=lilypond.git diff --git a/scm/fret-diagrams.scm b/scm/fret-diagrams.scm index a1daae3321..6dda452928 100644 --- a/scm/fret-diagrams.scm +++ b/scm/fret-diagrams.scm @@ -1,6 +1,6 @@ ;;;; This file is part of LilyPond, the GNU music typesetter. ;;;; -;;;; Copyright (C) 2004--2014 Carl D. Sorensen +;;;; Copyright (C) 2004--2015 Carl D. Sorensen ;;;; ;;;; LilyPond is free software: you can redistribute it and/or modify ;;;; it under the terms of the GNU General Public License as published by @@ -44,7 +44,15 @@ to end-point." (define (get-numeric-from-key keystring) "Get the numeric value from a key of the form k:val" - (string->number (substring keystring 2 (string-length keystring)))) + (let* ((entry (substring keystring 2 (string-length keystring))) + (numeric-entry (string->number entry))) + ;; throw an error, if `entry' can't be transformed into a number + (if numeric-entry + numeric-entry + (ly:error + "Unhandled entry in fret-diagram \"~a\" in \"~a\"" + entry + keystring)))) (define (numerify mylist) "Convert string values to numeric or character" @@ -109,11 +117,12 @@ to end-point." (car this-list) ;; fret (- (second this-list) base-fret) - ;; finger - (if (or (null? (cddr this-list)) - (not (number? (caddr this-list)))) - '() - (third this-list)) + ;; finger-number or markup + (if (and (not (null? (cddr this-list))) + (or (markup? (caddr this-list)) + (number? (caddr this-list)))) + (third this-list) + '()) ;; inverted (dot-is-inverted this-list) ;; parenthesis @@ -244,7 +253,11 @@ with magnification @var{mag} of the string @var{text}." ((or (eq? my-code 'open)(eq? my-code 'mute)) (set! xo-list (cons* my-item xo-list))) ((eq? my-code 'barre) - (set! barre-list (cons* (cdr my-item) barre-list))) + (if (every number? (cdr my-item)) + (set! barre-list (cons* (cdr my-item) barre-list)) + (ly:error + "barre-indications should contain only numbers: ~a" + (cdr my-item)))) ((eq? my-code 'capo) (set! capo-fret (cadr my-item))) ((eq? my-code 'place-fret) @@ -260,12 +273,16 @@ with magnification @var{mag} of the string @var{text}." (if (> fretval maxfret) (set! maxfret fretval)) (if (< fretval minfret) (set! minfret fretval)) (updatemax (cdr fret-list))))) + ;; take frets of 'barre-settings into account + (if (not (null? barre-list)) + (set! minfret (apply min minfret (map last barre-list)))) (if (or (> maxfret my-fret-count) (> capo-fret 1)) (set! fret-range (cons minfret (let ((upfret (- (+ minfret my-fret-count) 1))) (if (> maxfret upfret) maxfret upfret))))) - (set! capo-fret (1+ (- capo-fret minfret))) + (if (not (zero? (apply min capo-fret (map cadr dot-list)))) + (set! capo-fret (1+ (- capo-fret minfret)))) ;; subtract fret from dots (set! dot-list (subtract-base-fret (- (car fret-range) 1) dot-list))) (acons 'fret-range fret-range @@ -285,6 +302,10 @@ with magnification @var{mag} of the string @var{text}." ;;TODO -- get string-count directly from length of stringTunings; ;; from FretBoard engraver, but not from markup call (details (merge-details 'fret-diagram-details props '())) + (fret-distance + (assoc-get 'fret-distance details 1.0)) + (string-distance + (assoc-get 'string-distance details 1.0)) (string-count (assoc-get 'string-count details 6)) ;; needed for everything (my-fret-count @@ -389,17 +410,17 @@ baseline at fret coordinate @var{base}, a height of bottom-control-point-height cp-right-width))) ;; order of bezier control points is: - ;; left cp low, right cp low, right end low, left end low - ;; right cp high, left cp high, left end high, right end high. + ;; left cp low, left cp low, right cp low, right end low + ;; right cp high, left cp high - (list left-lower-control-point + (list + left-end-point + left-lower-control-point right-lower-control-point right-end-point - left-end-point + right-upper-control-point - left-upper-control-point - left-end-point - right-end-point))) + left-upper-control-point))) (define (draw-strings) "Draw the string lines for a fret diagram with @@ -428,11 +449,13 @@ Line thickness is given by @var{th}, fret & string spacing by (start-coordinates (stencil-coordinates (- fret-half-thickness) - (- (* size string-coordinate) half-string))) + (- (* size string-distance string-coordinate) half-string))) (end-coordinates (stencil-coordinates - (+ fret-half-thickness (* size (1+ (fret-count fret-range)))) - (+ half-string (* size string-coordinate))))) + (+ fret-half-thickness + (* size fret-distance (1+ (fret-count fret-range)))) + (+ half-string + (* size string-distance string-coordinate))))) (ly:round-filled-box (string-x-extent start-coordinates end-coordinates) (string-y-extent start-coordinates end-coordinates) @@ -464,12 +487,12 @@ fret-diagram overall parameters." (fret-half-thickness (* 0.5 size th)) (start-coordinates (stencil-coordinates - (* size fret) + (* fret-distance size fret) (- fret-half-thickness low-string-half-thickness))) (end-coordinates (stencil-coordinates - (* size fret) - (* size (1- string-count))))) + (* fret-distance size fret) + (* size string-distance (1- string-count))))) (make-line-stencil (* size th) (car start-coordinates) (cdr start-coordinates) @@ -521,12 +544,12 @@ fret-diagram overall parameters." "Create a straight barre stencil." (let ((start-point (stencil-coordinates - (* size fret-coordinate) - (* size start-string-coordinate))) + (* size fret-distance fret-coordinate) + (* size string-distance start-string-coordinate))) (end-point (stencil-coordinates - (* size fret-coordinate) - (* size end-string-coordinate)))) + (* size fret-distance fret-coordinate) + (* size string-distance end-string-coordinate)))) (make-line-stencil half-thickness (car start-point) @@ -544,28 +567,14 @@ fret-diagram overall parameters." (bezier-height 0.5) (bezier-list (make-bezier-sandwich-list - (* size start-string-coordinate) - (* size end-string-coordinate) - (* size fret-coordinate) + (* size string-distance start-string-coordinate) + (* size string-distance end-string-coordinate) + (* size fret-distance fret-coordinate) (* size bezier-height) - (* size bezier-thick))) - (box-lower-left - (stencil-coordinates - (+ (* size fret-coordinate) half-thickness) - (- (* size start-string-coordinate) half-thickness))) - (box-upper-right - (stencil-coordinates - (- (* size fret-coordinate) - (* size bezier-height) - half-thickness) - (+ (* size end-string-coordinate) half-thickness))) - (x-extent (cons (car box-lower-left) (car box-upper-right))) - (y-extent (cons (cdr box-lower-left) (cdr box-upper-right)))) + (* size bezier-thick)))) (make-bezier-sandwich-stencil bezier-list - (* size bezier-thick) - x-extent - y-extent))) + (* size bezier-thick)))) (define (draw-dots dot-list) "Make dots for fret diagram." @@ -589,8 +598,10 @@ fret-diagram overall parameters." (restlist (cdr dot-list)) (string (car mypair)) (fret (cadr mypair)) - (fret-coordinate (* size (+ (1- fret) dot-position))) - (string-coordinate (* size (- string-count string))) + (fret-coordinate + (* size fret-distance (+ (1- fret) dot-position))) + (string-coordinate + (* size string-distance (- string-count string))) (dot-coordinates (stencil-coordinates fret-coordinate string-coordinate)) (extent (cons (- scale-dot-radius) scale-dot-radius)) @@ -668,10 +679,37 @@ fret-diagram overall parameters." ((or (eq? finger '())(eq? finger-code 'none)) positioned-dot) ((eq? finger-code 'in-dot) - (let ((finger-label - (centered-stencil - (sans-serif-stencil - layout props dot-label-font-mag finger)))) + (let* ((finger-stil + (if (not (null? finger)) + (sans-serif-stencil + layout props dot-label-font-mag finger) + empty-stencil)) + (finger-stil-length + (interval-length (ly:stencil-extent finger-stil X))) + (finger-stil-height + (interval-length (ly:stencil-extent finger-stil Y))) + (dot-stencil-radius + (/ (interval-length (ly:stencil-extent dot-stencil Y)) + 2)) + (scale-factor + (/ dot-stencil-radius + ;; Calculate the radius of the circle through the + ;; corners of the box containing the finger-stil. + ;; Give it a little padding. The value, (* 2 th), + ;; is my choice + (+ + (sqrt + (+ (expt (/ finger-stil-length 2) 2) + (expt (/ finger-stil-height 2) 2))) + (* 2 th)))) + (finger-label + (centered-stencil + (ly:stencil-scale + (sans-serif-stencil + layout props + dot-label-font-mag + finger) + scale-factor scale-factor)))) (ly:stencil-translate (ly:stencil-add final-dot-stencil @@ -691,8 +729,19 @@ fret-diagram overall parameters." (stencil-fretboard-offset label-stencil 'fret orientation)) (label-fret-coordinate - (+ (* size - (+ 1 my-fret-count finger-label-padding)) + ;; (1) Move the below-string-finger-codes to the bottom + ;; edge of the string, i.e. + ;; (* (1+ my-fret-count) fret-distance) + ;; (2) add `finger-label-padding' (a hardcoded + ;; correction-value to get a bit default padding). + ;; TODO: make it a property? + ;; (3) scale this with `size' + ;; (4) add `label-fret-offset', to get the final + ;; padding + (+ + (* size + (+ (* (1+ my-fret-count) fret-distance) + finger-label-padding)) label-fret-offset)) (label-string-coordinate string-coordinate) (label-translation @@ -720,7 +769,8 @@ fret-diagram overall parameters." (top-fret-thick (* sth (assoc-get 'top-fret-thickness details 3.0))) (start-string-coordinate (- half-lowest-string-thickness)) - (end-string-coordinate (+ (* size (1- string-count)) half-thick)) + (end-string-coordinate + (+ (* size string-distance (1- string-count)) half-thick)) (start-fret-coordinate half-thick) (end-fret-coordinate (- half-thick top-fret-thick)) (lower-left @@ -749,7 +799,8 @@ fret-diagram overall parameters." (glyph-string (if (eq? (car mypair) 'mute) (assoc-get 'mute-string details "X") (assoc-get 'open-string details "O"))) - (glyph-string-coordinate (* (- string-count (cadr mypair)) size)) + (glyph-string-coordinate + (* (- string-count (cadr mypair)) string-distance size)) (glyph-stencil (centered-stencil (sans-serif-stencil @@ -774,14 +825,14 @@ at @var{fret}." (half-thick (* capo-thick 0.5)) (last-string-position 0) (first-string-position (* size (- string-count 1))) - (fret-position ( * size (1- (+ dot-position fret)))) + (fret-position (* size (1- (+ dot-position fret)))) (start-point (stencil-coordinates - fret-position - first-string-position)) + (* fret-distance fret-position) + (* string-distance first-string-position))) (end-point (stencil-coordinates - fret-position + (* fret-distance fret-position) last-string-position))) (make-line-stencil capo-thick @@ -820,10 +871,11 @@ at @var{fret}." (ly:stencil-translate label-stencil (stencil-coordinates - (* size (+ 1.0 label-vertical-offset)) - (if (eq? label-dir LEFT) + (* size fret-distance (1+ label-vertical-offset)) + (if (eqv? label-dir LEFT) (- label-outside-diagram) - (+ (* size (1- string-count)) label-outside-diagram)))))) + (+ (* size string-distance (1- string-count)) + label-outside-diagram)))))) ;; Here is the body of make-fret-diagram @@ -892,7 +944,9 @@ a fret-indication list with the appropriate values" (output-list '()) (new-props '()) (details (merge-details 'fret-diagram-details props '())) - (items (string-split definition-string #\;))) + ;; remove whitespace-characters from definition-string + (cleared-string (remove-whitespace definition-string)) + (items (string-split cleared-string #\;))) (let parse-item ((myitems items)) (if (not (null? (cdr myitems))) (let ((test-string (car myitems))) @@ -928,7 +982,15 @@ a fret-indication list with the appropriate values" (set! details (acons 'dot-position dot-position details)))) (else - (let ((this-list (string-split test-string #\-))) + (let* ((this-list (string-split test-string #\-)) + (fret-number (string->number (car this-list)))) + ;; If none of the above applies, `fret-number' needs to be a + ;; number. Throw an error, if not. + (if (not fret-number) + (ly:error + "Unhandled entry in fret-diagrams \"~a\" in \"~a\"" + (car this-list) + test-string)) (if (string->number (cadr this-list)) (set! output-list (cons-fret @@ -937,11 +999,11 @@ a fret-indication list with the appropriate values" (if (equal? (cadr this-list) "x" ) (set! output-list (cons-fret - (list 'mute (string->number (car this-list))) + (list 'mute fret-number) output-list)) (set! output-list (cons-fret - (list 'open (string->number (car this-list))) + (list 'open fret-number) output-list))))))) (parse-item (cdr myitems))))) ;; add the modified details