]> git.donarmstrong.com Git - lilypond.git/blob - scm/tex.scm
release: 1.5.43
[lilypond.git] / scm / tex.scm
1 ;;; tex.scm -- implement Scheme output routines for TeX
2 ;;;
3 ;;;  source file of the GNU LilyPond music typesetter
4 ;;; 
5 ;;; (c) 1998--2001 Jan Nieuwenhuizen <janneke@gnu.org>
6 ;;; Han-Wen Nienhuys <hanwen@cs.uu.nl>
7
8
9 (define-module (scm tex) )
10 (debug-enable 'backtrace)
11 (use-modules (scm ps)
12              (ice-9 regex)
13              (ice-9 string-fun)
14              (ice-9 format)
15              (guile)
16              )
17
18 (define this-module (current-module))
19
20 ;;;;;;;;
21 ;;;;;;;; DOCUMENT ME!
22 ;;;;;;;; 
23 (define (tex-encoded-fontswitch name-mag)
24   (let* ((iname-mag (car name-mag))
25          (ename-mag (cdr name-mag)))
26     (cons iname-mag
27           (cons ename-mag
28                 (string-append  "magfont"
29                           (string-encode-integer
30                            (hashq (car ename-mag) 1000000))
31                           "m"
32                           (string-encode-integer
33                            (inexact->exact (* 1000 (cdr ename-mag)))))))))
34
35 (define (define-fonts internal-external-name-mag-pairs)
36   (set! font-name-alist (map tex-encoded-fontswitch
37                              internal-external-name-mag-pairs))
38   (apply string-append
39          (map (lambda (x)
40                 (font-load-command (car x) (cdr x)))
41               (map cdr font-name-alist))))
42
43
44
45 ;; urg, how can exp be #unspecified?  -- in sketch output
46 ;;
47 ;; set! returns #<unspecified>  --hwn
48 (define (fontify name-mag-pair exp)
49   (string-append (select-font name-mag-pair)
50                  exp))
51
52
53 (define (unknown) 
54   "%\n\\unknown%\n")
55
56 (define (select-font name-mag-pair)
57   (let*
58       (
59        (c (assoc name-mag-pair font-name-alist))
60        )
61
62     (if (eq? c #f)
63         (begin
64           (display "FAILED\n")
65           (display (object-type (car name-mag-pair)))
66           (display (object-type (caaar font-name-alist)))
67
68           (ly-warn (string-append
69                     "Programming error: No such font known "
70                     (car name-mag-pair) " "
71                     (ly-number->string (cdr name-mag-pair))
72                     ))
73           "") ; issue no command
74         (string-append "\\" (cddr c)))
75     
76     
77     ))
78
79 (define (beam width slope thick)
80   (embedded-ps (list 'beam  width slope thick)))
81
82 (define (bracket arch_angle arch_width arch_height height arch_thick thick)
83   (embedded-ps (list 'bracket  arch_angle arch_width arch_height height arch_thick thick)))
84
85 (define (dashed-slur thick dash l)
86   (embedded-ps (list 'dashed-slur thick dash `(quote ,l))))
87
88 (define (hairpin thick w sh eh)
89   (embedded-ps (list 'hairpin thick w sh eh))
90 )
91
92 (define (char i)
93   (string-append "\\char" (inexact->string i 10) " "))
94
95 (define (dashed-line thick on off dx dy)
96   (embedded-ps (list 'dashed-line  thick on off dx dy)))
97
98 (define (font-load-command name-mag command)
99   (string-append
100    "\\font\\" command "="
101    (car name-mag)
102    " scaled "
103    (ly-number->string (inexact->exact (* 1000  (cdr name-mag))))
104    "\n"))
105
106 (define (ez-ball c l b)
107   (embedded-ps (list 'ez-ball  c  l b)))
108
109 (define (header-to-file fn key val)
110   (set! key (symbol->string key))
111   (if (not (equal? "-" fn))
112       (set! fn (string-append fn "." key))
113       )
114   (display
115    (format "writing header field `~a' to `~a'..."
116            key
117            (if (equal? "-" fn) "<stdout>" fn)
118            )
119    (current-error-port))
120   (if (equal? fn "-")
121       (display val)
122       (display val (open-file fn "w"))
123   )
124   (display "\n" (current-error-port))
125   ""
126   )
127
128 (if (or (equal? (minor-version) "4")
129         (equal? (minor-version) "3.4"))
130     (define (embedded-ps expr)
131       (let ((ps-string
132              (with-output-to-string
133                (lambda () (ps-output-expression expr (current-output-port))))))
134         (string-append "\\embeddedps{" ps-string "}")))
135     (define (embedded-ps expr)
136       (let
137           ((os (open-output-string)))
138         (ps-output-expression expr os)
139         (string-append "\\embeddedps{" (get-output-string os) "}"))))
140
141 (define (comment s)
142   (string-append "% " s "\n"))
143
144 (define (end-output) 
145   (begin
146                                         ; uncomment for some stats about lily memory      
147                                         ;               (display (gc-stats))
148     (string-append "\n\\EndLilyPondOutput"
149                                         ; Put GC stats here.
150                    )))
151
152 (define (experimental-on)
153   "")
154
155 (define (repeat-slash w a t)
156   (embedded-ps (list 'repeat-slash  w a t)))
157
158 (define (font-switch i)
159   (string-append
160    "\\" (font i) "\n"))
161
162 (define (font-def i s)
163   (string-append
164    "\\font" (font-switch i) "=" s "\n"))
165
166 (define (header-end)
167   (string-append
168    "\\special{\\string! "
169    
170    ;; URG: ly-gulp-file: now we can't use scm output without Lily
171    (if use-regex
172        ;; fixed in 1.3.4 for powerpc -- broken on Windows
173        (regexp-substitute/global #f "\n"
174                                  (ly-gulp-file "music-drawing-routines.ps") 'pre " %\n" 'post)
175        (ly-gulp-file "music-drawing-routines.ps"))
176    (if (defined? 'ps-testing) "/testing true def%\n" "")
177    "}"
178    "\\input lilyponddefs \\outputscale=\\lilypondpaperoutputscale "
179    ;; "pt"
180    "mm"
181
182    "\\turnOnPostScript"))
183
184 ;; Note: this string must match the string in ly2dvi.py!!!
185 (define (header creator generate) 
186   (string-append
187    "% Generated automatically by: " creator generate "\n"))
188
189 (define (invoke-char s i)
190   (string-append 
191    "\n\\" s "{" (inexact->string i 10) "}" ))
192
193 ;;
194 ;; need to do something to make this really safe.
195 ;;
196 (define-public (output-tex-string s)
197   (if security-paranoia
198       (if use-regex
199           (regexp-substitute/global #f "\\\\" s 'pre "$\\backslash$" 'post)
200           (begin (display "warning: not paranoid") (newline) s))
201       s))
202
203 (define (lily-def key val)
204   (let ((tex-key
205          (if use-regex
206              ;; fixed in 1.3.4 for powerpc -- broken on Windows
207              (regexp-substitute/global
208               #f "_" (output-tex-string key) 'pre "X" 'post)
209              (output-tex-string key)))
210         (tex-val (output-tex-string val)))
211     (if (equal? (sans-surrounding-whitespace tex-val) "")
212         (string-append "\\let\\" tex-key "\\undefined\n")
213         (string-append "\\def\\" tex-key "{" tex-val "}\n"))))
214
215 (define (number->dim x)
216   (string-append
217    ;;ugh ly-* in backend needs compatibility func for standalone output
218    (ly-number->string x) " \\outputscale "))
219
220 (define (placebox x y s) 
221   (string-append 
222    "\\placebox{"
223    (number->dim y) "}{" (number->dim x) "}{" s "}%\n"))
224
225 (define (bezier-sandwich l thick)
226   (embedded-ps (list 'bezier-sandwich  `(quote ,l) thick)))
227
228 (define (start-line ht)
229   (string-append"\\vbox to " (number->dim ht) "{\\hbox{%\n"))
230
231 (define (stop-line) 
232   "}\\vss}\\interscoreline\n")
233 (define (stop-last-line)
234   "}\\vss}")
235
236 (define (filledbox breapth width depth height)
237   (if (defined? 'ps-testing)
238       (embedded-ps
239        (string-append (numbers->string (list breapth width depth height))
240                       " draw_box" ))
241       (string-append 
242        "\\kern" (number->dim (- breapth))
243        "\\vrule width " (number->dim (+ breapth width))
244        "depth " (number->dim depth)
245        "height " (number->dim height) " ")))
246
247 (define (text s)
248   (string-append "\\hbox{" (output-tex-string s) "}"))
249
250 (define (tuplet ht gapx dx dy thick dir)
251   (embedded-ps (list 'tuplet  ht gapx dx dy thick dir)))
252
253 (define (volta h w thick vert_start vert_end)
254   (embedded-ps (list 'volta  h w thick vert_start vert_end)))
255 (define (between-system-string string)
256   string
257   )
258 (define (define-origin file line col)
259   (if (procedure? point-and-click)
260       (string-append "\\special{src:" ;;; \\string ? 
261                      (point-and-click line col file)
262                      "}" )
263       "")
264   )
265
266                                         ; no-origin not yet supported by Xdvi
267 (define (no-origin) "")
268
269 (define my-eval-in-module eval)
270
271 (if (or (equal? (minor-version) "4")
272         (equal? (minor-version) "3.4"))
273     (begin
274       (set! my-eval-in-module eval-in-module)
275
276     ))
277
278 (define-public (tex-output-expression expr port)
279   (display (my-eval-in-module expr this-module) port )
280   )
281