]> git.donarmstrong.com Git - lilypond.git/blob - scm/output-ps.scm
*** empty log message ***
[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--2004 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 (debug-enable 'backtrace)
17
18 (define-module (scm output-ps)
19   #:re-export (quote)
20
21   ;; JUNK this -- see lily.scm: ly:all-output-backend-commands
22   #:export (unknown
23             blank
24             dot
25             white-dot
26             beam
27             bracket
28             dashed-slur
29             char
30             named-glyph
31             dashed-line
32             zigzag-line
33             ez-ball
34             comment
35             repeat-slash
36             placebox
37             bezier-sandwich
38             horizontal-line
39             embedded-ps
40             filledbox
41             round-filled-box
42             text
43             white-text
44             polygon
45             draw-line
46             no-origin))
47
48
49 (use-modules (guile)
50              (ice-9 regex)
51              (srfi srfi-1)
52              (srfi srfi-13)
53              (scm framework-ps)
54              (lily))
55
56
57 ;;(map export
58 ;;   (append (ly:all-stencil-expressions) (ly:all-output-backend-commands)))
59
60 ;; huh?
61 ;;(write (ly:all-output-backend-commands))
62 ;;(write (ly:all-stencil-expressions))
63
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 (offset-add a b)
70   (cons (+ (car a) (car b))
71         (+ (cdr a) (cdr b))))
72
73 (define (ps-encoding text)
74   (escape-parentheses text))
75
76 ;; FIXME: lily-def
77 (define-public (ps-string-def prefix key val)
78   (string-append "/" prefix (symbol->string key) " ("
79                  (escape-parentheses val)
80                  ") def\n"))
81
82
83 (define (ps-number-def prefix key val)
84   (let ((s (if (integer? val)
85                (ly:number->string val)
86                (ly:number->string (exact->inexact val)))))
87     (string-append "/" prefix (symbol->string key) " " s " def\n")))
88
89
90 ;;;
91 ;;; Lily output interface, PostScript implementation --- cleanup and docme
92 ;;;
93
94 ;;; Output-interface functions
95 (define (beam width slope thick blot)
96   (string-append
97    (ly:numbers->string (list slope width thick blot)) " draw_beam" ))
98
99 ;; two beziers
100 (define (bezier-sandwich lst thick)
101   (string-append 
102    (string-join (map ly:number-pair->string lst) " ")
103    " "
104    (ly:number->string thick)
105    " draw_bezier_sandwich"))
106
107 (define (bracket arch_angle arch_width arch_height height arch_thick thick)
108   (string-append
109    (ly:numbers->string
110     (list arch_angle arch_width arch_height height arch_thick thick))
111    " draw_bracket"))
112
113 (define (char font i)
114   (string-append 
115    (ps-font-command font) " setfont " 
116    "(\\" (ly:inexact->string i 8) ") show"))
117
118 (define (dashed-line thick on off dx dy)
119   (string-append 
120    (ly:number->string dx) " "
121    (ly:number->string dy) " "
122    (ly:number->string thick)
123    " [ "
124    (ly:number->string on) " "
125    (ly:number->string off)
126    " ] 0 draw_dashed_line"))
127
128 ;; what the heck is this interface ?
129 (define (dashed-slur thick on off l)
130   (string-append 
131    (string-join (map ly:number-pair->string l) " ")
132    " "
133    (ly:number->string thick) 
134    " [ "
135    (ly:number->string on)
136    " "   
137    (ly:number->string off)
138    " ] 0 draw_dashed_slur"))
139
140 (define (dot x y radius)
141   (string-append
142    " "
143    (ly:numbers->string
144     (list x y radius)) " draw_dot"))
145
146 (define (draw-line thick x1 y1 x2 y2)
147   (string-append 
148    "1 setlinecap 1 setlinejoin "
149    (ly:number->string thick) " setlinewidth "
150    (ly:number->string x1) " "
151    (ly:number->string y1) " moveto "
152    (ly:number->string x2) " "
153    (ly:number->string y2) " lineto stroke"))
154
155 (define (embedded-ps string)
156   string)
157
158 ;; FIXME. 
159 (define (ez-ball ch letter-col ball-col)
160   (string-append
161    " (" ch ") "
162    (ly:numbers->string (list letter-col ball-col))
163    ;; FIXME: barf
164    " /Helvetica-Bold "
165    " draw_ez_ball"))
166
167 ;; FIXME: use draw_round_box
168 (define (filledbox breapth width depth height)
169   (string-append (ly:numbers->string (list breapth width depth height))
170                  " draw_box"))
171
172
173 (define (utf8-string pango-font-description string)
174   (ly:warn "utf8-string encountered in PS backend"))
175
176 (define (glyph-string
177          postscript-font-name
178          size
179          x-y-named-glyphs)
180   (format #f "gsave 1 output-scale div 1 output-scale div scale
181   /~a findfont ~a scalefont setfont\n~a grestore" postscript-font-name size
182   (apply
183    string-append
184    (map (lambda  (item)
185           (let
186               ((x (car item))
187                 (y (cadr item))
188                 (g (caddr item)))
189
190             (if (and (= 0.0 x)
191                      (= 0.0 y))
192                 (format #f " /~a glyphshow " g)
193                 (format #f " ~a ~a rmoveto /~a glyphshow "
194                         x y g))))
195         x-y-named-glyphs))
196   ))
197
198 (define (grob-cause grob)
199   "")
200
201 ;; WTF is this in every backend?
202 (define (horizontal-line x1 x2 th)
203   (draw-line th x1 0 x2 0))
204
205 (define (lily-def key val)
206   (let ((prefix "lilypondlayout"))
207     (if (string=?
208          (substring key 0 (min (string-length prefix) (string-length key)))
209          prefix)
210         (string-append "/" key " {" val "} bind def\n")
211         (string-append "/" key " (" val ") def\n"))))
212
213 (define (named-glyph font glyph)
214   (string-append 
215    (ps-font-command font) " setfont " 
216    "/" glyph " glyphshow "))
217
218 (define (no-origin)
219   "")
220
221 (define (placebox x y s) 
222   (string-append 
223    (ly:number->string x) " " (ly:number->string y) " { " s " } place-box\n"))
224
225 (define (polygon points blotdiameter)
226   (string-append
227    (ly:numbers->string points) " "
228    (ly:number->string (/ (length points) 2)) " "
229    (ly:number->string blotdiameter)
230    " draw_polygon"))
231
232 (define (repeat-slash wid slope thick)
233   (string-append
234    (ly:numbers->string (list wid slope thick))
235    " draw_repeat_slash"))
236
237 (define (round-filled-box x y width height blotdiam)
238   (string-append
239    (ly:numbers->string
240     (list x y width height blotdiam)) " draw_round_box"))
241
242 (define (text font s)
243 ;  (ly:warn "TEXT backend-command encountered in Pango backend\nargs: ~a ~a" font str)
244   
245   (let* ((space-length (cdar (ly:text-dimension font " ")))
246          (space-move (string-append (number->string space-length)
247                                     " 0.0 rmoveto "))
248          (input-enc "latin1")
249          (out-vec (decode-byte-string input-enc s)))
250
251     (string-append
252      (ps-font-command font) " setfont "
253      (string-join
254       (vector->list
255        (vector-for-each
256         
257         (lambda (sym)
258           (if (eq? sym 'space)
259               space-move
260               (string-append "/" (symbol->string sym) " glyphshow")))
261         out-vec))))))
262
263 ;; FIXME: BARF helvetica?
264 (define (white-text scale s)
265   (let ((mystring (string-append
266                    "(" s  ") " (number->string scale)
267                    " /Helvetica-Bold "
268                    " draw_white_text")))
269     mystring
270
271
272     ;; FIXME: broken with user install of GS 8.x
273     ""
274     ))
275
276 (define (unknown) 
277   "\n unknown\n")
278
279 (define (white-dot x y radius)
280   (string-append
281    " "
282    (ly:numbers->string
283     (list x y radius)) " draw_white_dot"))
284
285 (define (zigzag-line centre? zzw zzh thick dx dy)
286   (string-append
287    (if centre? "true" "false") " "
288    (ly:number->string zzw) " "
289    (ly:number->string zzh) " "
290    (ly:number->string thick) " "
291    "0 0 "
292    (ly:number->string dx) " "
293    (ly:number->string dy)
294    " draw_zigzag_line"))