X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=scm%2Foutput-svg.scm;h=b6bdb2721c56abc52ee406bf07c4a4bb900e2ec5;hb=5b4b0d6e9a197e8f9eb085b7c2ad78b8be3e5cfc;hp=25c6f269100e3234704da29fccdb6d3f47da4fd9;hpb=ddba9c87c58eb40ed7b92ea7864dc2ab17dfa7df;p=lilypond.git diff --git a/scm/output-svg.scm b/scm/output-svg.scm index 25c6f26910..b6bdb2721c 100644 --- a/scm/output-svg.scm +++ b/scm/output-svg.scm @@ -2,36 +2,36 @@ ;;;; ;;;; source file of the GNU LilyPond music typesetter ;;;; -;;;; (c) 2002--2004 Jan Nieuwenhuizen +;;;; (c) 2002--2008 Jan Nieuwenhuizen ;;;; http://www.w3.org/TR/SVG11 ;;;; http://www.w3.org/TR/SVG12/ -- page, pageSet in draft ;;;; TODO: -;;;; * font selection: name, size, design size -;;;; * .cff MUST NOT be in fc's fontpath? +;;;; * .cff MUST NOT be in fc's fontpath. +;;;; - workaround: remove mf/out from ~/.fonts.conf, +;;;; instead add ~/.fonts and symlink all /mf/out/*otf there. +;;;; - bug in fontconfig/freetype/pango? ;;;; * inkscape page/pageSet support ;;;; * inkscape SVG-font support ;;;; - use fontconfig/fc-cache for now, see output-gnome.scm -(debug-enable 'backtrace) (define-module (scm output-svg)) (define this-module (current-module)) (use-modules (guile) (ice-9 regex) + (ice-9 format) (lily) + (srfi srfi-1) (srfi srfi-13)) -;; GLobals -;; FIXME: 2? -(define output-scale (* 2 scale-to-unit)) +(define fancy-format format) +(define format ergonomic-simple-format) -(define (debugf string . rest) - (if #f - (apply stderr (cons string rest)))) +(define lily-unit-length 1.75) (define (dispatch expr) (let ((keyword (car expr))) @@ -42,24 +42,28 @@ (if (module-defined? this-module keyword) (apply (eval keyword this-module) (cdr expr)) (begin - (display - (string-append "undefined: " (symbol->string keyword) "\n")) + (ly:warning (_ "undefined: ~S") keyword) "")))))) ;; Helper functions (define-public (attributes attributes-alist) (apply string-append - (map (lambda (x) (format #f " ~s=\"~a\"" (car x) (cdr x))) + (map (lambda (x) (format " ~s=\"~a\"" (car x) (cdr x))) attributes-alist))) (define-public (eo entity . attributes-alist) - (format #f "<~S~a>\n" entity (attributes attributes-alist))) + "o = open" + (format "<~S~a>\n" entity (attributes attributes-alist))) (define-public (eoc entity . attributes-alist) - (format #f "<~S~a/>\n" entity (attributes attributes-alist))) + " oc = open/close" + (format "<~S~a/>\n" entity (attributes attributes-alist))) (define-public (ec entity) - (format #f "\n" entity)) + "c = close" + (format "\n" entity)) + + (define-public (entity entity string . attributes-alist) (if (equal? string "") @@ -68,7 +72,17 @@ (apply eo (cons entity attributes-alist)) string (ec entity)))) (define (offset->point o) - (format #f " ~S,~S" (car o) (cdr o))) + (format " ~S,~S" (car o) (- (cdr o)))) + +(define (number-list->point lst) + (define (helper lst) + (if (null? lst) + '() + (cons (format "~S,~S" (car lst) (cadr lst)) + (helper (cddr lst))))) + + (string-join (helper lst) " ")) + (define (svg-bezier lst close) (let* ((c0 (car (list-tail lst 3))) @@ -83,17 +97,8 @@ (define (sqr x) (* x x)) -(define (font-size font) - (let* ((designsize (ly:font-design-size font)) - (magnification (* (ly:font-magnification font))) - (scaling (* output-scale magnification designsize))) - (debugf "scaling:~S\n" scaling) - (debugf "magnification:~S\n" magnification) - (debugf "design:~S\n" designsize) - scaling)) - (define (integer->entity integer) - (format #f "&#x~x;" integer)) + (fancy-format "&#x~x;" integer)) (define (char->entity char) (integer->entity (char->integer char))) @@ -102,28 +107,61 @@ (apply string-append (map (lambda (x) (char->entity x)) (string->list string)))) -;; FIXME: font can be pango font-name or smob -;; determine size and style properly. -(define (svg-font font) - (let ((family (if (string? font) font (font-family font))) - (size (if (string? font) 12 (font-size font))) - (anchor "west")) - (format #f "font-family:~a;font-style:~a;font-size:~a;text-anchor:~a;" +(define pango-description-regexp-comma + (make-regexp "([^,]+), ?([-a-zA-Z_]*) ([0-9.]+)$")) + +(define pango-description-regexp-nocomma + (make-regexp "([^ ]+) ([-a-zA-Z_]*) ?([0-9.]+)$")) + +(define (pango-description-to-svg-font str) + (let* + ((size 4.0) + (family "Helvetica") + (style #f) + (match-1 (regexp-exec pango-description-regexp-comma str)) + (match-2 (regexp-exec pango-description-regexp-nocomma str)) + (match (if match-1 + match-1 + match-2))) + + (if (regexp-match? match) + (begin + (set! family (match:substring match 1)) + (if (< 0 (string-length (match:substring match 2))) + (set! style (match:substring match 2))) + (set! size + (string->number (match:substring match 3)))) + + (ly:warning (_ "cannot decypher Pango description: ~a") str)) + + (set! style + (if (string? style) + (format "font-style:~a;" style) + "")) + + (format "font-family:~a;~afont-size:~a;text-anchor:west" family - (otf-style-mangling font family) - size anchor))) + style + (/ size lily-unit-length)) + )) -(define (fontify font expr) - (entity 'text expr (cons 'style (svg-font font)))) +;;; FONT may be font smob, or pango font string +(define (svg-font font) + (if (string? font) + (pango-description-to-svg-font font) + (let ((name-style (font-name-style font)) + (size (modified-font-metric-font-scaling font)) + (anchor "west")) -(define-public (otf-style-mangling font family) - ;; Hmm, family is emmentaler20/26? - (if (string=? (substring family 0 (min (string-length family) 10)) - "emmentaler") - ;; urg; currently empty - ;;(substring family 10) - "20" - "Regular")) + (format "font-family:~a;font-style:~a;font-size:~a;text-anchor:~a;" + (car name-style) (cadr name-style) + size anchor)))) + +(define (fontify font expr) + (entity 'text expr + `(style . ,(svg-font font)) + '(fill . "currentColor") + )) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; stencil outputters @@ -131,74 +169,36 @@ ;;; catch-all for missing stuff ;;; comment this out to see find out what functions you miss :-) -(define (dummy . foo) "") -(map (lambda (x) (module-define! this-module x dummy)) - (append - (ly:all-stencil-expressions) - (ly:all-output-backend-commands))) - -(define (rect-beam width slope thick blot-diameter) - (let* ((x width) - (y (* slope width)) - (z (/ y x))) - (entity 'rect "" - ;; The stroke will stick out. To use stroke, - ;; the stroke-width must be subtracted from all other dimensions. - ;;'(stroke-linejoin . "round") - ;;'(stroke-linecap . "round") - ;;`(stroke-width . ,blot-diameter) - ;;'(stroke . "red") - ;;'(fill . "orange") - - `(x . 0) - `(y . ,(- (/ thick 2))) - `(width . ,width) - `(height . ,(+ thick (* (abs z) (/ thick 2)))) - `(rx . ,(/ blot-diameter 2)) - `(transform . ,(string-append - (format #f "matrix (1, ~f, 0, 1, 0, 0)" (- z)) - (format #f " scale (~f, ~f)" - output-scale output-scale)))))) - -(define (beam width slope thick blot-diameter) - (let* ((b blot-diameter) - (t (- thick b)) - (w (- width b)) - (h (* w slope))) - (entity 'polygon "" - '(stroke-linejoin . "round") - '(stroke-linecap . "round") - `(stroke-width . ,blot-diameter) - '(stroke . "black") - '(fill . "black") - `(points . ,(string-join - (map offset->point - (list (cons (/ b 2) (/ t 2)) - (cons (+ w (/ b 2)) (+ h (/ t 2))) - (cons (+ w (/ b 2)) (+ h (- (/ t 2)))) - (cons (/ b 2) (- (/ t 2))))))) - `(transform - . ,(format #f "scale (~f, -~f)" output-scale output-scale))))) - -(define (path-beam width slope thick blot-diameter) - (let* ((b blot-diameter) - (t (- thick b)) - (w (- width b)) - (h (* w slope))) - (entity 'path "" - '(stroke-linejoin . "round") - '(stroke-linecap . "round") - `(stroke-width . ,blot-diameter) - '(stroke . "black") - '(fill . "black") - `(d . ,(format #f "M ~S,~S l ~S,~S l ~S,~S l ~S,~S l ~S,~S" - (/ b 2) (/ t 2) - w (- h) - 0 (- t) - (- w) h - 0 t)) - `(transform - . ,(format #f "scale (~f, ~f)" output-scale output-scale))))) + +(if #f + (begin + (define (dummy . foo) "") + (map (lambda (x) (module-define! this-module x dummy)) + (append + (ly:all-stencil-expressions) + (ly:all-output-backend-commands))) + )) + +(define (url-link url x y) + (string-append + (eo 'a `(xlink:href . ,url)) + (eoc 'rect + `(x . ,(car x)) + `(y . ,(car y)) + `(width . ,(- (cdr x) (car x))) + `(height . ,(- (cdr y) (car y))) + '(fill . "none") + '(stroke . "none") + '(stroke-width . "0.0")) + (ec 'a))) + +(define (grob-cause offset grob) + "") + +(define (no-origin) + "") + + (define (bezier-sandwich lst thick) (let* ((first (list-tail lst 4)) @@ -207,14 +207,48 @@ (entity 'path "" '(stroke-linejoin . "round") '(stroke-linecap . "round") + '(stroke . "currentColor") + '(fill . "currentColor") `(stroke-width . ,thick) - '(stroke . "black") - '(fill . "black") `(d . ,(string-append (svg-bezier first #f) (svg-bezier second first-c0))) - `(transform - . ,(format #f "scale (~f, -~f)" output-scale output-scale))))) - + ))) + +(define (path thick commands) + (define (convert-path-exps exps) + (if (pair? exps) + (let* + ((head (car exps)) + (rest (cdr exps)) + (arity + (cond + ((memq head '(rmoveto rlineto lineto moveto)) 2) + ((memq head '(rcurveto curveto)) 6) + (else 1))) + (args (take rest arity)) + (svg-head (assoc-get head '((rmoveto . m) + (rcurveto . c) + (curveto . C) + (moveto . M) + (lineto . L) + (rlineto . l)) + "")) + ) + + (cons (format "~a~a " + svg-head (number-list->point args) + ) + (convert-path-exps (drop rest arity)))) + '())) + + (entity 'path "" + `(stroke-width . ,thick) + '(stroke-linejoin . "round") + '(stroke-linecap . "round") + '(stroke . "currentColor") + '(fill . "none") + `(d . ,(string-join (convert-path-exps commands) " ")))) + (define (char font i) (dispatch `(fontify ,font ,(entity 'tspan (char->entity (integer->char i)))))) @@ -222,29 +256,22 @@ (define-public (comment s) (string-append "\n")) -(define (dashed-line thick on off dx dy) - (draw-line thick 0 0 dx dy)) - -(define (draw-line thick x1 y1 x2 y2) - (entity 'line "" - '(stroke-linejoin . "round") - '(stroke-linecap . "round") - `(stroke-width . ,thick) - '(stroke . "black") - ;;'(fill . "black") - `(x1 . ,x1) - `(y1 . ,y1) - `(x2 . ,x2) - `(y2 . ,y2) - `(transform - . ,(format #f "scale (~f, -~f)" output-scale output-scale)))) - -;; WTF is this in every backend? -(define (horizontal-line x1 x2 th) - (filledbox (- x1) (- x2 x1) (* .5 th) (* .5 th))) - -(define (filledbox breapth width depth height) - (round-filled-box breapth width depth height 0)) +(define (draw-line thick x1 y1 x2 y2 . alist) + + (apply entity 'line "" + (append + `((stroke-linejoin . "round") + (stroke-linecap . "round") + (stroke-width . ,thick) + (stroke . "currentColor") + (x1 . ,x1) + (y1 . ,(- y1)) + (x2 . ,x2) + (y2 . ,(- y2))) + alist))) + +(define (dashed-line thick on off dx dy phase) + (draw-line thick 0 0 dx dy `(style . ,(format "stroke-dasharray:~a,~a;" on off)))) (define (named-glyph font name) (dispatch @@ -254,24 +281,33 @@ (define (placebox x y expr) (entity 'g - ;; FIXME -- JCN - ;;(dispatch expr) expr - `(transform . ,(format #f "translate (~f, ~f)" - (* output-scale x) - (- (* output-scale y)))))) - -(define (polygon coords blot-diameter) - (entity 'polygon "" - '(stroke-linejoin . "round") - '(stroke-linecap . "round") - `(stroke-width . ,blot-diameter) - '(stroke . "black") - ;;'(fill . "black") - `(points . ,(string-join - (map offset->point (ly:list->offsets '() coords)))) - `(transform - . ,(format #f "scale (~f, -~f)" output-scale output-scale)))) + ;; FIXME: Not using GNU coding standards [translate ()] here + ;; to work around a bug in Microsoft Internet Explorer 6.0 + `(transform . ,(ly:format "translate(~f, ~f)" + x (- y))))) + +(define (polygon coords blot-diameter is-filled) + (entity + 'polygon "" + '(stroke-linejoin . "round") + '(stroke-linecap . "round") + `(stroke-width . ,blot-diameter) + `(fill . ,(if is-filled "currentColor" "none")) + '(stroke . "currentColor") + `(points . ,(string-join + (map offset->point (ly:list->offsets '() coords)))) + )) + +;; rotate around given point +(define (setrotation ang x y) + (format "" + (number->string (* -1 ang)) + (number->string x) + (number->string (* -1 y)))) + +(define (resetrotation ang x y) + "") (define (round-filled-box breapth width depth height blot-diameter) (entity 'rect "" @@ -288,11 +324,61 @@ `(width . ,(+ breapth width)) `(height . ,(+ depth height)) `(ry . ,(/ blot-diameter 2)) - `(transform - . ,(format #f "scale (~f, ~f)" output-scale output-scale)))) + )) + +(define (circle radius thick is-filled) + (entity + 'circle "" + '(stroke-linejoin . "round") + '(stroke-linecap . "round") + `(fill . ,(if is-filled "currentColor" "none")) + `(stroke . "currentColor") + `(stroke-width . ,thick) + `(r . ,radius))) + +(define (ellipse x-radius y-radius thick is-filled) + (entity + 'ellipse "" + '(stroke-linejoin . "round") + '(stroke-linecap . "round") + `(fill . ,(if is-filled "currentColor" "none")) + `(stroke . "currentColor") + `(stroke-width . ,thick) + `(rx . ,x-radius) + `(ry . ,y-radius))) + +(define (oval x-radius y-radius thick is-filled) + (let ((x-max x-radius) + (x-min (- x-radius)) + (y-max y-radius) + (y-min (- y-radius))) + (entity + 'path "" + '(stroke-linejoin . "round") + '(stroke-linecap . "round") + `(fill . ,(if is-filled "currentColor" "none")) + `(stroke . "currentColor") + `(stroke-width . ,thick) + `(d . ,(ly:format "M~4f,~4f C~4f,~4f ~4f,~4f ~4f,~4f S~4f,~4f ~4f,~4f" + x-max 0 + x-max y-max + x-min y-max + x-min 0 + x-max y-min + x-max 0))))) (define (text font string) (dispatch `(fontify ,font ,(entity 'tspan (string->entities string))))) -(define (utf8-string pango-font-description string) +(define (utf-8-string pango-font-description string) (dispatch `(fontify ,pango-font-description ,(entity 'tspan string)))) + + + +(define (setcolor r g b) + (format "" + (* 100 r) (* 100 g) (* 100 b) + )) + +(define (resetcolor) + "")