]> git.donarmstrong.com Git - lilypond.git/blob - scm/framework-eps.scm
* scm/framework-ps.scm (dump-stencil-as-EPS): naming pad-eps-boxes.
[lilypond.git] / scm / framework-eps.scm
1 ;;;; framework-ps.scm --
2 ;;;;
3 ;;;;  source file of the GNU LilyPond music typesetter
4 ;;;;
5 ;;;; (c) 2004--2006 Han-Wen Nienhuys <hanwen@cs.uu.nl>
6
7 (define-module (scm framework-eps))
8
9 ;;; this is still too big a mess.
10
11 (use-modules (ice-9 regex)
12              (ice-9 string-fun)
13              (ice-9 format)
14              (guile)
15              (scm framework-ps)
16              (scm paper-system)
17              (scm page)
18              (scm output-ps)
19              (srfi srfi-1)
20              (srfi srfi-13)
21              (lily))
22
23 (define framework-eps-module (current-module))
24
25
26 (define (widen-left-stencil-edges stencils)
27   "Change STENCILS to use the union for the left extents in every
28 stencil, so LaTeX includegraphics doesn't fuck up the alignment."
29
30   (define left
31     (apply min
32            (map (lambda (stc)
33                   (interval-start (ly:stencil-extent stc X)))
34                 stencils)))
35
36   (map (lambda (stil)
37          
38          (ly:make-stencil
39           (ly:stencil-expr stil)
40           (cons
41            left
42            (cdr (ly:stencil-extent stil X)))
43           (ly:stencil-extent stil Y)
44           ))
45        stencils))
46
47   
48 (define (dump-stencils-as-EPSes stencils book basename)
49   (define do-pdf (member  "pdf" (ly:output-formats)))
50   (define paper (ly:paper-book-paper book))
51   (define (dump-infinite-stack-EPS stencils)
52     (let* ((dump-me (stack-stencils Y DOWN 2.0 stencils)))
53       (dump-stencil-as-EPS paper dump-me basename #t)))
54
55   (define (dump-stencils-as-separate-EPS stencils count )
56     (if (pair? stencils)
57         (let* ((line (car stencils))
58                (rest (cdr stencils))
59                (system-base-name (format "~a-~a" basename count))
60                )
61
62           (dump-stencil-as-EPS
63            paper line system-base-name
64            (ly:get-option 'include-eps-fonts))
65
66           (if do-pdf
67               (postscript->pdf  0 0  (string-append system-base-name ".eps")))
68           (dump-stencils-as-separate-EPS rest (1+ count)))))
69
70
71   ;; main body 
72   (let* ((tex-system-name (format "~a-systems.tex" basename))
73          (texi-system-name (format "~a-systems.texi" basename))
74          (tex-system-port (open-output-file tex-system-name))
75          (texi-system-port (open-output-file texi-system-name)))
76     
77     (ly:message (_ "Writing ~a...") tex-system-name)
78     (ly:message (_ "Writing ~a...") texi-system-name)
79
80     (set! stencils (widen-left-stencil-edges stencils))
81     
82     (dump-stencils-as-separate-EPS stencils 1)
83     (for-each (lambda (c)
84                 (if (< 0 c)
85                     (display (format "\\ifx\\betweenLilyPondSystem \\undefined
86   \\linebreak
87 \\else
88   \\betweenLilyPondSystem{~a}
89 \\fi
90 " c) tex-system-port))
91                 (display (format "\\includegraphics{~a-~a}\n"
92                                  basename (1+ c)) tex-system-port)
93                 (display (format "@image{~a-~a}\n"
94                                  basename (1+ c)) texi-system-port))
95               (iota (length stencils)))
96     
97     (display "@c eof - 'eof' is a Makefile marker; do not remove. " texi-system-port)
98     (display "% eof - 'eof' is Makefile marker; do not remove. " tex-system-port)
99     
100     (dump-infinite-stack-EPS stencils)
101     (postprocess-output book framework-eps-module
102                         (format "~a.eps" basename) (ly:output-formats))))
103
104
105
106 (define-public (output-classic-framework basename book scopes fields)
107   (output-scopes scopes fields basename)
108
109   (if (ly:get-option 'dump-signatures)
110       (write-system-signatures basename (ly:paper-book-systems book) 1))
111   
112   (dump-stencils-as-EPSes
113    (map paper-system-stencil (ly:paper-book-systems book))
114    book
115    basename))
116
117 (define-public (output-framework basename book scopes fields)
118   (output-scopes scopes fields basename)
119   (dump-stencils-as-EPSes
120    (map page-stencil (ly:paper-book-pages book)) book basename))
121   
122
123 ; redefine to imports from framework-ps
124 (define convert-to-pdf convert-to-pdf)
125 (define convert-to-ps convert-to-ps)
126 (define convert-to-png convert-to-png)
127 (define convert-to-tex convert-to-tex)
128 (define convert-to-dvi convert-to-dvi)
129
130