]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/score-performer.hh
* lily/global-context-scheme.cc: Separated ly:run-translator into
[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 int get_tempo () const;
36   virtual void play_element (Audio_element *p);
37   virtual void derived_mark () const;
38 private:
39   void header (Midi_stream &);
40
41   Audio_column *audio_column_;
42   bool skipping_;
43   Moment skip_start_mom_;
44   Moment offset_mom_;
45 };
46
47 #endif // SCORE_PERFORMER_HH