]> git.donarmstrong.com Git - lilypond.git/blob - lily/tie-engraver.cc
release: 1.1.31
[lilypond.git] / lily / tie-engraver.cc
1 /*   
2   ctie-engraver.cc --  implement Tie_engraver
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 1998--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #include "tie-engraver.hh"
11 #include "command-request.hh"
12 #include "note-head.hh"
13 #include "musical-request.hh"
14 #include "tie.hh"
15
16 Tie_engraver::Tie_engraver()
17 {
18   req_l_ = 0;
19 }
20
21
22 bool
23 Tie_engraver::do_try_music (Music *m)
24 {
25   if (Tie_req * c = dynamic_cast<Tie_req*> (m))
26     {
27       req_l_ = c;
28       return true;
29     }
30   return false;
31 }
32
33 void
34 Tie_engraver::acknowledge_element (Score_element_info i)
35 {
36   if (Note_head *nh = dynamic_cast<Note_head *> (i.elem_l_))
37     {
38       Note_req * m = dynamic_cast<Note_req* > (i.req_l_);
39       if (!m)
40         return;
41       now_heads_.push (CHead_melodic_tuple (nh, m, now_mom()+ m->length_mom ()));
42     }
43 }
44
45 void
46 Tie_engraver::do_process_requests ()
47 {
48   if (req_l_)
49     {
50       Moment now = now_mom ();
51       Link_array<Note_head> nharr;
52       
53       stopped_heads_.clear ();
54       while (past_notes_pq_.size ()
55              && past_notes_pq_.front ().end_ == now)
56         stopped_heads_.push (past_notes_pq_.get ());
57     }
58 }
59
60 void
61 Tie_engraver::process_acknowledged ()
62 {
63   if (req_l_)
64     {
65       if (now_heads_.size () != stopped_heads_.size ())
66         {
67           req_l_->warning ("Unequal number of note heads for tie");
68         }
69       int sz = now_heads_.size () <? stopped_heads_.size ();
70
71       // hmm. Should do something more sensible.
72       // because, we assume no more noteheads come along after the 1st pass.
73       if (sz > tie_p_arr_.size ())
74         {
75           now_heads_.sort (CHead_melodic_tuple::pitch_compare);
76           stopped_heads_.sort(CHead_melodic_tuple::pitch_compare);
77
78           for (int i=0; i < sz; i++)
79             {
80               Tie * p = new Tie;
81               p->set_head (LEFT, stopped_heads_[i].head_l_);
82               p->set_head (RIGHT, now_heads_[i].head_l_);
83               tie_p_arr_.push (p);
84               announce_element (Score_element_info (p, req_l_));
85             }
86         }
87     }
88 }
89
90 void
91 Tie_engraver::do_pre_move_processing ()
92 {
93   for (int i=0; i < now_heads_.size (); i++)
94     {
95       past_notes_pq_.insert (now_heads_[i]);
96     }
97   now_heads_.clear ();
98
99   Scalar dir (get_property ("tieydirection", 0));
100   Scalar dir2 (get_property ("ydirection", 0));
101
102   Direction tie_dir = CENTER;
103   if (dir.length_i () && dir.isnum_b ())
104     tie_dir = (Direction) sign (int(dir));
105   else if (dir2.length_i () && dir2.isnum_b ())
106     tie_dir = (Direction) sign (int (dir2));
107   
108   for (int i=0; i<  tie_p_arr_.size (); i++)
109    {
110       tie_p_arr_[i]->dir_ = tie_dir;
111       typeset_element (tie_p_arr_[i]);
112     }
113   tie_p_arr_.clear ();
114 }
115
116 void
117 Tie_engraver::do_post_move_processing ()
118 {
119   req_l_ =0;
120   Moment now = now_mom ();
121   while (past_notes_pq_.size () && past_notes_pq_.front ().end_ < now)
122     past_notes_pq_.delmin ();
123 }
124
125 ADD_THIS_TRANSLATOR(Tie_engraver);
126
127
128 CHead_melodic_tuple::CHead_melodic_tuple ()
129 {
130   head_l_ =0;
131   mel_l_ =0;
132   end_ = 0;
133 }
134
135 CHead_melodic_tuple::CHead_melodic_tuple (Note_head *h, Melodic_req*m, Moment mom)
136 {
137   head_l_ = h;
138   mel_l_ = m;
139   end_ = mom;
140 }
141
142 int
143 CHead_melodic_tuple::pitch_compare (CHead_melodic_tuple const&h1,
144                              CHead_melodic_tuple const &h2)
145 {
146   return Melodic_req::compare (*h1.mel_l_, *h2.mel_l_);
147 }
148
149 int
150 CHead_melodic_tuple::time_compare (CHead_melodic_tuple const&h1,
151                              CHead_melodic_tuple const &h2)
152 {
153   return (h1.end_ - h2.end_ ).sign ();
154 }