]> git.donarmstrong.com Git - lilypond.git/blob - scm/tex.scm
release: 1.5.38
[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 pt\\turnOnPostScript"))
179
180 ;; Note: this string must match the string in ly2dvi.py!!!
181 (define (header creator generate) 
182   (string-append
183    "% Generated automatically by: " creator generate "\n"))
184
185 (define (invoke-char s i)
186   (string-append 
187    "\n\\" s "{" (inexact->string i 10) "}" ))
188
189 (define (invoke-dim1 s d)
190   (string-append
191    "\n\\" s "{" (number->dim d) "}"))
192 (define (pt->sp x)
193   (* 65536 x))
194
195 ;;
196 ;; need to do something to make this really safe.
197 ;;
198 (define-public (output-tex-string s)
199   (if security-paranoia
200       (if use-regex
201           (regexp-substitute/global #f "\\\\" s 'pre "$\\backslash$" 'post)
202           (begin (display "warning: not paranoid") (newline) s))
203       s))
204
205 (define (lily-def key val)
206   (let ((tex-key
207          (if use-regex
208              ;; fixed in 1.3.4 for powerpc -- broken on Windows
209              (regexp-substitute/global
210               #f "_" (output-tex-string key) 'pre "X" 'post)
211              (output-tex-string key)))
212         (tex-val (output-tex-string val)))
213     (if (equal? (sans-surrounding-whitespace tex-val) "")
214         (string-append "\\let\\" tex-key "\\undefined\n")
215         (string-append "\\def\\" tex-key "{" tex-val "}\n"))))
216
217 (define (number->dim x)
218   (string-append
219    ;;ugh ly-* in backend needs compatibility func for standalone output
220    (ly-number->string x) " \\outputscale "))
221
222 (define (placebox x y s) 
223   (string-append 
224    "\\placebox{"
225    (number->dim y) "}{" (number->dim x) "}{" s "}%\n"))
226
227 (define (bezier-sandwich l thick)
228   (embedded-ps (list 'bezier-sandwich  `(quote ,l) thick)))
229
230 (define (start-line ht)
231   (string-append"\\vbox to " (number->dim ht) "{\\hbox{%\n"))
232
233 (define (stop-line) 
234   "}\\vss}\\interscoreline\n")
235 (define (stop-last-line)
236   "}\\vss}")
237
238 (define (filledbox breapth width depth height)
239   (if (defined? 'ps-testing)
240       (embedded-ps
241        (string-append (numbers->string (list breapth width depth height))
242                       " draw_box" ))
243       (string-append 
244        "\\kern" (number->dim (- breapth))
245        "\\vrule width " (number->dim (+ breapth width))
246        "depth " (number->dim depth)
247        "height " (number->dim height) " ")))
248
249 (define (text s)
250   (string-append "\\hbox{" (output-tex-string s) "}"))
251
252 (define (tuplet ht gapx dx dy thick dir)
253   (embedded-ps (list 'tuplet  ht gapx dx dy thick dir)))
254
255 (define (volta h w thick vert_start vert_end)
256   (embedded-ps (list 'volta  h w thick vert_start vert_end)))
257 (define (between-system-string string)
258   string
259   )
260 (define (define-origin file line col)
261   (if (procedure? point-and-click)
262       (string-append "\\special{src:" ;;; \\string ? 
263                      (point-and-click line col file)
264                      "}" )
265       "")
266   )
267
268                                         ; no-origin not yet supported by Xdvi
269 (define (no-origin) "")
270
271 (define my-eval-in-module eval)
272
273 (if (or (equal? (minor-version) "4")
274         (equal? (minor-version) "3.4"))
275     (begin
276       (set! my-eval-in-module eval-in-module)
277
278     ))
279
280 (define-public (tex-output-expression expr port)
281   (display (my-eval-in-module expr this-module) port )
282   )
283