]> git.donarmstrong.com Git - lilypond.git/blob - lily/tie-performer.cc
release: 1.3.107
[lilypond.git] / lily / tie-performer.cc
1 /*   
2   tie-performer.cc --  implement Tie_performer
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 1999--2000 Jan Nieuwenhuizen <janneke@gnu.org>
7   
8  */
9
10 #include "tie-performer.hh"
11 #include "command-request.hh"
12 #include "audio-item.hh"
13 #include "musical-request.hh"
14
15
16 ADD_THIS_TRANSLATOR (Tie_performer);
17
18 Tie_performer::Tie_performer()
19 {
20   req_l_ = 0;
21 }
22
23 bool
24 Tie_performer::do_try_music (Music *m)
25 {
26   if (!req_l_)
27     {
28       if (Tie_req * c = dynamic_cast<Tie_req*> (m))
29         {
30           req_l_ = c;
31           return true;
32         }
33     }
34   return false;
35 }
36
37 void
38 Tie_performer::acknowledge_element (Audio_element_info i)
39 {
40   if (Audio_note *nh = dynamic_cast<Audio_note *> (i.elem_l_))
41     {
42       Note_req * m = dynamic_cast<Note_req* > (i.req_l_);
43       if (!m)
44         return;
45       now_notes_.push (CNote_melodic_tuple (nh, m, now_mom()+ m->length_mom ()));
46     }
47 }
48
49 void
50 Tie_performer::do_process_music ()
51 {
52   if (req_l_)
53     {
54       Moment now = now_mom ();
55       Link_array<Audio_note> nharr;
56       
57       stopped_notes_.clear ();
58       while (past_notes_pq_.size ()
59              && past_notes_pq_.front ().end_ == now)
60         stopped_notes_.push (past_notes_pq_.get ());
61     }
62 }
63
64 void
65 Tie_performer::process_acknowledged ()
66 {
67   if (req_l_)
68     {
69       now_notes_.sort (CNote_melodic_tuple::pitch_compare);
70       stopped_notes_.sort(CNote_melodic_tuple::pitch_compare);
71       int i=0;
72       int j=0;
73       int tie_count=0;
74       while  ( i < now_notes_.size () && j < stopped_notes_.size ())
75         {
76           int comp
77             = Musical_pitch::compare (*unsmob_pitch (now_notes_[i].req_l_->get_mus_property ("pitch") ),
78                                       *unsmob_pitch (stopped_notes_[j].req_l_->get_mus_property ("pitch")));
79
80           if (comp)
81             {
82               (comp < 0) ? i ++ : j++;
83               continue;
84             }
85           else
86             {
87               tie_count ++;
88
89               /* don't go around recreating ties that were already
90                  made. Not infallible. Due to reordering in sort (),
91                  we will make the wrong ties when notenotes are
92                  added.  */
93               if (tie_count > tie_p_arr_.size ())
94                 {
95                   Audio_tie * p = new Audio_tie;
96                   p->set_note (LEFT, stopped_notes_[j].note_l_);
97                   p->set_note (RIGHT, now_notes_[i].note_l_);
98                   tie_p_arr_.push (p);
99                       announce_element (Audio_element_info (p, req_l_));
100                 }
101               i++;
102               j++;
103               
104             }
105         }
106       
107       if (!tie_p_arr_.size ())
108         {
109           req_l_->origin ()->warning (_("No ties were created!"));
110         }
111       
112     }
113 }
114
115 void
116 Tie_performer::do_pre_move_processing ()
117 {
118   for (int i=0; i < now_notes_.size (); i++)
119     {
120       past_notes_pq_.insert (now_notes_[i]);
121     }
122   now_notes_.clear ();
123
124   for (int i=0; i<  tie_p_arr_.size (); i++)
125    {
126      //play_element (tie_p_arr_[i]);
127      tie_p_arr_[i]->note_l_drul_[RIGHT]->tie_to (tie_p_arr_[i]->note_l_drul_[LEFT]);
128    }
129   tie_p_arr_.clear ();
130 }
131
132 void
133 Tie_performer::do_post_move_processing ()
134 {
135   req_l_ =0;
136   Moment now = now_mom ();
137   while (past_notes_pq_.size () && past_notes_pq_.front ().end_ < now)
138     past_notes_pq_.delmin ();
139 }
140
141
142 CNote_melodic_tuple::CNote_melodic_tuple ()
143 {
144   note_l_ =0;
145   req_l_ =0;
146   end_ = 0;
147 }
148
149 CNote_melodic_tuple::CNote_melodic_tuple (Audio_note *h, Melodic_req*m, Moment mom)
150 {
151   note_l_ = h;
152   req_l_ = m;
153   end_ = mom;
154 }
155
156 int
157 CNote_melodic_tuple::pitch_compare (CNote_melodic_tuple const&h1,
158                                     CNote_melodic_tuple const &h2)
159 {
160   SCM p1  = h1.req_l_->get_mus_property ("pitch");
161   SCM p2  = h2.req_l_->get_mus_property ("pitch");  
162   return Musical_pitch::compare (*unsmob_pitch (p1),
163                                *unsmob_pitch (p2));
164 }
165
166 int
167 CNote_melodic_tuple::time_compare (CNote_melodic_tuple const&h1,
168                                    CNote_melodic_tuple const &h2)
169 {
170   return (h1.end_ - h2.end_ ).sign ();
171 }