]> git.donarmstrong.com Git - lilypond.git/blob - scm/output-ps.scm
(pad-to-box): new markup command.
[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--2005 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   string)
134
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                       (+ (car offset) (car x-ext))
180                       (+ (cdr offset) (car y-ext))
181                       (+ (car offset) (cdr x-ext))
182                       (+ (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   (string-append 
210    (ly:number->string x) " " (ly:number->string y) " { " s " } place-box\n"))
211
212 (define (polygon points blotdiameter filled?)
213   (string-append
214    (ly:numbers->string points) " "
215    (ly:number->string (/ (length points) 2)) " "
216    (ly:number->string blotdiameter)
217    (if filled? " true " " false ")
218    " draw_polygon"))
219
220 (define (repeat-slash wid slope thick)
221   (string-append
222    (ly:numbers->string (list wid slope thick))
223    " draw_repeat_slash"))
224
225 ;; restore color from stack
226 (define (resetcolor)
227   (string-append "setrgbcolor\n"))
228
229 (define (round-filled-box x y width height blotdiam)
230   (string-append
231    (ly:numbers->string
232     (list x y width height blotdiam)) " draw_round_box"))
233
234 ;; save current color on stack and set new color
235 (define (setcolor r g b)
236   (string-append "currentrgbcolor "
237   (ly:numbers->string (list r g b))
238   " setrgbcolor\n"))
239
240 (define (text font s)
241   ;; (ly:warning (_ "TEXT backend-command encountered in Pango backend"))
242   ;; (ly:warning (_ "Arguments: ~a ~a"" font str))
243   
244   (let* ((space-length (cdar (ly:text-dimension font " ")))
245          (space-move (string-append (number->string space-length)
246                                     " 0.0 rmoveto "))
247          (out-vec (decode-byte-string s)))
248
249     (string-append
250      (ps-font-command font) " setfont "
251      (string-join
252       (vector->list
253        (vector-for-each
254         
255         (lambda (sym)
256           (if (eq? sym 'space)
257               space-move
258               (string-append "/" (symbol->string sym) " glyphshow")))
259         out-vec))))))
260
261 (define (unknown) 
262   "\n unknown\n")
263
264 (define (url-link url x y)
265   (format "~a ~a ~a ~a (~a) mark_URI"
266           (car x)
267           (car y)
268           (cdr x)
269           (cdr y)
270           url))
271
272 (define (utf-8-string pango-font-description string)
273   (ly:warning (_ "utf-8-string encountered in PS backend")))
274
275
276
277 (define (zigzag-line centre? zzw zzh thick dx dy)
278   (string-append
279    (if centre? "true" "false") " "
280    (ly:number->string zzw) " "
281    (ly:number->string zzh) " "
282    (ly:number->string thick) " "
283    "0 0 "
284    (ly:number->string dx) " "
285    (ly:number->string dy)
286    " draw_zigzag_line"))