]> git.donarmstrong.com Git - lilypond.git/blob - lily/tie.cc
patch::: 1.3.9.hwn2
[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--1999 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 "paper-column.hh"
13 #include "debug.hh"
14
15
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 }
32
33
34 /*
35   ugh: direction of the Tie is more complicated.  See [Ross] p136 and further
36  */
37 Direction
38 Tie::get_default_dir () const
39 {
40   int m = int (head_l_drul_[LEFT]->position_f () 
41                + head_l_drul_[RIGHT]->position_f ()) /2;
42
43   /*
44     If dir is not determined: inverse of stem: down
45     (see stem::get_default_dir ())
46    */
47   Direction neutral_dir = (Direction)(int)paper_l ()->get_var ("stem_default_neutral_direction");
48   return (m == 0) ? other_dir (neutral_dir) : (m < 0) ? DOWN : UP;
49 }
50
51 void
52 Tie::do_add_processing()
53 {
54   if (!(head_l_drul_[LEFT] && head_l_drul_[RIGHT]))
55     warning (_ ("lonely tie"));
56
57   Direction d = LEFT;
58   Drul_array<Note_head *> new_head_drul = head_l_drul_;
59   do {
60     if (!head_l_drul_[d])
61       new_head_drul[d] = head_l_drul_[(Direction)-d];
62   } while (flip(&d) != LEFT);
63   head_l_drul_ = new_head_drul;
64 }
65
66 void
67 Tie::do_post_processing()
68 {
69   assert (head_l_drul_[LEFT] || head_l_drul_[RIGHT]);
70
71   Real interline_f = paper_l ()->get_var ("interline");
72   Real internote_f = interline_f / 2;
73   Real x_gap_f = paper_l ()->get_var ("tie_x_gap");
74   Real y_gap_f = paper_l ()->get_var ("tie_y_gap");
75
76   /* 
77    Slur and tie placement [OSU]
78
79    Ties:
80
81        * x = inner vertical tangent - d * gap
82
83    */
84
85
86   /*
87     OSU: not different for outer notes, so why all this code?
88     ie,  can we drop this, or should it be made switchable.
89    */
90 #if 0
91   Direction d = LEFT;
92   do
93     {
94       Real head_width_f = head_l_drul_[d]
95         ? head_l_drul_[d]->extent (X_AXIS).length ()
96         : 0;
97       /*
98         side attached to outer (upper or lower) notehead of chord
99       */
100       if (head_l_drul_[d]
101           /*
102
103                 a~a~a;
104
105             to second tie, middle notehead seems not extremal
106
107             Getting scared a bit by score-element's comment:
108             // is this a good idea?
109           */
110           && (head_l_drul_[d]->get_elt_property ("extremal")
111               != SCM_UNDEFINED))
112         {
113         if (d == LEFT)
114             dx_f_drul_[d] += head_width_f;
115           dx_f_drul_[d] += -d * x_gap_f;
116         }
117       /*
118         side attached to inner notehead
119       */
120       else
121         {
122           dx_f_drul_[d] += -d * head_width_f;
123         }
124     } while (flip (&d) != LEFT);
125
126 #else
127
128   if (head_l_drul_[LEFT])
129     dx_f_drul_[LEFT] = head_l_drul_[LEFT]->extent (X_AXIS).length ();
130   else
131     dx_f_drul_[LEFT] = get_broken_left_end_align ();
132   dx_f_drul_[LEFT] += x_gap_f;
133   dx_f_drul_[RIGHT] -= x_gap_f;
134
135 #endif
136
137   /* 
138    Slur and tie placement [OSU]  -- check this
139
140    Ties:
141
142        * y = dx <  5ss: horizontal tangent
143          y = dx >= 5ss: y next interline - d * 0.25 ss
144
145          which probably means that OSU assumes that
146
147             dy <= 5 dx
148
149          for smal slurs
150    */
151
152   Real ypos = head_l_drul_[LEFT] ? head_l_drul_[LEFT]->position_f ()
153     : head_l_drul_[RIGHT]->position_f ();
154
155   Real y_f = internote_f * ypos; 
156   int ypos_i = int (ypos);
157  
158   Real dx_f = extent (X_AXIS).length () + dx_f_drul_[RIGHT] - dx_f_drul_[LEFT];
159   if (dx_f < paper_l ()->get_var ("tie_staffspace_length"))
160     {
161       if (abs (ypos_i) % 2)
162         y_f += get_direction () * internote_f;
163       y_f += get_direction () * y_gap_f;
164     }
165   else
166     {
167       if (! (abs (ypos_i) % 2))
168         y_f += get_direction () * internote_f;
169       y_f += get_direction () * internote_f;
170       y_f -= get_direction () * y_gap_f;
171     }
172   
173   dy_f_drul_[LEFT] = dy_f_drul_[RIGHT] = y_f;
174 }
175
176 void
177 Tie::do_substitute_element_pointer (Score_element*o, Score_element*n)
178 {
179   Note_head *new_l = n ? dynamic_cast<Note_head *> (n) : 0;
180   if (dynamic_cast <Item *> (o) == head_l_drul_[LEFT])
181     head_l_drul_[LEFT] = new_l;
182   else if (dynamic_cast <Item *> (o) == head_l_drul_[RIGHT])
183     head_l_drul_[RIGHT] = new_l;
184 }
185
186
187 Array<Rod>
188 Tie::get_rods () const
189 {
190   Array<Rod> a;
191   Rod r;
192   r.item_l_drul_ = spanned_drul_;
193   r.distance_f_ = paper_l ()->get_var ("tie_x_minimum");
194   a.push (r);
195   return a;
196 }
197