]> git.donarmstrong.com Git - lilypond.git/blob - scm/output-ps.scm
(calc_direction): take dir from visible stem in
[lilypond.git] / scm / output-ps.scm
1 ;;;; output-ps.scm -- implement Scheme output interface for PostScript
2 ;;;;
3 ;;;;  source file of the GNU LilyPond music typesetter
4 ;;;; 
5 ;;;; (c) 1998--2006 Jan Nieuwenhuizen <janneke@gnu.org>
6 ;;;;                 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7
8 ;;;; Note: currently misused as testbed for titles with markup, see
9 ;;;;       input/test/title-markup.ly
10 ;;;; 
11 ;;;; TODO:
12 ;;;;   * %% Papersize in (header ...)
13 ;;;;   * text setting, kerning.
14 ;;;;   * document output-interface
15
16 (define-module (scm output-ps)
17   #:re-export (quote)
18
19   ;; JUNK this -- see lily.scm: ly:all-output-backend-commands
20   #:export (unknown
21             blank
22             circle
23             dot
24             dashed-slur
25             char
26             setcolor
27             resetcolor
28             named-glyph
29             dashed-line
30             zigzag-line
31             comment
32             repeat-slash
33             placebox
34             bezier-sandwich
35             embedded-ps
36             round-filled-box
37             text
38             polygon
39             draw-line
40             no-origin))
41
42
43 (use-modules (guile)
44              (ice-9 regex)
45              (srfi srfi-1)
46              (srfi srfi-13)
47              (scm framework-ps)
48              (lily))
49
50 ;;; helper functions, not part of output interface
51 (define (escape-parentheses s)
52   (regexp-substitute/global #f "(^|[^\\])([\\(\\)])" s 'pre 1 "\\" 2 'post))
53
54 (define (ps-encoding text)
55   (escape-parentheses text))
56
57 ;; FIXME: lily-def
58 (define-public (ps-string-def prefix key val)
59   (string-append "/" prefix (symbol->string key) " ("
60                  (escape-parentheses val)
61                  ") def\n"))
62
63
64 (define (ps-number-def prefix key val)
65   (let ((s (if (integer? val)
66                (ly:number->string val)
67                (ly:number->string (exact->inexact val)))))
68     (string-append "/" prefix (symbol->string key) " " s " def\n")))
69
70
71 ;;;
72 ;;; Lily output interface, PostScript implementation --- cleanup and docme
73 ;;;
74
75 ;; two beziers
76 (define (bezier-sandwich lst thick)
77   (string-append 
78    (string-join (map ly:number-pair->string lst) " ")
79    " "
80    (ly:number->string thick)
81    " draw_bezier_sandwich"))
82
83 (define (char font i)
84   (string-append 
85    (ps-font-command font) " setfont " 
86    "(\\" (ly:inexact->string i 8) ") show"))
87
88 (define (circle radius thick fill)
89   (format
90    "~a ~a ~a draw_circle" radius thick
91    (if fill
92        "true "
93        "false ")))
94
95 (define (dashed-line thick on off dx dy)
96   (string-append 
97    (ly:number->string dx) " "
98    (ly:number->string dy) " "
99    (ly:number->string thick)
100    " [ "
101    (ly:number->string on) " "
102    (ly:number->string off)
103    " ] 0 draw_dashed_line"))
104
105 ;; what the heck is this interface ?
106 (define (dashed-slur thick on off l)
107   (string-append 
108    (string-join (map ly:number-pair->string l) " ")
109    " "
110    (ly:number->string thick) 
111    " [ "
112    (ly:number->string on)
113    " "   
114    (ly:number->string off)
115    " ] 0 draw_dashed_slur"))
116
117 (define (dot x y radius)
118   (string-append
119    " "
120    (ly:numbers->string
121     (list x y radius)) " draw_dot"))
122
123 (define (draw-line thick x1 y1 x2 y2)
124   (string-append 
125    "1 setlinecap 1 setlinejoin "
126    (ly:number->string thick) " setlinewidth "
127    (ly:number->string x1) " "
128    (ly:number->string y1) " moveto "
129    (ly:number->string x2) " "
130    (ly:number->string y2) " lineto stroke"))
131
132 (define (embedded-ps string)
133   (display (list "len " (string-length string) "\n"))
134   string)
135
136 (define (glyph-string
137          postscript-font-name
138          size cid?
139          w-x-y-named-glyphs)
140
141   (format #f "gsave 
142   /~a ~a ~a output-scale div scalefont setfont\n~a grestore"
143           postscript-font-name
144           (if cid?
145               " /CIDFont findresource "
146               " findfont")
147           size
148           (apply
149            string-append
150            (map (lambda  (item)
151                   (let*
152                       ((w (car item))
153                        (x (cadr item))
154                        (y (caddr item))
155                        (g (cadddr item))
156                        (prefix (if  (string? g) "/" "")))
157
158                     (format #f " gsave ~a~a glyphshow grestore ~a ~a rmoveto \n" prefix g (+ w x) y)
159                     ))
160                 w-x-y-named-glyphs))))
161
162 (define (grob-cause offset grob)
163   (let* ((cause (ly:grob-property grob 'cause))
164          (music-origin (if (ly:music? cause)
165                            (ly:music-property cause 'origin))))
166     (if (not (ly:input-location? music-origin))
167         ""
168         (let* ((location (ly:input-file-line-char-column music-origin))
169                (raw-file (car location))
170                (file (if (is-absolute? raw-file)
171                          raw-file
172                          (string-append (ly-getcwd) "/" raw-file)))
173                (x-ext (ly:grob-extent grob grob X))
174                (y-ext (ly:grob-extent grob grob Y)))
175
176           (if (and (< 0 (interval-length x-ext))
177                    (< 0 (interval-length y-ext)))
178               (format "~a ~a ~a ~a (textedit://~a:~a:~a:~a) mark_URI\n"
179                       (ly:number->string (+ (car offset) (car x-ext)))
180                       (ly:number->string (+ (cdr offset) (car y-ext)))
181                       (ly:number->string (+ (car offset) (cdr x-ext)))
182                       (ly:number->string (+ (cdr offset) (cdr y-ext)))
183
184                       ;; TODO
185                       ;; full escaping.
186                       (string-regexp-substitute " " "%20" file)
187                       (cadr location)
188                       (caddr location)
189                       (cadddr location))
190               "")))))
191
192 (define (lily-def key val)
193   (let ((prefix "lilypondlayout"))
194     (if (string=?
195          (substring key 0 (min (string-length prefix) (string-length key)))
196          prefix)
197         (string-append "/" key " {" val "} bind def\n")
198         (string-append "/" key " (" val ") def\n"))))
199
200 (define (named-glyph font glyph)
201   (string-append 
202    (ps-font-command font) " setfont " 
203    "/" glyph " glyphshow "))
204
205 (define (no-origin)
206   "")
207
208 (define (placebox x y s) 
209   (format
210    "gsave ~a ~a translate
211 0 0 moveto
212 ~a
213 grestore\n"
214
215    (ly:number->string x)
216    (ly:number->string y)
217    s))
218
219 (define (polygon points blotdiameter filled?)
220   (string-append
221    (ly:numbers->string points) " "
222    (ly:number->string (/ (length points) 2)) " "
223    (ly:number->string blotdiameter)
224    (if filled? " true " " false ")
225    " draw_polygon"))
226
227 (define (repeat-slash wid slope thick)
228   (string-append
229    (ly:numbers->string (list wid slope thick))
230    " draw_repeat_slash"))
231
232 ;; restore color from stack
233 (define (resetcolor)
234   (string-append "setrgbcolor\n"))
235
236 (define (round-filled-box x y width height blotdiam)
237   (string-append
238    (ly:numbers->string
239     (list x y width height blotdiam)) " draw_round_box"))
240
241 ;; save current color on stack and set new color
242 (define (setcolor r g b)
243   (string-append "currentrgbcolor "
244   (ly:numbers->string (list r g b))
245   " setrgbcolor\n"))
246
247 (define (text font s)
248   ;; (ly:warning (_ "TEXT backend-command encountered in Pango backend"))
249   ;; (ly:warning (_ "Arguments: ~a ~a"" font str))
250   
251   (let* ((space-length (cdar (ly:text-dimension font " ")))
252          (space-move (string-append (number->string space-length)
253                                     " 0.0 rmoveto "))
254          (out-vec (decode-byte-string s)))
255
256     (string-append
257      (ps-font-command font) " setfont "
258      (string-join
259       (vector->list
260        (vector-for-each
261         
262         (lambda (sym)
263           (if (eq? sym 'space)
264               space-move
265               (string-append "/" (symbol->string sym) " glyphshow")))
266         out-vec))))))
267
268 (define (unknown) 
269   "\n unknown\n")
270
271 (define (url-link url x y)
272   (format "~a ~a ~a ~a (~a) mark_URI"
273           (car x)
274           (car y)
275           (cdr x)
276           (cdr y)
277           url))
278
279 (define (utf-8-string pango-font-description string)
280   (ly:warning (_ "utf-8-string encountered in PS backend")))
281
282
283
284 (define (zigzag-line centre? zzw zzh thick dx dy)
285   (string-append
286    (if centre? "true" "false") " "
287    (ly:number->string zzw) " "
288    (ly:number->string zzh) " "
289    (ly:number->string thick) " "
290    "0 0 "
291    (ly:number->string dx) " "
292    (ly:number->string dy)
293    " draw_zigzag_line"))