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