]> git.donarmstrong.com Git - lilypond.git/blob - scm/output-ps.scm
(grob-cause): don't add cwd if path starts
[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             white-dot
25             beam
26             bracket
27             dashed-slur
28             char
29             setcolor
30             resetcolor
31             named-glyph
32             dashed-line
33             zigzag-line
34             ez-ball
35             comment
36             repeat-slash
37             placebox
38             bezier-sandwich
39             horizontal-line
40             embedded-ps
41             filledbox
42             round-filled-box
43             text
44             white-text
45             polygon
46             draw-line
47             no-origin))
48
49
50 (use-modules (guile)
51              (ice-9 regex)
52              (srfi srfi-1)
53              (srfi srfi-13)
54              (scm framework-ps)
55              (lily))
56
57
58 ;;(map export
59 ;;   (append (ly:all-stencil-expressions) (ly:all-output-backend-commands)))
60
61 ;; huh?
62 ;;(write (ly:all-output-backend-commands))
63 ;;(write (ly:all-stencil-expressions))
64
65
66 ;;; helper functions, not part of output interface
67 (define (escape-parentheses s)
68   (regexp-substitute/global #f "(^|[^\\])([\\(\\)])" s 'pre 1 "\\" 2 'post))
69
70 (define (ps-encoding text)
71   (escape-parentheses text))
72
73 ;; FIXME: lily-def
74 (define-public (ps-string-def prefix key val)
75   (string-append "/" prefix (symbol->string key) " ("
76                  (escape-parentheses val)
77                  ") def\n"))
78
79
80 (define (ps-number-def prefix key val)
81   (let ((s (if (integer? val)
82                (ly:number->string val)
83                (ly:number->string (exact->inexact val)))))
84     (string-append "/" prefix (symbol->string key) " " s " def\n")))
85
86
87 ;;;
88 ;;; Lily output interface, PostScript implementation --- cleanup and docme
89 ;;;
90
91 ;;; Output-interface functions
92 (define (beam width slope thick blot)
93   (string-append
94    (ly:numbers->string (list slope width thick blot)) " draw_beam" ))
95
96 ;; two beziers
97 (define (bezier-sandwich lst thick)
98   (string-append 
99    (string-join (map ly:number-pair->string lst) " ")
100    " "
101    (ly:number->string thick)
102    " draw_bezier_sandwich"))
103
104 (define (bracket arch_angle arch_width arch_height height arch_thick thick)
105   (string-append
106    (ly:numbers->string
107     (list arch_angle arch_width arch_height height arch_thick thick))
108    " draw_bracket"))
109
110 (define (circle radius thick fill)
111   (format
112    "~a ~a ~a draw_circle" radius thick
113    (if fill
114        "true "
115        "false ")
116    ))
117
118 (define (char font i)
119   (string-append 
120    (ps-font-command font) " setfont " 
121    "(\\" (ly:inexact->string i 8) ") show"))
122
123 (define (dashed-line thick on off dx dy)
124   (string-append 
125    (ly:number->string dx) " "
126    (ly:number->string dy) " "
127    (ly:number->string thick)
128    " [ "
129    (ly:number->string on) " "
130    (ly:number->string off)
131    " ] 0 draw_dashed_line"))
132
133 ;; what the heck is this interface ?
134 (define (dashed-slur thick on off l)
135   (string-append 
136    (string-join (map ly:number-pair->string l) " ")
137    " "
138    (ly:number->string thick) 
139    " [ "
140    (ly:number->string on)
141    " "   
142    (ly:number->string off)
143    " ] 0 draw_dashed_slur"))
144
145 (define (dot x y radius)
146   (string-append
147    " "
148    (ly:numbers->string
149     (list x y radius)) " draw_dot"))
150
151 (define (draw-line thick x1 y1 x2 y2)
152   (string-append 
153    "1 setlinecap 1 setlinejoin "
154    (ly:number->string thick) " setlinewidth "
155    (ly:number->string x1) " "
156    (ly:number->string y1) " moveto "
157    (ly:number->string x2) " "
158    (ly:number->string y2) " lineto stroke"))
159
160 (define (embedded-ps string)
161   string)
162
163 ;; FIXME. 
164 (define (ez-ball ch letter-col ball-col)
165   (string-append
166    " (" ch ") "
167    (ly:numbers->string (list letter-col ball-col))
168    ;; FIXME: barf
169    " /Helvetica-Bold "
170    " draw_ez_ball"))
171
172 ;; FIXME: use draw_round_box
173 (define (filledbox breapth width depth height)
174   (string-append (ly:numbers->string (list breapth width depth height))
175                  " draw_box"))
176
177 (define (glyph-string
178          postscript-font-name
179          size
180          x-y-named-glyphs)
181   (format #f "gsave 1 output-scale div 1 output-scale div scale
182   /~a findfont ~a scalefont setfont\n~a grestore" postscript-font-name size
183   (apply
184    string-append
185    (map (lambda  (item)
186           (let
187               ((x (car item))
188                 (y (cadr item))
189                 (g (caddr item)))
190
191             (if (and (= 0.0 x)
192                      (= 0.0 y))
193                 (format #f " /~a glyphshow\n" g)
194                 (format #f " ~a ~a rmoveto /~a glyphshow\n"
195                         x y g))))
196         x-y-named-glyphs))
197   ))
198
199 (define (grob-cause offset grob)
200   (let* ((cause (ly:grob-property grob 'cause))
201          (music-origin (if (ly:music? cause)
202                            (ly:music-property cause 'origin)))
203          (location (if (ly:input-location? music-origin)
204                        (ly:input-file-line-column music-origin)
205                        #f
206                        ))
207          (file (if location
208                    (if (eq? (string-ref (car location) 0 ) #\/) 
209                        location
210                        (string-append (getcwd) "/" (car location)))
211                    #f))
212          (x-ext (ly:grob-extent grob grob X)) 
213          (y-ext (ly:grob-extent grob grob Y)) 
214          )
215
216     (if (and location
217              (< 0 (interval-length x-ext))
218              (< 0 (interval-length y-ext)))
219         
220         (format "~a ~a ~a ~a (textedit://~a:~a:~a) mark_URI\n"
221                 (+ (car offset) (car x-ext))
222                 (+ (cdr offset) (car y-ext))
223                 (+ (car offset) (cdr x-ext))
224                 (+ (cdr offset) (cdr y-ext))
225                 file
226                 (cadr location)
227                 (caddr location))
228         "")))
229
230 ;; WTF is this in every backend?
231 (define (horizontal-line x1 x2 th)
232   (draw-line th x1 0 x2 0))
233
234 (define (lily-def key val)
235   (let ((prefix "lilypondlayout"))
236     (if (string=?
237          (substring key 0 (min (string-length prefix) (string-length key)))
238          prefix)
239         (string-append "/" key " {" val "} bind def\n")
240         (string-append "/" key " (" val ") def\n"))))
241
242 (define (named-glyph font glyph)
243   (string-append 
244    (ps-font-command font) " setfont " 
245    "/" glyph " glyphshow "))
246
247 (define (no-origin)
248   "")
249
250 (define (placebox x y s) 
251   (string-append 
252    (ly:number->string x) " " (ly:number->string y) " { " s " } place-box\n"))
253
254 (define (polygon points blotdiameter)
255   (string-append
256    (ly:numbers->string points) " "
257    (ly:number->string (/ (length points) 2)) " "
258    (ly:number->string blotdiameter)
259    " draw_polygon"))
260
261 (define (repeat-slash wid slope thick)
262   (string-append
263    (ly:numbers->string (list wid slope thick))
264    " draw_repeat_slash"))
265
266 ;; restore color from stack
267 (define (resetcolor)
268   (string-append "setrgbcolor\n"))
269
270 (define (round-filled-box x y width height blotdiam)
271   (string-append
272    (ly:numbers->string
273     (list x y width height blotdiam)) " draw_round_box"))
274
275 ;; save current color on stack and set new color
276 (define (setcolor r g b)
277   (string-append "currentrgbcolor "
278   (ly:numbers->string (list r g b))
279   " setrgbcolor\n"))
280
281 (define (text font s)
282   ;; (ly:warning (_ "TEXT backend-command encountered in Pango backend"))
283   ;; (ly:warning (_ "Arguments: ~a ~a"" font str))
284   
285   (let* ((space-length (cdar (ly:text-dimension font " ")))
286          (space-move (string-append (number->string space-length)
287                                     " 0.0 rmoveto "))
288          (out-vec (decode-byte-string s)))
289
290     (string-append
291      (ps-font-command font) " setfont "
292      (string-join
293       (vector->list
294        (vector-for-each
295         
296         (lambda (sym)
297           (if (eq? sym 'space)
298               space-move
299               (string-append "/" (symbol->string sym) " glyphshow")))
300         out-vec))))))
301
302 (define (unknown) 
303   "\n unknown\n")
304
305 (define (url-link url x y)
306   (format "~a ~a ~a ~a (~a) mark_URI"
307           (car x)
308           (car y)
309           (cdr x)
310           (cdr y)
311           url))
312
313 (define (utf8-string pango-font-description string)
314   (ly:warning (_ "utf8-string encountered in PS backend")))
315
316 (define (white-dot x y radius)
317   (string-append
318    " "
319    (ly:numbers->string
320     (list x y radius)) " draw_white_dot"))
321
322 (define (white-text scale s)
323   (let ((mystring (string-append
324                    "(" s  ") " (number->string scale)
325                    " /Helvetica-Bold "
326                    " draw_white_text")))
327     mystring
328     ))
329
330 (define (zigzag-line centre? zzw zzh thick dx dy)
331   (string-append
332    (if centre? "true" "false") " "
333    (ly:number->string zzw) " "
334    (ly:number->string zzh) " "
335    (ly:number->string thick) " "
336    "0 0 "
337    (ly:number->string dx) " "
338    (ly:number->string dy)
339    " draw_zigzag_line"))