]> git.donarmstrong.com Git - lilypond.git/blob - lily/paper-outputter.cc
Do header and footer.
[lilypond.git] / lily / paper-outputter.cc
1 /*
2   paper-outputter.cc -- implement Paper_outputter
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   Jan Nieuwenhuizen <janneke@gnu.org>
8 */
9
10 #include <time.h>
11 #include <math.h>
12
13 #include "dimensions.hh"
14 #include "virtual-methods.hh"
15 #include "paper-outputter.hh"
16 #include "stencil.hh"
17 #include "array.hh"
18 #include "string-convert.hh"
19 #include "warn.hh"
20 #include "font-metric.hh"
21 #include "main.hh"
22 #include "scm-hash.hh"
23 #include "lily-version.hh"
24 #include "paper-def.hh"
25 #include "input-file-results.hh"
26 #include "ly-module.hh"
27 #include "paper-book.hh"
28 #include "input-smob.hh"  // output_expr
29
30
31 Paper_outputter::Paper_outputter (String name)
32 {
33   if (safe_global_b)
34     scm_define (ly_symbol2scm ("safe-mode?"), SCM_BOOL_T);      
35   
36   file_ = scm_open_file (scm_makfrom0str (name.to_str0 ()),
37                          scm_makfrom0str ("w"));
38
39   static SCM find_dumper;
40   if (!find_dumper)
41     find_dumper = scm_c_eval_string ("find-dumper");
42
43   output_func_
44     = scm_call_1 (find_dumper,
45                   scm_makfrom0str (output_format_global.to_str0 ()));
46
47   String creator = gnu_lilypond_version_string ();
48   creator += " (http://lilypond.org)";
49   time_t t (time (0));
50   String time_stamp = ctime (&t);
51   time_stamp = time_stamp.left_string (time_stamp.length () - 1)
52     + " " + *tzname;
53   output_scheme (scm_list_3 (ly_symbol2scm ("header"),
54                              scm_makfrom0str (creator.to_str0 ()),
55                              scm_makfrom0str (time_stamp.to_str0 ())));
56 }
57
58 Paper_outputter::~Paper_outputter ()
59 {
60   scm_close_port (file_);
61   file_ = SCM_EOL;
62 }
63
64 void
65 Paper_outputter::output_scheme (SCM scm)
66 {
67   gh_call2 (output_func_, scm, file_);
68 }
69
70 void
71 Paper_outputter::output_metadata (SCM scopes, Paper_def *paper)
72 {
73   SCM fields = SCM_EOL;
74   for (int i = dump_header_fieldnames_global.size (); i--; )
75     fields
76       = gh_cons (ly_symbol2scm (dump_header_fieldnames_global[i].to_str0 ()),
77                  fields);
78   output_scheme (scm_list_n (ly_symbol2scm ("output-scopes"),
79                              paper->self_scm (),
80                              scm_list_n (ly_symbol2scm ("quote"),
81                                          scopes, SCM_UNDEFINED),
82                              scm_list_n (ly_symbol2scm ("quote"),
83                                          fields, SCM_UNDEFINED),
84                              scm_makfrom0str (basename_.to_str0 ()), 
85                              SCM_UNDEFINED));
86 }
87
88 void
89 Paper_outputter::output_header (Paper_def *paper)
90 {
91   output_music_output_def (paper);
92   output_scheme (scm_list_1 (ly_symbol2scm ("header-end")));
93   output_scheme (scm_list_2 (ly_symbol2scm ("define-fonts"),
94                              ly_quote_scm (paper->font_descriptions ())));
95 }
96
97 void
98 Paper_outputter::output_line (SCM line, bool is_last)
99 {
100   Offset dim = ly_scm2offset (ly_car (line));
101   Real width = dim[X_AXIS];
102   Real height = dim[Y_AXIS];
103       
104   if (height > 50 CM)
105     {
106       programming_error ("Improbable system height.");
107       height = 50 CM;
108     }
109
110   output_scheme (scm_list_3 (ly_symbol2scm ("start-system"),
111                              gh_double2scm (width), gh_double2scm (height)));
112
113   SCM between = SCM_EOL;
114   for (SCM s = ly_cdr (line); gh_pair_p (s); s = ly_cdr (s))
115     {
116       Stencil *stil = unsmob_stencil (ly_cdar (s));
117       SCM head = ly_caar (s);
118       
119       if (head == ly_symbol2scm ("between-system-string"))
120         {
121           between = stil->get_expr ();
122           continue;
123         }
124
125       if (stil)
126         output_expr (stil->get_expr (), ly_scm2offset (head));
127     }
128
129   if (is_last)
130     output_scheme (scm_list_1 (ly_symbol2scm ("stop-last-system")));
131   else
132     {
133       output_scheme (scm_list_1 (ly_symbol2scm ("stop-system")));
134       if (output_format_global != PAGE_LAYOUT && between != SCM_EOL)
135         output_scheme (between);
136     }
137 }
138
139 void
140 Paper_outputter::output_music_output_def (Music_output_def* odef)
141 {
142   output_scheme (scm_list_n (ly_symbol2scm ("output-paper-def"),
143                              odef->self_scm (), SCM_UNDEFINED));
144 }
145
146 /* TODO: replaceme/rewriteme, see output-ps.scm: output-stencil  */
147 void
148 Paper_outputter::output_expr (SCM expr, Offset o)
149 {
150   while (1)
151     {
152       if (!gh_pair_p (expr))
153         return;
154   
155       SCM head =ly_car (expr);
156       if (unsmob_input (head))
157         {
158           Input * ip = unsmob_input (head);
159       
160           output_scheme (scm_list_n (ly_symbol2scm ("define-origin"),
161                                      scm_makfrom0str (ip->file_string ().to_str0 ()),
162                                      gh_int2scm (ip->line_number ()),
163                                      gh_int2scm (ip->column_number ()),
164                                      SCM_UNDEFINED));
165           expr = ly_cadr (expr);
166         }
167       else  if (head ==  ly_symbol2scm ("no-origin"))
168         {
169           output_scheme (scm_list_n (head, SCM_UNDEFINED));
170           expr = ly_cadr (expr);
171         }
172       else if (head == ly_symbol2scm ("translate-stencil"))
173         {
174           o += ly_scm2offset (ly_cadr (expr));
175           expr = ly_caddr (expr);
176         }
177       else if (head == ly_symbol2scm ("combine-stencil"))
178         {
179           output_expr (ly_cadr (expr), o);
180           expr = ly_caddr (expr);
181         }
182       else
183         {
184           output_scheme (scm_list_n (ly_symbol2scm ("placebox"),
185                                      gh_double2scm (o[X_AXIS]),
186                                      gh_double2scm (o[Y_AXIS]),
187                                      expr,
188                                      SCM_UNDEFINED));
189           return;
190         }
191     }
192 }
193