]> git.donarmstrong.com Git - lilypond.git/blob - lily/note-performer.cc
Fix some bugs in the dynamic engraver and PostScript backend
[lilypond.git] / lily / note-performer.cc
1 /*
2   note-performer.cc -- implement Note_performer
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1996--2006 Jan Nieuwenhuizen <janneke@gnu.org>
7 */
8
9 #include "performer.hh"
10 #include "audio-item.hh"
11 #include "audio-column.hh"
12 #include "global-context.hh"
13 #include "warn.hh"
14 #include "music.hh"
15
16 /**
17    Convert evs to audio notes.
18 */
19 class Note_performer : public Performer
20 {
21 public:
22   TRANSLATOR_DECLARATIONS (Note_performer);
23
24 protected:
25   virtual bool try_music (Music *ev);
26
27   void stop_translation_timestep ();
28   void process_music ();
29
30 private:
31   vector<Music*> note_evs_;
32   vector<Audio_note*> notes_;
33 };
34
35 void
36 Note_performer::process_music ()
37 {
38   if (note_evs_.size ())
39     {
40       int transposing = 0;
41
42       SCM prop = get_property ("instrumentTransposition");
43       if (unsmob_pitch (prop))
44         transposing = unsmob_pitch (prop)->semitone_pitch ();
45
46       while (note_evs_.size ())
47         {
48           Music *n = note_evs_.back ();
49           note_evs_.pop_back ();
50           SCM pit = n->get_property ("pitch");
51
52           if (Pitch *pitp = unsmob_pitch (pit))
53             {
54               Audio_note *p = new Audio_note (*pitp, n->get_length (), - transposing);
55               Audio_element_info info (p, n);
56               announce_element (info);
57               notes_.push_back (p);
58             }
59         }
60       note_evs_.clear ();
61     }
62 }
63
64 void
65 Note_performer::stop_translation_timestep ()
66 {
67   // why don't grace notes show up here?
68   // --> grace notes effectively do not get delayed
69   Moment now = now_mom ();
70   for (vsize i = 0; i < notes_.size (); i++)
71     play_element (notes_[i]);
72   notes_.clear ();
73   note_evs_.clear ();
74 }
75
76 bool
77 Note_performer::try_music (Music *ev)
78 {
79   if (ev->is_mus_type ("note-event"))
80     {
81       note_evs_.push_back (ev);
82       return true;
83     }
84   else if (ev->is_mus_type ("busy-playing-event"))
85     return note_evs_.size ();
86
87   return false;
88 }
89
90 #include "translator.icc"
91
92 ADD_TRANSLATOR (Note_performer, "", "",
93                 "note-event "
94                 "busy-playing-event",
95                 "", "");
96
97 Note_performer::Note_performer ()
98 {
99 }