]> git.donarmstrong.com Git - lilypond.git/blob - lily/drum-note-performer.cc
e52e0a7ad9956c48b0bbfac2cb837974b462d15c
[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   virtual void create_audio_elements ();
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::create_audio_elements ()
38 {
39   SCM tab = 0;
40   if (!tab) tab = get_property ("drumPitchTable");
41
42   while (note_evs_.size ())
43     {
44       Music *n = note_evs_.pop ();
45       SCM sym = n->get_property ("drum-type");
46       SCM defn = SCM_EOL;
47
48       if (scm_is_symbol (sym)
49           && (scm_hash_table_p (tab) == SCM_BOOL_T))
50         defn = scm_hashq_ref (tab, sym, SCM_EOL);
51
52       if (Pitch *pit = unsmob_pitch (defn))
53         {
54           Audio_note *p = new Audio_note (*pit, n->get_length (), 0);
55           Audio_element_info info (p, n);
56           announce_element (info);
57           notes_.push (p);
58         }
59     }
60
61   note_evs_.clear ();
62 }
63
64 void
65 Drum_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 (int i = 0; i < notes_.size (); i++)
71     {
72       play_element (notes_[i]);
73     }
74   notes_.clear ();
75   note_evs_.clear ();
76 }
77
78 bool
79 Drum_note_performer::try_music (Music *ev)
80 {
81   if (ev->is_mus_type ("note-event"))
82     {
83       note_evs_.push (ev);
84       return true;
85     }
86   else if (ev->is_mus_type ("busy-playing-event"))
87     return note_evs_.size ();
88
89   return false;
90 }
91
92 #include "translator.icc"
93
94 ADD_TRANSLATOR (Drum_note_performer,
95                 "Play drum notes.", "",
96                 "note-event busy-playing-event", "", "");