]> git.donarmstrong.com Git - lilypond.git/blob - lily/tie.cc
release: 0.1.61
[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@stack.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   assert (head_l_drul_[LEFT] || head_l_drul_[RIGHT]);
65
66   Real notewidth = paper ()->note_width ();
67   Real interline_f = paper ()->interline_f ();
68   Real const TIE_MIN = 2.0 * interline_f;
69
70   /* 
71    [OSU]: slur and tie placement
72
73    ties:
74    * x = inner raakpunt - d * gap
75
76    * y = length < 5ss : horizontal raakpunt
77      y = length >= 5ss : y next interline - d * 0.25 ss
78      --> height <= 5 length ?? we use <= 3 length, now...
79
80    * suggested gap = ss / 5;
81    */
82   // jcn: 1/5 seems so small?
83   Real gap_f = interline_f / 2; // 5;
84
85   Direction d = LEFT;
86   do
87     {
88       dy_f_drul_[d] = .5 * interline_f * (head_l_drul_[d] 
89                        ? head_l_drul_[d]->position_i_
90                        : head_l_drul_[(Direction)-d]->position_i_);
91     }
92   while (flip(&d) != LEFT);
93
94   do
95     {
96       // tie attached to outer notehead
97       if (head_l_drul_[d] && head_l_drul_[d]->extremal_i_)
98         {
99           if (d == LEFT)
100             dx_f_drul_[d] += notewidth;
101           dx_f_drul_[d] += -d * gap_f;
102           /* attach to outer 3/4 end of head */
103           dy_f_drul_[d] += dir_ * 0.25 * interline_f;
104         }
105       // tie attached to inner notehead
106       else if (head_l_drul_[d])
107         {
108           dx_f_drul_[d] += d*0.5 * notewidth;
109         }
110       // uhm? loose end of tie // tie attached to stem
111       else
112         {
113           dx_f_drul_[d] = -d * (spanned_drul_[d]->width ().length () 
114                                 -0.5 * notewidth);
115         }
116     }
117   while (flip(&d) != LEFT);
118
119   // now that both are set, do dependent
120   do
121     {
122       // tie attached to outer notehead
123       if (!head_l_drul_[d])
124         {
125           if (dx_f_drul_[RIGHT] - dx_f_drul_[LEFT] < TIE_MIN)
126             {
127               dx_f_drul_[d] -= d * TIE_MIN 
128                 - (dx_f_drul_[RIGHT] - dx_f_drul_[LEFT]);
129               dx_f_drul_[d] = dx_f_drul_[(Direction)-d] + d * TIE_MIN;
130             }
131
132           dy_f_drul_[d] = dy_f_drul_[(Direction) -d];
133         }
134     }
135   while (flip(&d) != LEFT);
136 }
137
138 void
139 Tie::do_substitute_dependency (Score_elem*o, Score_elem*n)
140 {
141   Note_head *new_l =n?(Note_head*)n->item():0;
142   if (o->item() == head_l_drul_[LEFT])
143     head_l_drul_[LEFT] = new_l;
144   else if (o->item() == head_l_drul_[RIGHT])
145     head_l_drul_[RIGHT] = new_l;
146 }
147