]> git.donarmstrong.com Git - lilypond.git/blob - lily/multi-measure-rest.cc
release: 1.3.70
[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--2000 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 "lookup.hh"
15 #include "rest.hh"
16 #include "molecule.hh"
17 #include "misc.hh"
18 #include "group-interface.hh"
19 #include "spanner.hh"
20 #include "staff-symbol-referencer.hh"
21
22 void
23 Multi_measure_rest::set_interface (Score_element*me)
24 {
25   me->set_elt_property ("columns", SCM_EOL);
26 }
27
28 /*
29    [TODO]                                      17
30  * variable-sized multi-measure rest symbol: |====| ??
31 */
32 MAKE_SCHEME_CALLBACK(Multi_measure_rest,brew_molecule);
33 SCM
34 Multi_measure_rest::brew_molecule (SCM smob) 
35 {
36   Score_element *me = unsmob_element (smob);
37   Spanner * sp = dynamic_cast<Spanner*> (me);
38   Real staff_space
39     = Staff_symbol_referencer::staff_space (me);
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 (X_AXIS)
48         + col->relative_coordinate (0, X_AXIS);
49
50       sp_iv[d] = coldim[-d]  ;
51     }
52   while ((flip (&d)) != LEFT);
53   Molecule mol;
54   Real x_off = 0.0;
55
56   Real rx  = sp->get_bound (LEFT)->relative_coordinate (0, X_AXIS);
57   /*
58     we gotta stay clear of sp_iv, so move a bit to the right if
59     needed.
60    */
61   x_off += (sp_iv[LEFT] -  rx) >? 0;
62
63   /*
64     center between stuff.
65    */
66   x_off += sp_iv.length ()/ 2;
67
68   
69   Molecule s;
70
71   int measures = 1;
72   SCM m (me->get_elt_property ("measure-count"));
73   if (gh_number_p (m))
74     {
75       measures = gh_scm2int (m);
76     }
77   
78
79   if (measures <= me->paper_l() ->get_var ("multi_measure_rest_expand_limit"))
80     {
81       /*
82         Build a rest from smaller parts. Distances inbetween are
83         really variable, see Wanske pp. 125 */
84
85       int l = measures;
86       while (l)
87         {
88           int k;
89           if (l >= 4)
90             {
91               l-=4;
92               k = -2;
93             }
94           else if (l>= 2)
95             {
96               l -= 2;
97               k = -1;
98             }
99           else
100             {
101               k = 0;
102               l --;
103             }
104
105           Real pad = s.empty_b ()
106             ? 0.0 : me->paper_l ()->get_var ("multi_measure_rest_padding");
107       
108           Molecule r (me->lookup_l ()->afm_find ("rests-" + to_str (k)));
109           if (k == 0)
110             r.translate_axis (staff_space, Y_AXIS);
111           
112           s.add_at_edge (X_AXIS, RIGHT, r, pad);
113         }
114
115
116       s.align_to (X_AXIS, CENTER);
117     }
118   else 
119     {
120       String idx =  ("rests-") + to_str (-4);
121       s = me->lookup_l ()->afm_find (idx);
122     }
123   
124   mol.add_molecule (s);
125
126   if (measures > 1)
127     {
128       Molecule s (me->lookup_l ()->text ("number", to_str (measures), me->paper_l ()));
129       s.align_to (X_AXIS, CENTER);
130       s.translate_axis (3.0 * staff_space, Y_AXIS);
131       mol.add_molecule (s);
132     }
133   mol.translate_axis (x_off, X_AXIS);
134   return mol.create_scheme();
135 }
136
137 /*
138   UGH. JUNKME elt prop "columns" isn't really needed. 
139  */
140 void
141 Multi_measure_rest::add_column (Score_element*me,Item* c)
142 {
143   Pointer_group_interface gi (me, "columns");
144   gi.add_element (c);
145
146   add_bound_item (dynamic_cast<Spanner*> (me),c);
147 }
148
149
150 MAKE_SCHEME_CALLBACK (Multi_measure_rest, set_spacing_rods);
151
152 SCM
153 Multi_measure_rest::set_spacing_rods (SCM smob)
154 {
155   Score_element*me = unsmob_element (smob);
156
157   Spanner*sp = dynamic_cast<Spanner*> (me);
158   if (!(sp->get_bound (LEFT) && sp->get_bound (RIGHT)))
159     {
160       programming_error ("Multi_measure_rest::get_rods (): I am not spanned!");
161       return SCM_UNDEFINED;
162     }
163
164   Item * l = sp->get_bound (LEFT)->column_l ();
165   Item * r = sp->get_bound (RIGHT)->column_l ();
166   Item * lb = l->find_prebroken_piece (RIGHT);
167   Item * rb = r->find_prebroken_piece (LEFT);      
168   
169   Item* combinations[4][2]={{l,r}, {lb,r}, {l,rb},{lb,rb}};
170   for (int i=0; i < 4; i++)
171     {
172       Item * l =  combinations[i][0];
173       Item *r = combinations[i][1];
174
175       if (!l || !r)
176         continue;
177
178       Rod rod;
179       rod.item_l_drul_[LEFT] = l;
180       rod.item_l_drul_[RIGHT] = r;
181
182         /*
183           should do something more advanced.
184          */
185       rod.distance_f_ = l->extent (X_AXIS)[BIGGER] - r->extent (X_AXIS)[SMALLER]
186         + me->paper_l ()->get_var ("multi_measure_rest_x_minimum");
187   
188       rod.add_to_cols ();
189     }
190   return SCM_UNDEFINED;
191 }
192