1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
|
;;;; output-svg.scm -- implement Scheme output routines for SVG1
;;;;
;;;; source file of the GNU LilyPond music typesetter
;;;;
;;;; (c) 2002--2006 Jan Nieuwenhuizen <janneke@gnu.org>
;;;; http://www.w3.org/TR/SVG11
;;;; http://www.w3.org/TR/SVG12/ -- page, pageSet in draft
;;;; TODO:
;;;; * .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
(define-module (scm output-svg))
(define this-module (current-module))
(use-modules
(guile)
(ice-9 regex)
(lily)
(srfi srfi-1)
(srfi srfi-13))
(define lily-unit-length 1.75)
(define (dispatch expr)
(let ((keyword (car expr)))
(cond
((eq? keyword 'some-func) "")
;;((eq? keyword 'placebox) (dispatch (cadddr expr)))
(else
(if (module-defined? this-module keyword)
(apply (eval keyword this-module) (cdr expr))
(begin
(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)))
attributes-alist)))
(define-public (eo entity . attributes-alist)
"o = open"
(format #f "<~S~a>\n" entity (attributes attributes-alist)))
(define-public (eoc entity . attributes-alist)
" oc = open/close"
(format #f "<~S~a/>\n" entity (attributes attributes-alist)))
(define-public (ec entity)
"c = close"
(format #f "</~S>\n" entity))
(define-public (entity entity string . attributes-alist)
(if (equal? string "")
(apply eoc entity attributes-alist)
(string-append
(apply eo (cons entity attributes-alist)) string (ec entity))))
(define (offset->point o)
(format #f " ~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)))
(c123 (list-head lst 3)))
(string-append
(if (not close) "M " "L ")
(offset->point c0)
"C " (apply string-append (map offset->point c123))
(if (not close) "" (string-append
"L " (offset->point close))))))
(define (sqr x)
(* x x))
(define (integer->entity integer)
(format #f "&#x~x;" integer))
(define (char->entity char)
(integer->entity (char->integer char)))
(define (string->entities string)
(apply string-append
(map (lambda (x) (char->entity x)) (string->list string))))
(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 (_ "can't 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
style
(/ size lily-unit-length))
))
;;; 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"))
(format #f "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
;;;
;;; catch-all for missing stuff
;;; comment this out to see find out what functions you miss :-)
(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))
(first-c0 (car (list-tail first 3)))
(second (list-head lst 4)))
(entity 'path ""
'(stroke-linejoin . "round")
'(stroke-linecap . "round")
'(stroke . "currentColor")
'(fill . "currentColor")
`(stroke-width . ,thick)
`(d . ,(string-append (svg-bezier first #f)
(svg-bezier second first-c0)))
)))
(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))))))
(define-public (comment s)
(string-append "<!-- " s " !-->\n"))
(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
`(fontify ,font ,(entity 'tspan
(integer->entity
(ly:font-glyph-name-to-charcode font name))))))
(define (placebox x y expr)
(entity 'g
expr
;; FIXME: Not using GNU coding standards [translate ()] here
;; to work around a bug in Microsoft Internet Explorer 6.0
`(transform . ,(format #f "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 "<g transform=\"rotate(~a,~a,~a)\">"
(number->string (* -1 ang))
(number->string x)
(number->string (* -1 y))))
(define (resetrotation ang x y)
"</g>")
(define (round-filled-box breapth width depth height blot-diameter)
(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)
;;'(stroke . "red")
;;'(fill . "orange")
`(x . ,(- breapth))
`(y . ,(- height))
`(width . ,(+ breapth width))
`(height . ,(+ depth height))
`(ry . ,(/ blot-diameter 2))
))
(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 (text font string)
(dispatch `(fontify ,font ,(entity 'tspan (string->entities string)))))
(define (utf-8-string pango-font-description string)
(dispatch `(fontify ,pango-font-description ,(entity 'tspan string))))
(define (setcolor r g b)
(format "<g color=\"rgb(~a%,~a%,~a%)\">"
(* 100 r) (* 100 g) (* 100 b)
))
(define (resetcolor)
"</g>")
|