]> git.donarmstrong.com Git - lilypond.git/blob - lily/multi-measure-rest.cc
patch::: 1.3.89.jcn1
[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 = Staff_symbol_referencer::staff_space (me);
45
46   Interval sp_iv;
47   Direction d = LEFT;
48   do
49     {
50       Item * col = sp->get_bound (d)->column_l ();
51
52       Interval coldim = col->extent (X_AXIS)
53         + col->relative_coordinate (0, X_AXIS);
54
55       sp_iv[d] = coldim[-d]  ;
56     }
57   while ((flip (&d)) != LEFT);
58   Molecule mol;
59   Real x_off = 0.0;
60
61   Real rx  = sp->get_bound (LEFT)->relative_coordinate (0, X_AXIS);
62   /*
63     we gotta stay clear of sp_iv, so move a bit to the right if
64     needed.
65    */
66   x_off += (sp_iv[LEFT] -  rx) >? 0;
67
68   /*
69     center between stuff.
70    */
71   x_off += sp_iv.length ()/ 2;
72
73   
74   Molecule s;
75
76   int measures = 1;
77   SCM m (me->get_elt_property ("measure-count"));
78   if (gh_number_p (m))
79     {
80       measures = gh_scm2int (m);
81     }
82   
83
84   SCM limit = me->get_elt_property ("expand-limit");
85   if (measures <= gh_scm2int (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 : gh_scm2double (me->get_elt_property ("padding")) * staff_space;
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   Real staff_space = Staff_symbol_referencer::staff_space (me);
177   for (int i=0; i < 4; i++)
178     {
179       Item * l =  combinations[i][0];
180       Item *r = combinations[i][1];
181
182       if (!l || !r)
183         continue;
184
185       Rod rod;
186       rod.item_l_drul_[LEFT] = l;
187       rod.item_l_drul_[RIGHT] = r;
188
189         /*
190           should do something more advanced.
191          */
192       rod.distance_f_ = l->extent (X_AXIS)[BIGGER] - r->extent (X_AXIS)[SMALLER]
193         + gh_scm2double (me->get_elt_property ("minimum-width")) * staff_space;
194   
195       rod.add_to_cols ();
196     }
197   return SCM_UNSPECIFIED;
198 }
199