]> git.donarmstrong.com Git - lilypond.git/blob - lily/tie.cc
release: 1.1.0
[lilypond.git] / lily / tie.cc
1 /*
2   tie.cc -- implement Tie
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #include "paper-def.hh"
10 #include "tie.hh"
11 #include "note-head.hh"
12 #include "p-col.hh"
13 #include "debug.hh"
14
15 IMPLEMENT_IS_TYPE_B1(Tie,Bow);
16
17 void
18 Tie::set_head (Direction d, Note_head * head_l)
19 {
20   assert (!head_l_drul_[d]);
21   head_l_drul_[d] = head_l;
22   set_bounds (d, head_l);
23
24   add_dependency (head_l);
25 }
26
27 Tie::Tie()
28 {
29   head_l_drul_[RIGHT] =0;
30   head_l_drul_[LEFT] =0;
31   same_pitch_b_ =false;
32 }
33
34
35 /*
36   ugh: direction of the Tie is more complicated.  See [Ross] p136 and further
37  */
38 void
39 Tie::set_default_dir()
40 {
41   int m= (head_l_drul_[LEFT]->position_i_ 
42           + head_l_drul_[RIGHT]->position_i_) /2;
43   dir_ =  (m < 0)? DOWN : UP;
44 }
45
46 void
47 Tie::do_add_processing()
48 {
49   if (!(head_l_drul_[LEFT] && head_l_drul_[RIGHT]))
50     warning (_ ("lonely tie"));
51
52   Direction d = LEFT;
53   Drul_array<Note_head *> new_head_drul = head_l_drul_;
54   do {
55     if (!head_l_drul_[d])
56       new_head_drul[d] = head_l_drul_[(Direction)-d];
57   } while (flip(&d) != LEFT);
58   head_l_drul_ = new_head_drul;
59 }
60
61 void
62 Tie::do_post_processing()
63 {
64   // URG: share code with slur!
65   assert (head_l_drul_[LEFT] || head_l_drul_[RIGHT]);
66
67   Real notewidth = paper ()->note_width ();
68   Real interline_f = paper ()->interline_f ();
69   Real tie_min = paper ()->get_var ("tie_x_minimum");
70
71   /* 
72    [OSU]: slur and tie placement
73
74    ties:
75    * x = inner raakpunt - d * gap
76
77    * y = length < 5ss : horizontal raakpunt
78      y = length >= 5ss : y next interline - d * 0.25 ss
79      --> height <= 5 length ?? we use <= 3 length, now...
80    */
81
82   Real gap_f = paper ()->get_var ("slur_x_gap");
83
84   Direction d = LEFT;
85   do
86     {
87       dy_f_drul_[d] = .5 * interline_f * (head_l_drul_[d] 
88                        ? head_l_drul_[d]->position_i_
89                        : head_l_drul_[(Direction)-d]->position_i_);
90     }
91   while (flip(&d) != LEFT);
92
93   do
94     {
95       // tie attached to outer notehead
96       if (head_l_drul_[d] && head_l_drul_[d]->extremal_i_)
97         {
98           if (d == LEFT)
99             dx_f_drul_[d] += notewidth;
100           dx_f_drul_[d] += -d * gap_f;
101           /* attach to outer 3/4 end of head */
102           dy_f_drul_[d] += dir_ * 0.25 * interline_f;
103         }
104       // tie attached to inner notehead
105       else if (head_l_drul_[d] && d == LEFT)
106         {
107           dx_f_drul_[d] += -d * notewidth;
108         }
109       // uhm? loose end of tie // tie attached to stem
110       else
111         {
112           dx_f_drul_[d] = -d * (spanned_drul_[d]->width ().length () 
113                                 -0.5 * notewidth);
114         }
115     }
116   while (flip(&d) != LEFT);
117
118   // now that both are set, do dependent
119   do
120     {
121       // tie attached to outer notehead
122       if (!head_l_drul_[d])
123         {
124           if (dx_f_drul_[RIGHT] - dx_f_drul_[LEFT] < tie_min)
125             {
126               dx_f_drul_[d] -= d * tie_min 
127                 - (dx_f_drul_[RIGHT] - dx_f_drul_[LEFT]);
128               dx_f_drul_[d] = dx_f_drul_[(Direction)-d] + d * tie_min;
129             }
130
131           dy_f_drul_[d] = dy_f_drul_[(Direction) -d];
132         }
133     }
134   while (flip(&d) != LEFT);
135
136   /*
137     Avoid too steep ties
138       * slur from notehead to stemend: c''()b''
139    */
140   Real damp_f = paper ()->get_var ("tie_slope_damping");
141   Offset d_off = Offset (dx_f_drul_[RIGHT] - dx_f_drul_[LEFT],
142     dy_f_drul_[RIGHT] - dy_f_drul_[LEFT]);
143   d_off.x () += width ().length ();
144
145   Real ratio_f = abs (d_off.y () / d_off.x ());
146   if (ratio_f > damp_f)
147     dy_f_drul_[(Direction)(- dir_ * sign (d_off.y ()))] -=
148       dir_ * (damp_f - ratio_f) * d_off.x ();
149 }
150
151 void
152 Tie::do_substitute_dependency (Score_element*o, Score_element*n)
153 {
154   Note_head *new_l =n?(Note_head*)dynamic_cast <Item *> (n):0;
155   if (dynamic_cast <Item *> (o) == head_l_drul_[LEFT])
156     head_l_drul_[LEFT] = new_l;
157   else if (dynamic_cast <Item *> (o) == head_l_drul_[RIGHT])
158     head_l_drul_[RIGHT] = new_l;
159 }
160