]> git.donarmstrong.com Git - lilypond.git/blob - scm/output-ps.scm
b31ac807a49d98437f2fa0b5ce0fb06a5c1c8cac
[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 (define (grob-cause offset grob)
199   (let* ((cause (ly:grob-property grob 'cause))
200          (music-origin (if (ly:music? cause)
201                            (ly:music-property cause 'origin))))
202     (if (not (ly:input-location? music-origin))
203         ""
204         (let* ((location (ly:input-file-line-column music-origin))
205                (raw-file (car location))
206                (file (if (and (> (string-length raw-file) 0)
207                               (eq? (string-ref raw-file 0) #\/))
208                          raw-file
209                          (string-append (getcwd) "/" raw-file)))
210                (x-ext (ly:grob-extent grob grob X))
211                (y-ext (ly:grob-extent grob grob Y)))
212
213           (if (and (< 0 (interval-length x-ext))
214                    (< 0 (interval-length y-ext)))
215               (format "~a ~a ~a ~a (textedit://~a:~a:~a) mark_URI\n"
216                       (+ (car offset) (car x-ext))
217                       (+ (cdr offset) (car y-ext))
218                       (+ (car offset) (cdr x-ext))
219                       (+ (cdr offset) (cdr y-ext))
220                       file
221                       (cadr location)
222                       (caddr location))
223               "")))))
224
225 ;; WTF is this in every backend?
226 (define (horizontal-line x1 x2 th)
227   (draw-line th x1 0 x2 0))
228
229 (define (lily-def key val)
230   (let ((prefix "lilypondlayout"))
231     (if (string=?
232          (substring key 0 (min (string-length prefix) (string-length key)))
233          prefix)
234         (string-append "/" key " {" val "} bind def\n")
235         (string-append "/" key " (" val ") def\n"))))
236
237 (define (named-glyph font glyph)
238   (string-append 
239    (ps-font-command font) " setfont " 
240    "/" glyph " glyphshow "))
241
242 (define (no-origin)
243   "")
244
245 (define (placebox x y s) 
246   (string-append 
247    (ly:number->string x) " " (ly:number->string y) " { " s " } place-box\n"))
248
249 (define (polygon points blotdiameter)
250   (string-append
251    (ly:numbers->string points) " "
252    (ly:number->string (/ (length points) 2)) " "
253    (ly:number->string blotdiameter)
254    " draw_polygon"))
255
256 (define (repeat-slash wid slope thick)
257   (string-append
258    (ly:numbers->string (list wid slope thick))
259    " draw_repeat_slash"))
260
261 ;; restore color from stack
262 (define (resetcolor)
263   (string-append "setrgbcolor\n"))
264
265 (define (round-filled-box x y width height blotdiam)
266   (string-append
267    (ly:numbers->string
268     (list x y width height blotdiam)) " draw_round_box"))
269
270 ;; save current color on stack and set new color
271 (define (setcolor r g b)
272   (string-append "currentrgbcolor "
273   (ly:numbers->string (list r g b))
274   " setrgbcolor\n"))
275
276 (define (text font s)
277   ;; (ly:warning (_ "TEXT backend-command encountered in Pango backend"))
278   ;; (ly:warning (_ "Arguments: ~a ~a"" font str))
279   
280   (let* ((space-length (cdar (ly:text-dimension font " ")))
281          (space-move (string-append (number->string space-length)
282                                     " 0.0 rmoveto "))
283          (out-vec (decode-byte-string s)))
284
285     (string-append
286      (ps-font-command font) " setfont "
287      (string-join
288       (vector->list
289        (vector-for-each
290         
291         (lambda (sym)
292           (if (eq? sym 'space)
293               space-move
294               (string-append "/" (symbol->string sym) " glyphshow")))
295         out-vec))))))
296
297 (define (unknown) 
298   "\n unknown\n")
299
300 (define (url-link url x y)
301   (format "~a ~a ~a ~a (~a) mark_URI"
302           (car x)
303           (car y)
304           (cdr x)
305           (cdr y)
306           url))
307
308 (define (utf8-string pango-font-description string)
309   (ly:warning (_ "utf8-string encountered in PS backend")))
310
311 (define (white-dot x y radius)
312   (string-append
313    " "
314    (ly:numbers->string
315     (list x y radius)) " draw_white_dot"))
316
317 (define (white-text scale s)
318   (let ((mystring (string-append
319                    "(" s  ") " (number->string scale)
320                    " /Helvetica-Bold "
321                    " draw_white_text")))
322     mystring
323     ))
324
325 (define (zigzag-line centre? zzw zzh thick dx dy)
326   (string-append
327    (if centre? "true" "false") " "
328    (ly:number->string zzw) " "
329    (ly:number->string zzh) " "
330    (ly:number->string thick) " "
331    "0 0 "
332    (ly:number->string dx) " "
333    (ly:number->string dy)
334    " draw_zigzag_line"))