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