]> git.donarmstrong.com Git - lilypond.git/blob - scm/output-ps.scm
aa36662364385390ad42526b479669e805842742
[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   #:export (unknown
21              blank
22              dot
23              white-dot
24              beam
25              bracket
26              dashed-slur
27              char
28              dashed-line
29              zigzag-line
30              symmetric-x-triangle
31              ez-ball
32              comment
33              repeat-slash
34              placebox
35              bezier-sandwich
36              horizontal-line
37              filledbox
38              round-filled-box
39              text
40              tuplet
41              polygon
42              draw-line
43              define-origin
44              no-origin
45              ))
46
47
48 (use-modules (guile)
49              (ice-9 regex)
50              (srfi srfi-1)
51              (srfi srfi-13)
52              (scm framework-ps)
53              (lily))
54
55
56 ;;(map export
57 ;;   (append (ly:all-stencil-expressions) (ly:all-output-backend-commands)))
58
59 ;; huh?
60 ;;(write (ly:all-output-backend-commands))
61 ;;(write (ly:all-stencil-expressions))
62
63
64 ;;; helper functions, not part of output interface
65 (define (escape-parentheses s)
66   (regexp-substitute/global #f "(^|[^\\])([\\(\\)])" s 'pre 1 "\\" 2 'post))
67
68 (define (offset-add a b)
69   (cons (+ (car a) (car b))
70         (+ (cdr a) (cdr b))))
71
72 (define (ps-encoding text)
73   (escape-parentheses text))
74
75 ;; FIXME: lily-def
76 (define-public (ps-string-def prefix key val)
77   (string-append "/" prefix (symbol->string key) " ("
78                  (escape-parentheses val)
79                  ") def\n"))
80
81 (define (ps-number-def prefix key val)
82   (let ((s (if (integer? val)
83                (ly:number->string val)
84                (ly:number->string (exact->inexact val)))))
85     (string-append "/" prefix (symbol->string key) " " s " def\n")))
86
87
88 ;;;
89 ;;; Lily output interface, PostScript implementation --- cleanup and docme
90 ;;;
91
92 ;;; Output-interface functions
93 (define (beam width slope thick blot)
94   (string-append
95    (ly:numbers->string (list slope width thick blot)) " draw_beam" ))
96
97 ;; two beziers
98 (define (bezier-sandwich l thick)
99   (string-append 
100    (string-join (map ly:number-pair->string l) " ")
101    " "
102    (ly:number->string thick)
103    " draw_bezier_sandwich"))
104
105 (define (bracket arch_angle arch_width arch_height  height arch_thick thick)
106   (string-append
107    (ly:numbers->string
108     (list arch_angle arch_width arch_height height arch_thick thick))
109    " draw_bracket"))
110
111 (define (char font i)
112   (string-append 
113     (ps-font-command font) " setfont " 
114    "(\\" (ly:inexact->string i 8) ") show" ))
115
116 (define (dashed-line thick on off dx dy)
117   (string-append 
118    (ly:number->string dx) " "
119    (ly:number->string dy) " "
120    (ly:number->string thick)
121    " [ "
122    (ly:number->string on) " "
123    (ly:number->string off)
124    " ] 0 draw_dashed_line"))
125
126 ;; what the heck is this interface ?
127 (define (dashed-slur thick dash l)
128   (string-append 
129    (string-join (map ly:number-pair->string l) " ")
130    " "
131    (ly:number->string thick) 
132    " [ "
133    (ly:number->string dash)
134    " "
135    ;;UGH.  10 ?
136    (ly:number->string (* 10 thick))
137    " ] 0 draw_dashed_slur"))
138
139 ; todo: merge with tex-font-command?
140
141
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 (white-dot x y radius)
150   (string-append
151    " "
152    (ly:numbers->string
153     (list x y radius)) " draw_white_dot"))
154
155 (define (draw-line thick x1 y1 x2 y2)
156   (string-append 
157    "1 setlinecap 1 setlinejoin "
158    (ly:number->string thick) " setlinewidth "
159    (ly:number->string x1) " "
160    (ly:number->string y1) " moveto "
161    (ly:number->string x2) " "
162    (ly:number->string y2) " lineto stroke"))
163
164 (define (ez-ball ch letter-col ball-col)
165   (string-append
166    " (" ch ") "
167    (ly:numbers->string (list letter-col ball-col))
168    " /Helvetica-Bold " ;; ugh
169    " draw_ez_ball"))
170
171 (define (filledbox breapth width depth height) ; FIXME : use draw_round_box
172   (string-append (ly:numbers->string (list breapth width depth height))
173                  " draw_box"))
174
175 ;; WTF is this in every backend?
176 (define (horizontal-line x1 x2 th)
177   (draw-line th x1 0 x2 0))
178
179 (define (lily-def key val)
180   (let ((prefix "lilypondpaper"))
181     (if (string=?
182          (substring key 0 (min (string-length prefix) (string-length key)))
183          prefix)
184         (string-append "/" key " {" val "} bind def\n")
185         (string-append "/" key " (" val ") def\n"))))
186
187
188 (define (placebox x y s) 
189   (string-append 
190    (ly:number->string x) " " (ly:number->string y) " { " s " } place-box\n"))
191
192 (define (polygon points blotdiameter)
193   (string-append
194    (ly:numbers->string points) " "
195    (ly:number->string (/ (length points) 2)) " "
196    (ly:number->string blotdiameter)
197    " draw_polygon"))
198
199 (define (repeat-slash wid slope thick)
200   (string-append
201    (ly:numbers->string (list wid slope thick))
202    " draw_repeat_slash"))
203
204 (define (round-filled-box x y width height blotdiam)
205    (string-append
206     (ly:numbers->string
207      (list x y width height blotdiam)) " draw_round_box"))
208
209
210 (define (stem breapth width depth height) ; FIXME: use draw_round_box.
211   (string-append
212    (ly:numbers->string (list breapth width depth height))
213    " draw_box" ))
214
215 (define (symmetric-x-triangle thick w h)
216   (string-append
217    (ly:numbers->string (list h w thick))
218    " draw_symmetric_x_triangle"))
219
220 (define (text font s)
221   (let*
222       
223       (
224        ;; ugh, we should find a better way to
225        ;; extract the hsbw for /space from the font.
226        
227        (space-length (cdar (ly:text-dimension font "t"))) 
228        (commands '())
229        (add-command (lambda (x) (set! commands (cons x commands)))) )
230
231     (string-fold
232      (lambda (chr word)
233        "Translate space as into moveto, group the rest in words."
234        (if (and (< 0 (string-length word))
235                 (equal? #\space  chr))
236            (add-command 
237             (string-append "(" (ps-encoding word) ") show\n")))
238
239        (if (equal? #\space  chr)
240            (add-command  (string-append (number->string space-length) " 0.0 rmoveto ")) )
241        
242        (if (equal? #\space  chr)
243            ""
244            (string-append word (make-string 1 chr))))
245      ""
246      (string-append  s " "))
247
248     (string-append
249      (ps-font-command font) " setfont "
250      (string-join (reverse commands)))
251     ))
252   
253 (define (unknown) 
254   "\n unknown\n")
255
256 (define (zigzag-line centre? zzw zzh thick dx dy)
257   (string-append
258     (if centre? "true" "false") " "
259     (ly:number->string zzw) " "
260     (ly:number->string zzh) " "
261     (ly:number->string thick) " "
262     "0 0 "
263     (ly:number->string dx) " "
264     (ly:number->string dy)
265     " draw_zigzag_line"))
266
267
268 (define (grob-cause grob)
269   "")