]> git.donarmstrong.com Git - lilypond.git/blob - scm/output-ps.scm
* scripts/lilypond-invoke-editor.scm (dissect-uri): Handle URIs
[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 ;;; helper functions, not part of output interface
66 (define (escape-parentheses s)
67   (regexp-substitute/global #f "(^|[^\\])([\\(\\)])" s 'pre 1 "\\" 2 'post))
68
69 (define (ps-encoding text)
70   (escape-parentheses text))
71
72 ;; FIXME: lily-def
73 (define-public (ps-string-def prefix key val)
74   (string-append "/" prefix (symbol->string key) " ("
75                  (escape-parentheses val)
76                  ") def\n"))
77
78
79 (define (ps-number-def prefix key val)
80   (let ((s (if (integer? val)
81                (ly:number->string val)
82                (ly:number->string (exact->inexact val)))))
83     (string-append "/" prefix (symbol->string key) " " s " def\n")))
84
85
86 ;;;
87 ;;; Lily output interface, PostScript implementation --- cleanup and docme
88 ;;;
89
90 ;;; Output-interface functions
91 (define (beam width slope thick blot)
92   (string-append
93    (ly:numbers->string (list slope width thick blot)) " draw_beam" ))
94
95 ;; two beziers
96 (define (bezier-sandwich lst thick)
97   (string-append 
98    (string-join (map ly:number-pair->string lst) " ")
99    " "
100    (ly:number->string thick)
101    " draw_bezier_sandwich"))
102
103 (define (bracket arch_angle arch_width arch_height height arch_thick thick)
104   (string-append
105    (ly:numbers->string
106     (list arch_angle arch_width arch_height height arch_thick thick))
107    " draw_bracket"))
108
109 (define (char font i)
110   (string-append 
111    (ps-font-command font) " setfont " 
112    "(\\" (ly:inexact->string i 8) ") show"))
113
114 (define (circle radius thick fill)
115   (format
116    "~a ~a ~a draw_circle" radius thick
117    (if fill
118        "true "
119        "false ")))
120
121 (define (dashed-line thick on off dx dy)
122   (string-append 
123    (ly:number->string dx) " "
124    (ly:number->string dy) " "
125    (ly:number->string thick)
126    " [ "
127    (ly:number->string on) " "
128    (ly:number->string off)
129    " ] 0 draw_dashed_line"))
130
131 ;; what the heck is this interface ?
132 (define (dashed-slur thick on off l)
133   (string-append 
134    (string-join (map ly:number-pair->string l) " ")
135    " "
136    (ly:number->string thick) 
137    " [ "
138    (ly:number->string on)
139    " "   
140    (ly:number->string off)
141    " ] 0 draw_dashed_slur"))
142
143 (define (dot x y radius)
144   (string-append
145    " "
146    (ly:numbers->string
147     (list x y radius)) " draw_dot"))
148
149 (define (draw-line thick x1 y1 x2 y2)
150   (string-append 
151    "1 setlinecap 1 setlinejoin "
152    (ly:number->string thick) " setlinewidth "
153    (ly:number->string x1) " "
154    (ly:number->string y1) " moveto "
155    (ly:number->string x2) " "
156    (ly:number->string y2) " lineto stroke"))
157
158 (define (embedded-ps string)
159   string)
160
161 ;; FIXME. 
162 (define (ez-ball ch letter-col ball-col)
163   (string-append
164    " (" ch ") "
165    (ly:numbers->string (list letter-col ball-col))
166    ;; FIXME: barf
167    " /Helvetica-Bold "
168    " draw_ez_ball"))
169
170 ;; FIXME: use draw_round_box
171 (define (filledbox breapth width depth height)
172   (string-append (ly:numbers->string (list breapth width depth height))
173                  " draw_box"))
174
175 (define (glyph-string
176          postscript-font-name
177          size
178          x-y-named-glyphs)
179   (format #f "gsave 1 output-scale div 1 output-scale div scale
180   /~a findfont ~a scalefont setfont\n~a grestore" postscript-font-name size
181   (apply
182    string-append
183    (map (lambda  (item)
184           (let
185               ((x (car item))
186                 (y (cadr item))
187                 (g (caddr item)))
188
189             (if (and (= 0.0 x)
190                      (= 0.0 y))
191                 (format #f " /~a glyphshow\n" g)
192                 (format #f " ~a ~a rmoveto ~a~a glyphshow\n"
193                         x y
194                         (if  (string? g) "/" "")
195                         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 (is-absolute? raw-file)
207                          raw-file
208                          (string-append (ly-getcwd) "/" raw-file)))
209                (x-ext (ly:grob-extent grob grob X))
210                (y-ext (ly:grob-extent grob grob Y)))
211
212           (if (and (< 0 (interval-length x-ext))
213                    (< 0 (interval-length y-ext)))
214               (format "~a ~a ~a ~a (textedit://~a:~a:~a) mark_URI\n"
215                       (+ (car offset) (car x-ext))
216                       (+ (cdr offset) (car y-ext))
217                       (+ (car offset) (cdr x-ext))
218                       (+ (cdr offset) (cdr y-ext))
219                       file
220                       (cadr location)
221                       (caddr location))
222               "")))))
223
224 ;; WTF is this in every backend?
225 (define (horizontal-line x1 x2 th)
226   (draw-line th x1 0 x2 0))
227
228 (define (lily-def key val)
229   (let ((prefix "lilypondlayout"))
230     (if (string=?
231          (substring key 0 (min (string-length prefix) (string-length key)))
232          prefix)
233         (string-append "/" key " {" val "} bind def\n")
234         (string-append "/" key " (" val ") def\n"))))
235
236 (define (named-glyph font glyph)
237   (string-append 
238    (ps-font-command font) " setfont " 
239    "/" glyph " glyphshow "))
240
241 (define (no-origin)
242   "")
243
244 (define (placebox x y s) 
245   (string-append 
246    (ly:number->string x) " " (ly:number->string y) " { " s " } place-box\n"))
247
248 (define (polygon points blotdiameter filled?)
249   (string-append
250    (ly:numbers->string points) " "
251    (ly:number->string (/ (length points) 2)) " "
252    (ly:number->string blotdiameter)
253    (if filled? " true " " false ")
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"))