]> git.donarmstrong.com Git - lilypond.git/blob - lily/slur.cc
release: 1.1.1
[lilypond.git] / lily / slur.cc
1 /*
2   slur.cc -- implement  Slur
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1996,  1997--1998, 1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7     Jan Nieuwenhuizen <janneke@gnu.org>
8 */
9
10 /*
11   [TODO]
12     * URG: share code with tie
13     * begin and end should be treated as a Script.
14     * damping
15     * slur from notehead to stemend: c''()b''
16  */
17
18 #include "slur.hh"
19 #include "scalar.hh"
20 #include "lookup.hh"
21 #include "paper-def.hh"
22 #include "note-column.hh"
23 #include "stem.hh"
24 #include "p-col.hh"
25 #include "molecule.hh"
26 #include "debug.hh"
27 #include "box.hh"
28 #include "bezier.hh"
29 #include "encompass-info.hh"
30 #include "main.hh"
31
32 IMPLEMENT_IS_TYPE_B1(Slur,Bow);
33
34 Slur::Slur ()
35 {
36 }
37
38 void
39 Slur::add_column (Note_column*n)
40 {
41   if (!n->head_l_arr_.size ())
42     warning (_ ("Putting slur over rest."));
43   encompass_arr_.push (n);
44   add_dependency (n);
45 }
46
47 void
48 Slur::set_default_dir ()
49 {
50   dir_ = DOWN;
51   for (int i=0; i < encompass_arr_.size (); i ++) 
52     {
53       if (encompass_arr_[i]->dir_ < 0) 
54         {
55           dir_ = UP;
56           break;
57         }
58     }
59 }
60
61 void
62 Slur::do_add_processing ()
63 {
64   set_bounds (LEFT, encompass_arr_[0]);    
65   if (encompass_arr_.size () > 1)
66     set_bounds (RIGHT, encompass_arr_.top ());
67 }
68
69 void
70 Slur::do_pre_processing ()
71 {
72   // don't set directions
73 }
74
75 void
76 Slur::do_substitute_dependency (Score_element*o, Score_element*n)
77 {
78   int i;
79   while ((i = encompass_arr_.find_i (dynamic_cast<Note_column *> (o))) >=0) 
80     {
81       if (n)
82         encompass_arr_[i] = dynamic_cast<Note_column *> (n);
83       else
84         encompass_arr_.del (i);
85     }
86 }
87
88 static int 
89 Note_column_compare (Note_column *const&n1 , Note_column* const&n2)
90 {
91   return Item::left_right_compare (n1, n2);
92 }
93
94 void
95 Slur::do_post_processing ()
96 {
97   encompass_arr_.sort (Note_column_compare);
98   if (!dir_)
99     set_default_dir ();
100
101   Real interline_f = paper ()->interline_f ();
102   Real internote_f = interline_f / 2;
103   Real notewidth_f = paper ()->note_width ();
104   Real slur_min = paper ()->get_var ("slur_x_minimum");
105
106   /* 
107    [OSU]: slur and tie placement
108
109    slurs:
110    * x = centre of head (upside-down: inner raakpunt stem) - d * gap
111
112    * y = length < 5ss : horizontal raakpunt + d * 0.25 ss
113      y = length >= 5ss : y next interline - d * 0.25 ss
114      --> height <= 5 length ?? we use <= 3 length, now...
115    */
116   
117   Real gap_f = paper ()->get_var ("slur_x_gap");
118
119   Drul_array<Note_column*> extrema;
120   extrema[LEFT] = encompass_arr_[0];
121   extrema[RIGHT] = encompass_arr_.top ();
122
123   Direction d=LEFT;
124  
125   do 
126     {
127       /*
128         broken slur
129        */
130       if (extrema[d] != spanned_drul_[d]) 
131         {
132           // ugh -- check if needed
133           dx_f_drul_[d] = -d 
134             *(spanned_drul_[d]->width ().length () - 0.5 * notewidth_f);
135
136           // prebreak
137           if (d == RIGHT)
138             {
139               dx_f_drul_[LEFT] = spanned_drul_[LEFT]->width ().length ();
140
141               // urg -- check if needed
142               if (encompass_arr_.size () > 1)
143                 dx_f_drul_[RIGHT] += notewidth_f;
144             }
145         }
146       /*
147         normal slur
148        */
149       else if (extrema[d]->stem_l_ && !extrema[d]->stem_l_->transparent_b_ 
150                && extrema[d]->head_l_arr_.size ()) 
151         {
152           Real notewidth_f = extrema[d]->width ().length ();
153           dy_f_drul_[d] = (int)rint (extrema[d]->stem_l_->height ()[dir_]);
154           dx_f_drul_[d] += 0.5 * notewidth_f - d * gap_f;
155           if (dir_ == extrema[d]->stem_l_->dir_)
156             {
157               if (dir_ == d)
158                 dx_f_drul_[d] += 0.5 * (dir_ * d) * d * notewidth_f;
159               else
160                 dx_f_drul_[d] += 0.25 * (dir_ * d) * d * notewidth_f;
161             }
162         }
163         else 
164           {
165             Real notewidth_f = extrema[d]->width ().length ();
166             dy_f_drul_[d] = (int)rint (extrema[d]->head_positions_interval ()
167                                        [dir_]) * internote_f;
168             dx_f_drul_[d] += 0.5 * notewidth_f - d * gap_f;
169         }
170         dy_f_drul_[d] += dir_ * interline_f;
171         if (extrema[d]->stem_l_ && (dir_ == extrema[d]->stem_l_->dir_))
172           dy_f_drul_[d] -= dir_ * internote_f;
173       }
174   while (flip(&d) != LEFT);
175
176   // now that both are set, do dependent
177   do 
178     {
179       /*
180         broken slur
181        */
182       if (extrema[d] != spanned_drul_[d]) 
183         {
184           Direction u = d;
185           flip(&u);
186
187           // postbreak
188           if (d == LEFT)
189             dy_f_drul_[u] += dir_ * internote_f;
190
191           dy_f_drul_[d] = dy_f_drul_[(Direction)-d];
192
193           // pre and post
194           if (dx_f_drul_[RIGHT] - dx_f_drul_[LEFT] < slur_min)
195             {
196               dx_f_drul_[d] -= d * slur_min 
197                 - (dx_f_drul_[RIGHT] - dx_f_drul_[LEFT]);
198               dx_f_drul_[d] = dx_f_drul_[(Direction)-d] + d * slur_min;
199             }
200         }
201      }
202   while (flip(&d) != LEFT);
203
204   /*
205     Avoid too steep slurs.
206       * slur from notehead to stemend: c''()b''
207    */
208   Real damp_f = paper ()->get_var ("slur_slope_damping");
209   Offset d_off = Offset (dx_f_drul_[RIGHT] - dx_f_drul_[LEFT],
210     dy_f_drul_[RIGHT] - dy_f_drul_[LEFT]);
211   d_off.x () += width ().length ();
212
213   Real ratio_f = abs (d_off.y () / d_off.x ());
214   if (ratio_f > damp_f)
215     dy_f_drul_[(Direction)(- dir_ * sign (d_off.y ()))] -=
216       dir_ * (damp_f - ratio_f) * d_off.x ();
217 }
218
219 Array<Offset>
220 Slur::get_encompass_offset_arr () const
221 {
222   Offset left = Offset (dx_f_drul_[LEFT], dy_f_drul_[LEFT]);
223   left.x () += encompass_arr_[0]->stem_l_->hpos_f ();
224
225   Offset d = Offset (dx_f_drul_[RIGHT] - dx_f_drul_[LEFT],
226     dy_f_drul_[RIGHT] - dy_f_drul_[LEFT]);
227   d.x () += width ().length ();
228
229   int first = 1;
230   int last = encompass_arr_.size () - 1;
231
232   // prebreak
233   if (encompass_arr_[0] != spanned_drul_[LEFT])
234     first--;
235
236   // postbreak
237   if (encompass_arr_.top () != spanned_drul_[RIGHT])
238     last++;
239
240 #define RESIZE_ICE
241 #ifndef RESIZE_ICE
242
243   Array<Offset> notes;
244   notes.push (Offset (0,0));
245 //  notes.push (left);
246
247   for (int i = first; i < last; i++)
248     {
249       Encompass_info info (encompass_arr_[i], dir_);
250       notes.push (info.o_ - left);
251 //      notes.push (info.o_ - left);
252     }
253   notes.push (d);
254
255 #else
256
257   int n = last - first + 2;
258   Array<Offset> notes (n);
259   notes[0] = Offset (0,0);
260 //  notes[0] = left;
261
262   for (int i = first; i < last; i++)
263     {
264       Encompass_info info (encompass_arr_[i], dir_);
265       notes[i - first + 1] = info.o_ - left;
266 //     notes[i - first + 1] = info.o_;
267     }
268   notes[n - 1] = Offset (d);
269
270 #endif
271
272   return notes;
273 }
274