]> git.donarmstrong.com Git - lilypond.git/blob - lily/output-def.cc
New twoside mode.
[lilypond.git] / lily / output-def.cc
1 /*
2   music-output-def.cc -- implement Output_def
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997--2009 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #include "output-def.hh"
10
11 #include "context-def.hh"
12 #include "file-path.hh"
13 #include "global-context.hh"
14 #include "international.hh"
15 #include "interval.hh"
16 #include "main.hh"
17 #include "output-def.hh"
18 #include "scm-hash.hh"
19 #include "warn.hh"
20
21 #include "ly-smobs.icc"
22
23 #include "program-option.hh"
24
25 #include "string-convert.hh"
26
27 Output_def::Output_def ()
28 {
29   scope_ = SCM_EOL;
30   parent_ = 0;
31
32   smobify_self ();
33
34   scope_ = ly_make_anonymous_module (false);
35 }
36
37 Output_def::Output_def (Output_def const &s)
38 {
39   scope_ = SCM_EOL;
40   parent_ = 0;
41   smobify_self ();
42
43   input_origin_ = s.input_origin_;
44   scope_ = ly_make_anonymous_module (false);
45   if (ly_is_module (s.scope_))
46     ly_module_copy (scope_, s.scope_);
47 }
48
49 Output_def::~Output_def ()
50 {
51 }
52
53 IMPLEMENT_SMOBS (Output_def);
54 IMPLEMENT_DEFAULT_EQUAL_P (Output_def);
55
56 SCM
57 Output_def::mark_smob (SCM m)
58 {
59   Output_def *mo = (Output_def*) SCM_CELL_WORD_1 (m);
60
61   /* FIXME: why is this necessary?
62      all paper_ should be protected by themselves. */
63   if (mo->parent_)
64     scm_gc_mark (mo->parent_->self_scm ());
65
66   return mo->scope_;
67 }
68
69 void
70 assign_context_def (Output_def * m, SCM transdef)
71 {
72   Context_def *tp = unsmob_context_def (transdef);
73   assert (tp);
74
75   if (tp)
76     {
77       SCM sym = tp->get_context_name ();
78       m->set_variable (sym, transdef);
79     }
80 }
81
82 /* find the translator for NAME. NAME must be a symbol. */
83 SCM
84 find_context_def (Output_def const *m, SCM name)
85 {
86   Context_def *cd = unsmob_context_def (m->lookup_variable (name));
87   return cd ? cd->self_scm () : SCM_EOL;
88 }
89
90 int
91 Output_def::print_smob (SCM s, SCM p, scm_print_state *)
92 {
93   Output_def * def = unsmob_output_def (s);
94   scm_puts ("#< ", p);
95   scm_puts (def->class_name (), p);
96   scm_puts (">", p);
97   return 1;
98 }
99
100 Real
101 Output_def::get_dimension (SCM s) const
102 {
103   SCM val = lookup_variable (s);
104   return scm_to_double (val);
105 }
106
107 SCM
108 Output_def::lookup_variable (SCM sym) const
109 {
110   SCM var = ly_module_lookup (scope_, sym);
111   if (SCM_VARIABLEP (var) && SCM_VARIABLE_REF (var) != SCM_UNDEFINED)
112     return SCM_VARIABLE_REF (var);
113
114   if (parent_)
115     return parent_->lookup_variable (sym);
116
117   return SCM_UNDEFINED;
118 }
119
120 SCM
121 Output_def::c_variable (string s) const
122 {
123   return lookup_variable (ly_symbol2scm (s.c_str ()));
124 }
125
126 void
127 Output_def::set_variable (SCM sym, SCM val)
128 {
129   scm_module_define (scope_, sym, val);
130 }
131
132 void
133 Output_def::normalize ()
134 {
135   Real paper_width;
136   SCM scm_paper_width = c_variable ("paper-width");
137
138   bool twosided = to_boolean (c_variable ("two-sided"));
139   // We don't distinguish between outer-margin / left-margin and so on
140   // until page-stencil positioning in page.scm
141   Real left_margin, left_margin_default;
142   SCM scm_left_margin_default = (twosided
143                                  ? c_variable ("outer-margin-default-scaled")
144                                  : c_variable ("left-margin-default-scaled"));
145   SCM scm_left_margin = (twosided
146                          ? c_variable ("outer-margin")
147                          : c_variable ("left-margin"));
148
149   Real right_margin, right_margin_default;
150   SCM scm_right_margin_default = (twosided
151                                   ? c_variable ("inner-margin-default-scaled")
152                                   : c_variable ("right-margin-default-scaled"));
153   SCM scm_right_margin = (twosided
154                           ? c_variable ("inner-margin")
155                           : c_variable ("right-margin"));
156
157   if (scm_paper_width == SCM_UNDEFINED
158       || scm_left_margin_default == SCM_UNDEFINED
159       || scm_right_margin_default == SCM_UNDEFINED)
160     {
161       programming_error ("called normalize () on paper with missing settings");
162       return;
163     }
164   else
165     {
166       paper_width = scm_to_double (scm_paper_width);
167       left_margin_default = scm_to_double (scm_left_margin_default);
168       right_margin_default = scm_to_double (scm_right_margin_default);
169     }
170
171   Real line_width;
172   Real line_width_default
173     = paper_width - left_margin_default - right_margin_default;
174   SCM scm_line_width = c_variable ("line-width");
175
176   Real binding_offset = 0;
177   if (twosided)
178     binding_offset = robust_scm2double (c_variable ("binding-offset"), 0);
179
180   if (scm_line_width == SCM_UNDEFINED)
181     {
182       left_margin = ((scm_left_margin == SCM_UNDEFINED)
183                      ? left_margin_default
184                      : scm_to_double (scm_left_margin));
185       right_margin = ((scm_right_margin == SCM_UNDEFINED)
186                       ? right_margin_default
187                       : scm_to_double (scm_right_margin)) + binding_offset;
188       line_width = paper_width - left_margin - right_margin;
189     }
190   else
191     {
192       line_width = scm_to_double (scm_line_width);
193       if (scm_left_margin == SCM_UNDEFINED)
194         {
195           // Vertically center systems if only line-width is given
196           if (scm_right_margin == SCM_UNDEFINED)
197             {
198               left_margin = (paper_width - line_width) / 2;
199               right_margin = left_margin;
200             }
201           else
202             {
203               right_margin = scm_to_double (scm_right_margin) + binding_offset;
204               left_margin = paper_width - line_width - right_margin;
205             }
206         }
207       else
208         {
209           left_margin = scm_to_double (scm_left_margin);
210           right_margin = ((scm_right_margin == SCM_UNDEFINED)
211                            ? (paper_width - line_width - left_margin)
212                            : scm_to_double (scm_right_margin)) + binding_offset;
213         }
214     }
215
216   if (to_boolean (c_variable ("check-consistency")))
217     {
218       // Consistency checks. If values don't match, set defaults.
219       if (abs (paper_width - line_width - left_margin - right_margin) > 1e-6)
220         {
221           line_width = line_width_default;
222           left_margin = left_margin_default;
223           right_margin = right_margin_default;
224           warning (_ ("margins do not fit with line-width, setting default values"));
225         }
226       else if ((left_margin < 0) || (right_margin < 0))
227         {
228           line_width = line_width_default;
229           left_margin = left_margin_default;
230           right_margin = right_margin_default;
231           warning (_ ("systems run off the page due to improper paper settings, setting default values"));
232         }
233     }
234
235   set_variable (ly_symbol2scm ("left-margin"), scm_from_double (left_margin));
236   set_variable (ly_symbol2scm ("right-margin"), scm_from_double (right_margin));
237   set_variable (ly_symbol2scm ("line-width"), scm_from_double (line_width));
238 }
239
240 /* FIXME.  This is broken until we have a generic way of
241    putting lists inside the \layout block.  */
242 Interval
243 line_dimensions_int (Output_def *def, int n)
244 {
245   Real lw = def->get_dimension (ly_symbol2scm ("line-width"));
246   Real ind = n
247     ? def->get_dimension (ly_symbol2scm ("short-indent"))
248     : def->get_dimension (ly_symbol2scm ("indent"));
249   return Interval (ind, lw);
250 }
251
252