]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/score-performer.hh
* lily/smobs.cc (protect_smob): switch off fancy smob protection
[lilypond.git] / lily / include / score-performer.hh
1 /*
2   score-performer.hh -- declare Score_performer
3
4   (c) 1996--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
5   Jan Nieuwenhuizen <janneke@gnu.org>
6 */
7
8 #ifndef SCORE_PERFORMER_HH
9 #define SCORE_PERFORMER_HH
10
11 #include "moment.hh"
12 #include "performer-group.hh"
13
14 /**
15    Top level performer. Completely takes care of MIDI output
16 */
17 class Score_performer : public Performer_group
18 {
19 public:
20   VIRTUAL_COPY_CONSTRUCTOR (Translator_group, Score_performer);
21   ~Score_performer ();
22   Performance *performance_;
23
24   Score_performer ();
25 protected:
26   DECLARE_LISTENER (finish);
27   DECLARE_LISTENER (prepare);
28   DECLARE_LISTENER (one_time_step);
29
30   /* Engraver_group_engraver interface */
31   virtual void connect_to_context (Context *);
32   virtual void disconnect_from_context ();
33   virtual void initialize ();
34   virtual void announce_element (Audio_element_info);
35   virtual void play_element (Audio_element *p);
36   virtual void derived_mark () const;
37 private:
38   void header (Midi_stream &);
39
40   Audio_column *audio_column_;
41   bool skipping_;
42   Moment skip_start_mom_;
43   Moment offset_mom_;
44 };
45
46 #endif // SCORE_PERFORMER_HH