]> git.donarmstrong.com Git - lilypond.git/blob - lily/tie-performer.cc
* lily/include/translator.hh (ENTER_DESCRIPTION): add
[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--2002 Jan Nieuwenhuizen <janneke@gnu.org>
7   
8  */
9
10 #include "command-request.hh"
11 #include "audio-item.hh"
12 #include "musical-request.hh"
13 #include "pqueue.hh"
14 #include "performer.hh"
15
16 struct CNote_melodic_tuple {
17   Melodic_req *req_ ;
18   Audio_note *note_;
19   Moment end_;
20   CNote_melodic_tuple ();
21   CNote_melodic_tuple (Audio_note*, Melodic_req*, Moment);
22   static int pitch_compare (CNote_melodic_tuple const &, CNote_melodic_tuple const &);
23   static int time_compare (CNote_melodic_tuple const &, CNote_melodic_tuple const &);  
24 };
25
26 inline int compare (CNote_melodic_tuple const &a, CNote_melodic_tuple const &b)
27 {
28   return CNote_melodic_tuple::time_compare (a,b);
29 }
30
31
32 /**
33    Manufacture ties.  Acknowledge notes, and put them into a
34    priority queue. If we have a Tie_req, connect the notes that finish
35    just at this time, and note that start at this time.
36
37    TODO: should share code with Tie_engraver ?
38  */
39 class Tie_performer : public Performer
40 {
41 public:
42   TRANSLATOR_DECLARATIONS(Tie_performer);
43 private:
44   bool done_;
45   PQueue<CNote_melodic_tuple> past_notes_pq_;
46   Tie_req *req_;
47   Array<CNote_melodic_tuple> now_notes_;
48   Array<CNote_melodic_tuple> stopped_notes_;
49   Link_array<Audio_tie> ties_;
50   
51 protected:
52   virtual void initialize ();
53   virtual void start_translation_timestep ();
54   virtual void stop_translation_timestep ();
55   virtual void acknowledge_audio_element (Audio_element_info);
56   virtual bool try_music (Music*);
57   virtual void create_audio_elements ();
58 };
59
60
61 Tie_performer::Tie_performer ()
62 {
63   req_ = 0;
64   done_ = false;
65 }
66
67 ENTER_DESCRIPTION (Tie_performer, "", "",
68                    "general-music",
69                    "", "", "");
70
71
72 void
73 Tie_performer::initialize ()
74 {
75   req_ = 0;
76 }
77
78
79 bool
80 Tie_performer::try_music (Music *m)
81 {
82   if (!req_)
83     {
84       if (Tie_req * c = dynamic_cast<Tie_req*> (m))
85         {
86           req_ = c;
87           return true;
88         }
89     }
90   return false;
91 }
92
93 void
94 Tie_performer::acknowledge_audio_element (Audio_element_info i)
95 {
96   if (Audio_note *nh = dynamic_cast<Audio_note *> (i.elem_))
97     {
98       Note_req * m = dynamic_cast<Note_req *> (i.req_);
99       if (!m)
100         return;
101       now_notes_.push (CNote_melodic_tuple (nh, m, now_mom ()+ m->length_mom ()));
102     }
103 }
104
105 void
106 Tie_performer::create_audio_elements ()
107 {
108   if (req_ && ! done_)
109     {
110       Moment now = now_mom ();
111       Link_array<Audio_note> nharr;
112       
113       stopped_notes_.clear ();
114       while (past_notes_pq_.size ()
115              && past_notes_pq_.front ().end_ == now)
116         stopped_notes_.push (past_notes_pq_.get ());
117       done_ = true;
118       return;
119     }
120
121   if (req_)
122     {
123       now_notes_.sort (CNote_melodic_tuple::pitch_compare);
124       stopped_notes_.sort (CNote_melodic_tuple::pitch_compare);
125       int i=0;
126       int j=0;
127       int tie_count=0;
128       while (i < now_notes_.size () && j < stopped_notes_.size ())
129         {
130           int comp
131             = Pitch::compare (*unsmob_pitch (now_notes_[i].req_->get_mus_property ("pitch")),
132                                       *unsmob_pitch (stopped_notes_[j].req_->get_mus_property ("pitch")));
133
134           if (comp)
135             {
136  (comp < 0) ? i ++ : j++;
137               continue;
138             }
139           else
140             {
141               tie_count ++;
142
143               /* don't go around recreating ties that were already
144                  made. Not infallible. Due to reordering in sort (),
145                  we will make the wrong ties when notenotes are
146                  added.  */
147               if (tie_count > ties_.size ())
148                 {
149                   Audio_tie * p = new Audio_tie;
150                   p->set_note (LEFT, stopped_notes_[j].note_);
151                   p->set_note (RIGHT, now_notes_[i].note_);
152                   ties_.push (p);
153                       announce_element (Audio_element_info (p, req_));
154                 }
155               i++;
156               j++;
157               
158             }
159         }
160       
161       if (!ties_.size ())
162         {
163           req_->origin ()->warning (_ ("No ties were created!"));
164         }
165     }
166 }
167
168
169 void
170 Tie_performer::stop_translation_timestep ()
171 {
172   for (int i=0; i < now_notes_.size (); i++)
173     {
174       past_notes_pq_.insert (now_notes_[i]);
175     }
176   now_notes_.clear ();
177
178   for (int i=0; i<  ties_.size (); i++)
179    {
180      //play_element (ties_[i]);
181      ties_[i]->note_l_drul_[RIGHT]->tie_to (ties_[i]->note_l_drul_[LEFT]);
182    }
183   ties_.clear ();
184 }
185
186 void
187 Tie_performer::start_translation_timestep ()
188 {
189   req_ =0;
190   done_ = false;
191   Moment now = now_mom ();
192   while (past_notes_pq_.size () && past_notes_pq_.front ().end_ < now)
193     past_notes_pq_.delmin ();
194 }
195
196
197 CNote_melodic_tuple::CNote_melodic_tuple ()
198 {
199   note_ =0;
200   req_ =0;
201   end_ = 0;
202 }
203
204 CNote_melodic_tuple::CNote_melodic_tuple (Audio_note *h, Melodic_req*m, Moment mom)
205 {
206   note_ = h;
207   req_ = m;
208   end_ = mom;
209 }
210
211 int
212 CNote_melodic_tuple::pitch_compare (CNote_melodic_tuple const&h1,
213                                     CNote_melodic_tuple const &h2)
214 {
215   SCM p1  = h1.req_->get_mus_property ("pitch");
216   SCM p2  = h2.req_->get_mus_property ("pitch");  
217   return Pitch::compare (*unsmob_pitch (p1),
218                                *unsmob_pitch (p2));
219 }
220
221 int
222 CNote_melodic_tuple::time_compare (CNote_melodic_tuple const&h1,
223                                    CNote_melodic_tuple const &h2)
224 {
225   return (h1.end_ - h2.end_).main_part_.sign ();
226 }
227