]> git.donarmstrong.com Git - lilypond.git/blob - scm/output-ps.scm
* scm/output-ps.scm (new-text): new function. Use glyphshow to
[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              dashed-line
31              zigzag-line
32              ez-ball
33              comment
34              repeat-slash
35              placebox
36              bezier-sandwich
37              horizontal-line
38              embedded-ps
39              filledbox
40              round-filled-box
41              text
42              white-text
43              polygon
44              draw-line
45              no-origin
46              ))
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 dash l)
130   (string-append 
131    (string-join (map ly:number-pair->string l) " ")
132    " "
133    (ly:number->string thick) 
134    " [ "
135    (ly:number->string dash)
136    " "
137    ;;UGH.  10 ?
138    (ly:number->string (* 10 thick))
139    " ] 0 draw_dashed_slur"))
140
141 ; todo: merge with tex-font-command?
142
143 (define (embedded-ps string)
144   string)
145
146 (define (dot x y radius)
147   (string-append
148    " "
149    (ly:numbers->string
150     (list x y radius)) " draw_dot"))
151
152 (define (white-dot x y radius)
153   (string-append
154    " "
155    (ly:numbers->string
156     (list x y radius)) " draw_white_dot"))
157
158 (define (draw-line thick x1 y1 x2 y2)
159   (string-append 
160    "1 setlinecap 1 setlinejoin "
161    (ly:number->string thick) " setlinewidth "
162    (ly:number->string x1) " "
163    (ly:number->string y1) " moveto "
164    (ly:number->string x2) " "
165    (ly:number->string y2) " lineto stroke"))
166
167 (define (ez-ball ch letter-col ball-col)
168   (string-append
169    " (" ch ") "
170    (ly:numbers->string (list letter-col ball-col))
171    " /Helvetica-Bold " ;; ugh
172    " draw_ez_ball"))
173
174 (define (filledbox breapth width depth height) ; FIXME : use draw_round_box
175   (string-append (ly:numbers->string (list breapth width depth height))
176                  " draw_box"))
177
178 ;; WTF is this in every backend?
179 (define (horizontal-line x1 x2 th)
180   (draw-line th x1 0 x2 0))
181
182 (define (lily-def key val)
183   (let ((prefix "lilypondlayout"))
184     (if (string=?
185          (substring key 0 (min (string-length prefix) (string-length key)))
186          prefix)
187         (string-append "/" key " {" val "} bind def\n")
188         (string-append "/" key " (" val ") def\n"))))
189
190
191 (define (placebox x y s) 
192   (string-append 
193    (ly:number->string x) " " (ly:number->string y) " { " s " } place-box\n"))
194
195 (define (polygon points blotdiameter)
196   (string-append
197    (ly:numbers->string points) " "
198    (ly:number->string (/ (length points) 2)) " "
199    (ly:number->string blotdiameter)
200    " draw_polygon"))
201
202 (define (repeat-slash wid slope thick)
203   (string-append
204    (ly:numbers->string (list wid slope thick))
205    " draw_repeat_slash"))
206
207 (define (round-filled-box x y width height blotdiam)
208    (string-append
209     (ly:numbers->string
210      (list x y width height blotdiam)) " draw_round_box"))
211
212 (define (old-text font s)
213   (let*
214       
215       ;; ugh, we should find a better way to
216       ;; extract the hsbw for /space from the font.
217       
218       ((space-length (cdar (ly:text-dimension font "t"))) 
219        (commands '())
220        (add-command (lambda (x) (set! commands (cons x commands)))) )
221
222     (string-fold
223      (lambda (chr word)
224        "Translate space as into moveto, group the rest in words."
225        (if (and (< 0 (string-length word))
226                 (equal? #\space  chr))
227            (add-command 
228             (string-append "(" (ps-encoding word) ") show\n")))
229
230        (if (equal? #\space chr)
231            (add-command  (string-append (number->string space-length) " 0.0 rmoveto ")) )
232        
233        (if (equal? #\space chr)
234            ""
235            (string-append word (make-string 1 chr))))
236      ""
237      (string-append s " "))
238
239     (string-append
240      (ps-font-command font) " setfont "
241      (string-join (reverse commands)))
242     ))
243
244 (define (new-text font s)
245   (let*
246       ((space-length (cdar (ly:text-dimension font "t")))
247        (space-move (string-append (number->string space-length) " 0.0 rmoveto "))
248        
249        (input-enc (assoc-get 'input-name
250                              (ly:font-encoding-alist font)
251                              'latin1))
252        (out-vec (decode-byte-string input-enc s)))
253
254
255     (string-append
256      (ps-font-command font) " setfont "
257      (string-join
258       (vector->list
259        (vector-for-each
260         
261         (lambda (sym)
262           (if (eq? sym 'space)
263               space-move
264               (string-append "/" (symbol->string sym) " glyphshow")))
265         out-vec)))
266      )))
267
268 (define text old-text)
269
270 (define (white-text scale s)
271    (let ((mystring (string-append "(" s  ") " (number->string scale)   " /Helvetica-bold "
272           " draw_white_text")))
273   mystring))
274
275 (define (unknown) 
276   "\n unknown\n")
277
278 (define (zigzag-line centre? zzw zzh thick dx dy)
279   (string-append
280     (if centre? "true" "false") " "
281     (ly:number->string zzw) " "
282     (ly:number->string zzh) " "
283     (ly:number->string thick) " "
284     "0 0 "
285     (ly:number->string dx) " "
286     (ly:number->string dy)
287     " draw_zigzag_line"))
288
289
290 (define (grob-cause grob)
291   "")
292
293 (define (no-origin)
294   "")