Nitpick: ly:spanner-bound grob name slur -> spanner.
[lilypond.git] / lily / lyric-performer.cc
blobb318ab90fe3c651e53feb2a5da7e362d739a92f6
1 /*
2 lyric-performer.cc -- implement Lyric_performer
4 source file of the GNU LilyPond music typesetter
6 (c) 1997--2009 Jan Nieuwenhuizen <janneke@gnu.org>
7 */
9 #include "audio-item.hh"
10 #include "performer.hh"
11 #include "stream-event.hh"
12 #include "translator.icc"
14 class Lyric_performer : public Performer
16 public:
17 TRANSLATOR_DECLARATIONS (Lyric_performer);
18 protected:
20 void stop_translation_timestep ();
21 void process_music ();
22 DECLARE_TRANSLATOR_LISTENER (lyric);
23 private:
24 vector<Stream_event *> events_;
25 Audio_text *audio_;
28 Lyric_performer::Lyric_performer ()
30 audio_ = 0;
33 void
34 Lyric_performer::process_music ()
36 // FIXME: won't work with fancy lyrics
37 if (events_.size ()
38 && scm_is_string (events_[0]->get_property ("text"))
39 && ly_scm2string (events_[0]->get_property ("text")).length ())
41 audio_ = new Audio_text (Audio_text::LYRIC,
42 ly_scm2string (events_[0]->get_property ("text")));
43 Audio_element_info info (audio_, events_[0]);
44 announce_element (info);
46 events_.clear ();
49 void
50 Lyric_performer::stop_translation_timestep ()
52 if (audio_)
54 audio_ = 0;
56 events_.clear ();
59 IMPLEMENT_TRANSLATOR_LISTENER (Lyric_performer, lyric);
60 void
61 Lyric_performer::listen_lyric (Stream_event *event)
63 events_.push_back (event);
66 ADD_TRANSLATOR (Lyric_performer,
67 /* doc */
68 "",
70 /* create */
71 "",
73 /* read */
74 "",
76 /* write */