]> git.donarmstrong.com Git - lilypond.git/blob - lily/tuplet-spanner.cc
release: 1.3.88
[lilypond.git] / lily / tuplet-spanner.cc
1 /*
2   plet-spanner.cc -- implement Tuplet_spanner
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--2000 Jan Nieuwenhuizen <janneke@gnu.org>
7 */
8
9
10 #include "beam.hh"
11 #include "box.hh"
12 #include "debug.hh"
13 #include "lookup.hh"
14 #include "molecule.hh"
15 #include "paper-column.hh"
16 #include "paper-def.hh"
17 #include "tuplet-spanner.hh"
18 #include "stem.hh"
19 #include "note-column.hh"
20 #include "dimensions.hh"
21 #include "group-interface.hh"
22 #include "directional-element-interface.hh"
23 #include "spanner.hh"
24
25 void
26 Tuplet_spanner::set_interface (Score_element*me)
27 {
28   me->set_interface (ly_symbol2scm ("tuplet-bracket"));
29 }
30
31 /*
32   TODO. 
33  */
34
35 MAKE_SCHEME_CALLBACK(Tuplet_spanner,brew_molecule);
36
37 SCM
38 Tuplet_spanner::brew_molecule (SCM smob) 
39 {
40   Score_element *me= unsmob_element (smob);
41   Molecule  mol;
42
43   // Default behaviour: number always, bracket when no beam!
44   bool par_beam = to_boolean (me->get_elt_property ("parallel-beam"));
45   bool bracket_visibility = !par_beam;
46   bool number_visibility = true;
47
48   SCM bracket = me->get_elt_property ("tuplet-bracket-visibility");
49   if (gh_boolean_p (bracket))
50     {
51       bracket_visibility = gh_scm2bool (bracket);
52     }
53   else if (bracket == ly_symbol2scm ("if-no-beam"))
54     bracket_visibility = !par_beam;
55
56   SCM numb = me->get_elt_property ("tuplet-number-visibility");  
57   if (gh_boolean_p (numb))
58     {
59       number_visibility = gh_scm2bool (numb);
60     }
61   else if (bracket == ly_symbol2scm ("if-no-beam"))
62     number_visibility = !par_beam;
63   
64   if (gh_pair_p (me->get_elt_property ("columns")))
65     {
66       Link_array<Score_element> column_arr=
67         Pointer_group_interface__extract_elements (me, (Score_element*)0, "columns");
68         
69       Real ncw = column_arr.top ()->extent(X_AXIS).length ();
70       Real w = dynamic_cast<Spanner*>(me)->spanner_length () + ncw;
71
72       Real staff_space = me->paper_l ()->get_var ("interline");
73       Direction dir = Directional_element_interface::get (me);
74       Real dy = gh_scm2double (me->get_elt_property ("delta-y"));
75       SCM number = me->get_elt_property ("text");
76       if (gh_string_p (number) && number_visibility)
77         {
78           Molecule
79             num (me->lookup_l ()->text ("italic",
80                                     ly_scm2string (number), me->paper_l ()));
81           num.align_to (X_AXIS, CENTER);
82           num.translate_axis (w/2, X_AXIS);
83           num.align_to (Y_AXIS, CENTER);
84           num.translate_axis (dir * staff_space, Y_AXIS);
85         
86           num.translate_axis (dy/2, Y_AXIS);
87
88           mol.add_molecule (num);
89         }
90       
91       if (bracket_visibility)      
92         {
93           SCM ss = me->paper_l ()->get_scmvar ("staffspace");
94           SCM lt =  me->paper_l ()->get_scmvar ("stafflinethickness");
95           
96           SCM thick = me->get_elt_property ("thick");
97           SCM gap = me->get_elt_property ("number-gap");
98           
99           SCM at =gh_list(ly_symbol2scm ("tuplet"),
100                           ss,
101                           scm_product (gap, ss),
102                           gh_double2scm (w),
103                           gh_double2scm (dy),
104                           scm_product (thick, lt),
105                           gh_int2scm (dir),
106                           SCM_UNDEFINED);
107
108           Box b;
109           mol.add_molecule (Molecule (b, at));
110         }
111     }
112   return mol.create_scheme();
113 }
114
115
116
117
118 /*
119   use first -> last note for slope, and then correct for disturbing
120   notes in between.  */
121 void
122 Tuplet_spanner::calc_position_and_height (Score_element*me,Real *offset, Real * dy) 
123 {
124   Link_array<Score_element> column_arr=
125     Pointer_group_interface__extract_elements (me, (Score_element*)0, "columns");
126
127
128   Score_element * commony = me->common_refpoint (me->get_elt_property ("columns"), Y_AXIS);
129   Score_element * commonx = me->common_refpoint (me->get_elt_property ("columns"), X_AXIS);  
130   
131   Direction d = Directional_element_interface::get (me);
132
133   /*
134     Use outer non-rest columns to determine slope
135    */
136   int l = 0;
137   while (l <column_arr.size() && Note_column::rest_b(column_arr[l]))
138     l ++;
139
140   int r = column_arr.size ()- 1;
141   while (r >= l && Note_column::rest_b(column_arr[r]))
142     r--;
143   
144   if (l < r)
145     {
146       *dy = column_arr[r]->extent (Y_AXIS) [d] + column_arr[r]->relative_coordinate (commony, Y_AXIS)
147         - column_arr[l]->extent (Y_AXIS) [d] - column_arr[l]->relative_coordinate (commony, Y_AXIS);
148     }
149   else
150     * dy = 0;
151
152
153   *offset = - d * infinity_f;
154
155   if (!column_arr.size ())
156     return;
157   
158   Real x0 = column_arr[0]->relative_coordinate (commonx, X_AXIS);
159   Real x1 = column_arr.top ()->relative_coordinate (commonx, X_AXIS);
160   
161   Real factor = column_arr.size () > 1 ? 1/(x1 - x0) : 1.0;
162   
163   for (int i = 0; i < column_arr.size ();  i++)
164     {
165       Real notey = column_arr[i]->extent (Y_AXIS)[d] 
166         + column_arr[i]->relative_coordinate (commony, Y_AXIS)
167         - me->relative_coordinate (commony, Y_AXIS);
168
169       Real x = column_arr[i]->relative_coordinate (commonx, X_AXIS) - x0;
170       Real tuplety =  *dy * x * factor;
171
172       if (notey * d > (*offset + tuplety) * d)
173         *offset = notey - tuplety; 
174     }
175 }
176
177 /*
178   use first -> last note for slope,
179 */
180 void
181 Tuplet_spanner::calc_dy (Score_element*me,Real * dy)
182 {
183   Link_array<Score_element> column_arr=
184     Pointer_group_interface__extract_elements (me, (Score_element*)0, "columns");
185  
186   Direction d = Directional_element_interface::get (me);
187   *dy = column_arr.top ()->extent (Y_AXIS) [d]
188     - column_arr[0]->extent (Y_AXIS) [d];
189 }
190 MAKE_SCHEME_CALLBACK(Tuplet_spanner,after_line_breaking);
191
192 SCM
193 Tuplet_spanner::after_line_breaking (SCM smob)
194 {
195   Score_element * me = unsmob_element (smob);
196   Link_array<Note_column> column_arr=
197     Pointer_group_interface__extract_elements (me, (Note_column*)0, "columns");
198   Spanner *sp = dynamic_cast<Spanner*> (me);
199
200
201   if (!column_arr.size ())
202     {
203       me->suicide ();
204       return SCM_UNSPECIFIED;
205     }
206
207   Direction d = Directional_element_interface::get (me);
208   if (!d)
209     {
210       d = Tuplet_spanner::get_default_dir (me);
211       Directional_element_interface::set (me, d);
212
213     }
214   Real dy, offset;
215
216   calc_position_and_height (me,&offset,&dy);
217   
218   me->set_elt_property ("delta-y", gh_double2scm (dy));
219
220   me->translate_axis (offset, Y_AXIS);
221   
222   if (scm_ilength (me->get_elt_property ("beams")) == 1)
223     {
224       SCM bs = me->get_elt_property ("beams");
225       Score_element *b = unsmob_element (gh_car (bs));
226       Spanner * beam_l = dynamic_cast<Spanner *> (b);
227       if (!sp->broken_b () 
228           && sp->get_bound (LEFT)->column_l () == beam_l->get_bound (LEFT)->column_l ()
229           && sp->get_bound (RIGHT)->column_l () == beam_l->get_bound (RIGHT)->column_l ())
230         me->set_elt_property ("parallel-beam", SCM_BOOL_T);
231     }
232   return SCM_UNSPECIFIED;
233 }
234
235
236 Direction
237 Tuplet_spanner::get_default_dir (Score_element*me)
238 {
239   Direction d = UP;
240   SCM dir_sym =me->get_elt_property ("dir-forced");
241   if (isdir_b (dir_sym))
242     {
243       d= to_dir (dir_sym);
244       if (d != CENTER)
245         return d;
246     }
247
248   d = UP ;
249   for (SCM s = me->get_elt_property ("columns"); gh_pair_p (s); s = gh_cdr (s))
250     {
251       Score_element * nc = unsmob_element (gh_car (s));
252       if (Note_column::dir (nc) < 0) 
253         {
254           d = DOWN;
255           break;
256         }
257     }
258   
259   return d;
260 }
261
262 void
263 Tuplet_spanner::add_beam (Score_element*me, Score_element *b)
264 {
265   me->add_dependency (b);
266   Pointer_group_interface gi (me, "beams");
267   gi.add_element (b);
268 }
269
270 void
271 Tuplet_spanner::add_column (Score_element*me, Item*n)
272 {
273   Pointer_group_interface gi (me, "columns");
274   gi.add_element (n);
275   me->add_dependency (n);
276
277   add_bound_item (dynamic_cast<Spanner*> (me), n);
278 }
279
280