]> git.donarmstrong.com Git - lilypond.git/blob - lily/paper-def.cc
d3d4a6795476f3d07af96b7cc857b9c7e1ef7207
[lilypond.git] / lily / paper-def.cc
1 /*
2   paper-def.cc -- implement Paper_def
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #include <math.h>
10 #include "string.hh"
11 #include "assoc.hh"
12 #include "misc.hh"
13 #include "paper-def.hh"
14 #include "debug.hh"
15 #include "lookup.hh"
16 #include "ps-lookup.hh"
17 #include "tex-lookup.hh"
18 #include "assoc-iter.hh"
19 #include "score-engraver.hh"
20 #include "p-score.hh"
21 #include "identifier.hh"
22 #include "main.hh"
23 #include "scope.hh"
24 #include "assoc.hh"
25 #include "assoc-iter.hh"
26
27 Paper_def::Paper_def ()
28 {
29   lookup_p_assoc_p_ = new Assoc<int, Lookup*>;
30 }
31
32
33 Paper_def::~Paper_def ()
34 {
35   for (Assoc_iter<int, Lookup*> ai(*lookup_p_assoc_p_); ai.ok (); ai++)
36     {
37       delete ai.val ();
38     }
39   
40   delete lookup_p_assoc_p_;
41 }
42
43 Paper_def::Paper_def (Paper_def const&s)
44   : Music_output_def (s)
45 {
46   lookup_p_assoc_p_ = new Assoc<int, Lookup*>;
47   for (Assoc_iter<int, Lookup*> ai(*s.lookup_p_assoc_p_); ai.ok (); ai++)
48     {
49       Lookup * l = global_lookup_l->lookup_p (*ai.val ());
50       l->paper_l_ = this;
51       set_lookup (ai.key(), l);
52     }
53 }
54
55 Real
56 Paper_def::get_var (String s) const
57 {
58   if (!scope_p_->elem_b (s))
59     error (_f ("unknown paper variable: `%s\'", s));
60   Real * p = scope_p_->elem (s)->access_Real (false);
61   if (!p)
62     {
63       error (_ ("not a real variable"));
64       return 0.0;
65     }
66
67   return *p;
68 }
69
70 Interval
71 Paper_def::line_dimensions_int (int n) const
72 {
73   if (!shape_int_a_.size ())
74     if (n)
75       return Interval (0, linewidth_f ());
76     else
77       return Interval (get_var ("indent"), linewidth_f ());
78
79   if (n >= shape_int_a_.size ())
80     n = shape_int_a_.size () -1;
81
82   return shape_int_a_[n];
83 }
84
85 Real
86 Paper_def::beam_thickness_f () const
87 {
88   return get_var ("beam_thickness");
89 }
90
91 Real
92 Paper_def::linewidth_f () const
93 {
94   return get_var ("linewidth");
95 }
96
97 Real
98 Paper_def::duration_to_dist (Moment d,Real k) const
99 {
100   return arithmetic_spacing (d,k);
101 }
102
103
104 /**
105   Get the measure wide constant for arithmetic.
106
107   @see
108   John S. Gourlay. ``Spacing a Line of Music,'' Technical Report
109   OSU-CISRC-10/87-TR35, Department of Computer and Information Science,
110   The Ohio State University, 1987.
111
112   */
113 Real
114 Paper_def::arithmetic_constant (Moment d) const
115 {
116   return get_var ("arithmetic_basicspace") - log_2 (Moment (1,8) <? d);
117 }
118
119 Real
120 Paper_def::arithmetic_spacing (Moment d ,Real k) const
121 {
122   return (log_2 (d) + k)* get_var ("arithmetic_multiplier");
123 }
124
125 Real
126 Paper_def::geometric_spacing (Moment d) const
127 {
128   Real dur_f = (d) ?pow (get_var ("geometric"), log_2 (d)) : 0;
129   return get_var ("basicspace") + get_var ("unitspace")  * dur_f;
130 }
131
132 void
133 Paper_def::set_lookup (int i, Lookup*l)
134 {
135   if (lookup_p_assoc_p_->elem_b (i))
136     {
137       delete lookup_p_assoc_p_->elem (i);
138     }
139   l ->paper_l_ = this;
140   (*lookup_p_assoc_p_)[i] = l;
141 }
142
143 Real
144 Paper_def::interline_f () const
145 {
146   return get_var ("interline");
147 }
148
149 Real
150 Paper_def::rule_thickness () const
151 {
152   return get_var ("rulethickness");
153 }
154
155 Real
156 Paper_def::staffline_f () const
157 {
158   return get_var ("rulethickness");
159 }
160
161 Real
162 Paper_def::staffheight_f () const
163 {
164   return get_var ("staffheight");
165 }
166
167 Real
168 Paper_def::interbeam_f (int multiplicity_i) const
169 {
170   if (multiplicity_i <= 3)
171     return get_var ("interbeam");
172   else
173     return get_var ("interbeam4");
174 }
175
176 Real
177 Paper_def::internote_f () const
178 {
179   return get_var ("interline") /2.0 ;
180 }
181
182 Real
183 Paper_def::note_width () const
184 {
185   return get_var ("notewidth");
186 }
187
188 void
189 Paper_def::print () const
190 {
191 #ifndef NPRINT
192   Music_output_def::print ();
193   DOUT << "Paper {";
194
195   for (Assoc_iter<int, Lookup*> ai(*lookup_p_assoc_p_); ai.ok (); ai++)
196     {
197       DOUT << "Lookup: " << ai.key () ;
198       ai.val ()->print ();
199     }
200
201   DOUT << "}\n";
202 #endif
203 }
204
205 Lookup const *
206 Paper_def::lookup_l (int i) const
207 {
208   return (*lookup_p_assoc_p_)[i];
209 }
210
211 IMPLEMENT_IS_TYPE_B1 (Paper_def, Music_output_def);
212
213 String
214 Paper_def::ps_output_settings_str () const
215 {
216   String s ("\n ");
217   for (Assoc_iter<String,Identifier*> i (*scope_p_); i.ok (); i++)
218     s += String ("/mudelapaper") + i.key () 
219       + "{" + i.val ()->str () + "} bind def\n";
220   s +=  *scope_p_->elem ("pssetting")->access_String ();
221   return s;
222 }
223
224 String
225 Paper_def::tex_output_settings_str () const
226 {
227   String s ("\n ");
228   for (Assoc_iter<String,Identifier*> i (*scope_p_); i.ok (); i++)
229     s += String ("\\def\\mudelapaper") + i.key () 
230       + "{" + i.val ()->str () + "}\n";
231   s +=  *scope_p_->elem ("texsetting")->access_String ();
232   return s;
233 }
234
235 int Paper_def::default_count_i_ = 0;
236
237 int
238 Paper_def::get_next_default_count () const
239 {
240   return default_count_i_ ++;
241 }
242
243
244