]> git.donarmstrong.com Git - lilypond.git/blob - lily/tuplet-spanner.cc
2a1098181386c10bccb1fbfa43f86a8255378602
[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 #include "atom.hh"
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
24
25 Tuplet_spanner::Tuplet_spanner ()
26 {
27   set_elt_property ("beams", SCM_EOL);
28   set_elt_property ("columns", SCM_EOL);  
29 }
30
31 /*
32   TODO. 
33  */
34 Molecule*
35 Tuplet_spanner::do_brew_molecule_p () const
36 {
37   Molecule* mol_p = new Molecule;
38
39   // Default behaviour: number always, bracket when no beam!
40   bool par_beam = to_boolean (get_elt_property ("parallel-beam"));
41   bool bracket_visibility = !par_beam;
42   bool number_visibility = true;
43
44   SCM bracket = get_elt_property ("tuplet-bracket-visibility");
45   if (gh_boolean_p (bracket))
46     {
47       bracket_visibility = gh_scm2bool (bracket);
48     }
49   else if (bracket == ly_symbol2scm ("if-no-beam"))
50     bracket_visibility = !par_beam;
51
52   SCM numb = get_elt_property ("tuplet-number-visibility");  
53   if (gh_boolean_p (numb))
54     {
55       number_visibility = gh_scm2bool (numb);
56     }
57   else if (bracket == ly_symbol2scm ("if-no-beam"))
58     number_visibility = !par_beam;
59   
60   if (gh_pair_p (get_elt_property ("columns")))
61     {
62       Link_array<Note_column> column_arr=
63         Group_interface__extract_elements (this, (Note_column*)0, "columns");
64         
65       Real ncw = column_arr.top ()->extent(X_AXIS).length ();
66       Real w = spanner_length () + ncw;
67
68
69       Real staff_space = paper_l ()->get_var ("interline");
70       Direction dir = directional_element (this).get ();
71       Real dy = gh_scm2double (get_elt_property ("delta-y"));
72       SCM number = get_elt_property ("text");
73       if (gh_string_p (number) && number_visibility)
74         {
75           Molecule
76             num (lookup_l ()->text ("italic",
77                                     ly_scm2string (number), paper_l ()));
78           num.align_to (X_AXIS, CENTER);
79           num.translate_axis (w/2, X_AXIS);
80           num.align_to (Y_AXIS, CENTER);
81           num.translate_axis (dir * staff_space, Y_AXIS);
82         
83           num.translate_axis (dy/2, Y_AXIS);
84
85           mol_p->add_molecule (num);
86         }
87       
88       Real thick = paper_l ()->get_var ("tuplet_thick");
89       if (bracket_visibility)      
90         {
91           Real gap = paper_l () -> get_var ("tuplet_spanner_gap");
92           Real height = staff_space;
93           Atom *at = new Atom (gh_list(ly_symbol2scm ("tuplet"),
94                                        gh_double2scm (height),
95                                        gh_double2scm (gap),
96                                        gh_double2scm (w),
97                                        gh_double2scm (dy),
98                                        gh_double2scm (thick),
99                                        gh_int2scm (dir),
100                                        SCM_UNDEFINED));
101
102           mol_p->add_atom (at->self_scm_);
103         }
104
105       mol_p->translate_axis (dir * staff_space, Y_AXIS);
106     }
107   return mol_p;
108 }
109   
110 void
111 Tuplet_spanner::do_add_processing ()
112 {
113   if (gh_pair_p (get_elt_property ("columns")))
114     {
115       Link_array<Note_column> column_arr=
116         Group_interface__extract_elements (this, (Note_column*)0, "columns");
117       
118       set_bounds (LEFT, column_arr[0]);
119       set_bounds (RIGHT, column_arr.top ());  
120     }
121 }
122
123 /*
124   use first -> last note for slope, and then correct for disturbing
125   notes in between.  */
126 void
127 Tuplet_spanner::calc_position_and_height (Real *offset, Real * dy) const
128 {
129   Link_array<Note_column> column_arr=
130     Group_interface__extract_elements (this, (Note_column*)0, "columns");
131
132  
133   Direction d = directional_element (this).get ();
134   *dy = column_arr.top ()->extent (Y_AXIS) [d]
135     - column_arr[0]->extent (Y_AXIS) [d];
136
137   *offset = - d * infinity_f;
138   
139   Real x0 = column_arr[0]->hpos_f ();
140   Real x1 = column_arr.top ()->hpos_f ();
141   
142   Real factor = column_arr.size () > 1 ? 1/(x1 - x0) : 1.0;
143   
144   for (int i = 0; i < column_arr.size ();  i++)
145     {
146       Real notey = column_arr[i]->extent (Y_AXIS)[d];
147       Real x = column_arr[i]->hpos_f () - x0;
148       Real tuplety =  *dy * x * factor;
149
150       if (notey * d > (*offset + tuplety) * d)
151         *offset = notey - tuplety; 
152     }
153 }
154
155 void
156 Tuplet_spanner::do_post_processing ()
157 {
158   Link_array<Note_column> column_arr=
159     Group_interface__extract_elements (this, (Note_column*)0, "columns");
160
161   if (!column_arr.size ())
162     {
163       set_elt_property ("transparent", SCM_BOOL_T);
164       set_empty (X_AXIS);
165       set_empty (Y_AXIS);
166     }
167
168   Direction d =   directional_element (this).get ();
169   if (!d)
170     {
171       d = get_default_dir ();
172       directional_element (this).set (d);
173
174     }
175   Real dy, offset;
176
177   calc_position_and_height (&offset, &dy);
178   set_elt_property ("delta-y", gh_double2scm (dy));
179
180   translate_axis (offset, Y_AXIS);
181   
182   if (scm_ilength (get_elt_property ("beams")) == 1)
183     {
184       SCM bs = get_elt_property ("beams");
185       Score_element *b = unsmob_element (gh_car (bs));
186       Beam * beam_l = dynamic_cast<Beam*> (b);
187       if (!broken_b () 
188           && spanned_drul_[LEFT]->column_l () == beam_l->spanned_drul_[LEFT]->column_l ()
189           && spanned_drul_[RIGHT]->column_l () == beam_l->spanned_drul_[RIGHT]->column_l ())
190         set_elt_property ("parallel-beam", SCM_BOOL_T);
191     }
192 }
193
194
195 Direction
196 Tuplet_spanner::get_default_dir () const
197 {
198   Direction d = UP;
199   SCM dir_sym =get_elt_property ("dir-forced");
200   if (isdir_b (dir_sym))
201     {
202       d= to_dir (dir_sym);
203       if (d != CENTER)
204         return d;
205     }
206
207   d = UP ;
208   for (SCM s = get_elt_property ("columns"); gh_pair_p (s); s = gh_cdr (s))
209     {
210       Score_element * sc = unsmob_element (gh_car (s));
211       Note_column * nc = dynamic_cast<Note_column*> (sc);
212       if (nc->dir () < 0) 
213         {
214           d = DOWN;
215           break;
216         }
217     }
218   
219   return d;
220 }
221
222 void
223 Tuplet_spanner::add_beam (Beam *b)
224 {
225   add_dependency (b);
226   Group_interface gi (this, "beams");
227   gi.add_element (b);
228 }
229
230 void
231 Tuplet_spanner::add_column (Note_column*n)
232 {
233   Group_interface gi (this, "columns");
234   gi.add_element (n);
235
236   add_dependency (n);
237 }
238
239