]> git.donarmstrong.com Git - lilypond.git/blob - lily/drum-note-performer.cc
33ea18e1eea53fa50d9dab593d169b5046af69bd
[lilypond.git] / lily / drum-note-performer.cc
1 /*
2   note-performer.cc -- implement Drum_note_performer
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1996--2005 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 "pitch.hh"
15 #include "music.hh"
16
17 class Drum_note_performer : public Performer
18 {
19 public:
20   TRANSLATOR_DECLARATIONS (Drum_note_performer);
21
22 protected:
23   virtual bool try_music (Music *ev);
24   void stop_translation_timestep ();
25   void process_music ();
26
27 private:
28   Link_array<Music> note_evs_;
29   Link_array<Audio_note> notes_;
30 };
31
32 Drum_note_performer::Drum_note_performer ()
33 {
34 }
35
36 void
37 Drum_note_performer::process_music ()
38 {
39   SCM tab = get_property ("drumPitchTable");
40
41   while (note_evs_.size ())
42     {
43       Music *n = note_evs_.pop ();
44       SCM sym = n->get_property ("drum-type");
45       SCM defn = SCM_EOL;
46
47       if (scm_is_symbol (sym)
48           && (scm_hash_table_p (tab) == SCM_BOOL_T))
49         defn = scm_hashq_ref (tab, sym, SCM_EOL);
50
51       if (Pitch *pit = unsmob_pitch (defn))
52         {
53           Audio_note *p = new Audio_note (*pit, n->get_length (), 0);
54           Audio_element_info info (p, n);
55           announce_element (info);
56           notes_.push (p);
57         }
58     }
59
60   note_evs_.clear ();
61 }
62
63 void
64 Drum_note_performer::stop_translation_timestep ()
65 {
66   // why don't grace notes show up here?
67   // --> grace notes effectively do not get delayed
68   Moment now = now_mom ();
69   for (int i = 0; i < notes_.size (); i++)
70     play_element (notes_[i]);
71   notes_.clear ();
72   note_evs_.clear ();
73 }
74
75 bool
76 Drum_note_performer::try_music (Music *ev)
77 {
78   if (ev->is_mus_type ("note-event"))
79     {
80       note_evs_.push (ev);
81       return true;
82     }
83   else if (ev->is_mus_type ("busy-playing-event"))
84     return note_evs_.size ();
85
86   return false;
87 }
88
89 #include "translator.icc"
90
91 ADD_TRANSLATOR (Drum_note_performer,
92                 "Play drum notes.", "",
93                 "note-event busy-playing-event", "", "");