]> git.donarmstrong.com Git - lilypond.git/blob - lily/multi-measure-rest.cc
make implementation for Class::has_interface automatically. Junk all
[lilypond.git] / lily / multi-measure-rest.cc
1 /*   
2   multi-measure-rest.cc --  implement Multi_measure_rest
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 1998--2002 Jan Nieuwenhuizen <janneke@gnu.org>
7   
8  */
9
10 #include "multi-measure-rest.hh"
11 #include "debug.hh"
12 #include "paper-def.hh"
13 #include "paper-column.hh" // urg
14 #include "font-interface.hh"
15 #include "rest.hh"
16 #include "molecule.hh"
17 #include "misc.hh"
18 #include "spanner.hh"
19 #include "staff-symbol-referencer.hh"
20 #include "text-item.hh"
21 #include "percent-repeat-item.hh"
22 #include "lookup.hh"
23
24
25 MAKE_SCHEME_CALLBACK (Multi_measure_rest,percent,1);
26 SCM
27 Multi_measure_rest::percent (SCM smob)
28 {
29   Grob *me = unsmob_grob (smob);
30   Spanner *sp = dynamic_cast<Spanner*> (me);
31   
32   Molecule r = Percent_repeat_item_interface::x_percent (me, 1,  0.75, 1.6);
33
34   // ugh copy & paste.
35   
36   Interval sp_iv;
37   Direction d = LEFT;
38   do
39     {
40       Item * col = sp->get_bound (d)->column_l ();
41
42       Interval coldim = col->extent (0, X_AXIS);
43
44       sp_iv[d] = coldim[-d]  ;
45     }
46   while ((flip (&d)) != LEFT);
47   Real x_off = 0.0;
48
49   Real rx  = sp->get_bound (LEFT)->relative_coordinate (0, X_AXIS);
50   /*
51     we gotta stay clear of sp_iv, so move a bit to the right if
52     needed.
53    */
54   x_off += (sp_iv[LEFT] -  rx) >? 0;
55
56   /*
57     center between stuff.
58    */
59   x_off += sp_iv.length ()/ 2;
60
61   r.translate_axis (x_off,X_AXIS);
62
63   
64   return r.smobbed_copy ();
65 }
66
67
68 /*
69    [TODO]                                      17
70    variable-sized multi-measure rest symbol: |====| ??
71 */
72 MAKE_SCHEME_CALLBACK (Multi_measure_rest,brew_molecule,1);
73 SCM
74 Multi_measure_rest::brew_molecule (SCM smob) 
75 {
76   Grob *me = unsmob_grob (smob);
77   Spanner * sp = dynamic_cast<Spanner*> (me);
78
79   SCM alist_chain = Font_interface::font_alist_chain (me);
80
81   Interval sp_iv;
82   Direction d = LEFT;
83
84   Grob *common = sp->get_bound (LEFT)->common_refpoint (sp->get_bound (RIGHT), X_AXIS);
85   do
86     {
87       Item * col = sp->get_bound (d)->column_l ();
88
89       Interval coldim = col->extent (common, X_AXIS);
90
91       sp_iv[d] = coldim[-d]  ;
92     }
93   while ((flip (&d)) != LEFT);
94
95   Real space = sp_iv.length();
96
97   Real rx  = sp->get_bound (LEFT)->relative_coordinate (0, X_AXIS);
98   /*
99     we gotta stay clear of sp_iv, so move a bit to the right if
100     needed.
101    */
102   Real x_off = (sp_iv[LEFT] -  rx) >? 0;
103
104
105   Molecule mol;
106   mol.add_molecule (symbol_molecule (me, space));
107
108   int measures = 0;
109   SCM m (me->get_grob_property ("measure-count"));
110   if (gh_number_p (m))
111     {
112       measures = gh_scm2int (m);
113     }
114
115   SCM s = me->get_grob_property ("number-threshold");
116   if (measures > gh_scm2int (s))
117     {
118       Molecule s = Text_item::text2molecule (me,
119                                              ly_str02scm (to_str (measures).ch_C ()),
120                                              alist_chain);
121
122       s.align_to (X_AXIS, CENTER);
123       s.translate_axis (gh_scm2double (me->get_grob_property ("padding")) + 2,
124                         Y_AXIS);
125
126       s.translate_axis (mol.extent (X_AXIS).center (),  X_AXIS);
127       mol.add_molecule (s);
128     }
129   mol.translate_axis (x_off, X_AXIS);
130   return mol.smobbed_copy ();
131 }
132
133
134 Molecule
135 Multi_measure_rest::symbol_molecule (Grob *me, Real space)
136 {
137   int measures = 0;
138   SCM m (me->get_grob_property ("measure-count"));
139   if (gh_number_p (m))
140     {
141       measures = gh_scm2int (m);
142     }
143   
144
145   SCM limit = me->get_grob_property ("expand-limit");
146   if (measures <= 0)
147     return Molecule();
148
149   if (measures > gh_scm2int (limit))
150     {
151       Real padding = 0.15;  
152       Molecule s =  big_rest (me, (1.0 - 2*padding) * space);
153       s.translate_axis (padding * space,  X_AXIS); 
154       return s;
155     }
156
157   SCM alist_chain = Font_interface::font_alist_chain (me);
158
159   SCM style_chain =
160     Font_interface::add_style (me, ly_symbol2scm ("mmrest-symbol"),
161                                alist_chain);
162
163   Real staff_space = Staff_symbol_referencer::staff_space (me);
164   Font_metric *musfont
165     = Font_interface::get_font (me,style_chain);
166
167   if (measures == 1)
168     {
169       Molecule s = musfont->find_by_name (Rest::glyph_name (me, 0, ""));
170
171       /*
172         ugh.
173        */
174       if (Staff_symbol_referencer::position_f (me) == 0.0)
175         s.translate_axis (staff_space, Y_AXIS);
176
177       s.translate_axis ((space - s.extent (X_AXIS).length ())/2, X_AXIS);
178       
179       return s ;
180     }
181   else
182     {
183       return  church_rest (me, musfont, measures, space);
184     }
185 }
186
187
188
189 Molecule
190 Multi_measure_rest::big_rest (Grob *me, Real width)
191 {
192   Real thick = gh_scm2double (me->get_grob_property ("thickness"));
193   Real ss = Staff_symbol_referencer::staff_space (me);
194   
195   Real slt = me->paper_l ()->get_var ("linethickness");
196   Real y = slt * thick/2 * ss;
197   Box b(Interval (0, width), Interval (-y, y));
198   Real ythick = slt * ss;
199   
200   Molecule m =  Lookup::filledbox (b);
201   Molecule yb = Lookup::filledbox (Box (Interval (-ythick, ythick), Interval (-ss, ss)));
202
203   m.add_at_edge (X_AXIS, RIGHT, yb, -ythick);
204   m.add_at_edge (X_AXIS, LEFT, yb, -ythick);
205
206   m.align_to (X_AXIS, LEFT);
207   
208   return m;
209 }
210
211 /*
212   Kirchenpause (?)
213  */
214 Molecule
215 Multi_measure_rest::church_rest (Grob*me, Font_metric *musfont, int measures,
216                                  Real space)
217 {
218   SCM mols = SCM_EOL; 
219
220   /*
221    see Wanske pp. 125
222   */
223   int l = measures;
224   int count = 0;
225   Real symbols_width = 0.0;
226   while (l)
227     {
228       int k;
229       if (l >= 4)
230         {
231           l-=4;
232           k = -2;
233         }
234       else if (l>= 2)
235         {
236           l -= 2;
237           k = -1;
238         }
239       else
240         {
241           k = 0;
242           l --;
243         }
244
245       Molecule r (musfont->find_by_name ("rests-" + to_str (k)));
246       if (k == 0)
247         {
248           Real staff_space = Staff_symbol_referencer::staff_space (me);
249           r.translate_axis (staff_space, Y_AXIS);
250         }
251       symbols_width += r.extent (X_AXIS).length ();
252       mols = gh_cons (r.smobbed_copy (), mols);
253       count ++;
254     }
255
256   
257
258   Real outer_padding_factor = 1.5; //     make outer padding this much bigger.
259   Real inner_padding = (space - symbols_width) / (2 * outer_padding_factor + (count-1)); 
260   if (inner_padding < 0)
261     {
262       inner_padding = 1.0;
263     }
264   
265   Molecule mol; 
266   for (SCM  s = mols; gh_pair_p (s); s = gh_cdr(s))
267     {
268       mol.add_at_edge (X_AXIS, LEFT, *unsmob_molecule (gh_car (s)), inner_padding);
269     }
270   mol.align_to (X_AXIS, LEFT);
271   mol.translate_axis (outer_padding_factor *  inner_padding, X_AXIS);
272
273   return mol;
274 }
275
276 void
277 Multi_measure_rest::add_column (Grob*me,Item* c)
278 {
279   add_bound_item (dynamic_cast<Spanner*> (me),c);
280 }
281
282
283 MAKE_SCHEME_CALLBACK (Multi_measure_rest, set_spacing_rods,1);
284
285 SCM
286 Multi_measure_rest::set_spacing_rods (SCM smob)
287 {
288   return SCM_UNSPECIFIED;
289
290   Grob*me = unsmob_grob (smob);
291
292   Spanner*sp = dynamic_cast<Spanner*> (me);
293   if (! (sp->get_bound (LEFT) && sp->get_bound (RIGHT)))
294     {
295       programming_error ("Multi_measure_rest::get_rods (): I am not spanned!");
296       return SCM_UNSPECIFIED;
297     }
298
299   Item * l = sp->get_bound (LEFT)->column_l ();
300   Item * r = sp->get_bound (RIGHT)->column_l ();
301   Item * lb = l->find_prebroken_piece (RIGHT);
302   Item * rb = r->find_prebroken_piece (LEFT);      
303   
304   Item* combinations[4][2]={{l,r}, {lb,r}, {l,rb},{lb,rb}};
305
306   Real sym_width = symbol_molecule (me, 0.0).extent (X_AXIS).length ();
307   
308   for (int i=0; i < 4; i++)
309     {
310       Item * l =  combinations[i][0];
311       Item *r = combinations[i][1];
312
313       if (!l || !r)
314         continue;
315
316       Rod rod;
317       rod.item_l_drul_[LEFT] = l;
318       rod.item_l_drul_[RIGHT] = r;
319
320       
321       rod.distance_f_ = l->extent (l, X_AXIS)[BIGGER] - r->extent (r, X_AXIS)[SMALLER]
322         + sym_width  + 2.0;                     // 2.0 = magic!
323   
324       rod.add_to_cols ();
325     }
326   return SCM_UNSPECIFIED;
327 }
328
329
330
331 ADD_INTERFACE (Multi_measure_rest,"multi-measure-rest-interface",
332   "A rest that spans a whole number of measures.  For typesetting the
333 numbers, fields from font-interface may be used.
334
335
336 ",
337   "expand-limit measure-count number-threshold padding thickness");