X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Flyric-performer.cc;h=0d14a737d2b6bfa80cd3247a19f9f93338479187;hb=a8f3bf6456d8d8abf5998216c528e873db1064b3;hp=5ae3366e681714ea919cb5496bb5eea216ad2def;hpb=f2c2c5c43858f323e4708f83fd97e0f38017c275;p=lilypond.git diff --git a/lily/lyric-performer.cc b/lily/lyric-performer.cc index 5ae3366e68..0d14a737d2 100644 --- a/lily/lyric-performer.cc +++ b/lily/lyric-performer.cc @@ -3,12 +3,13 @@ source file of the GNU LilyPond music typesetter - (c) 1997--2005 Jan Nieuwenhuizen + (c) 1997--2007 Jan Nieuwenhuizen */ #include "audio-item.hh" #include "performer.hh" -#include "music.hh" +#include "stream-event.hh" +#include "translator.icc" class Lyric_performer : public Performer { @@ -16,12 +17,11 @@ public: TRANSLATOR_DECLARATIONS (Lyric_performer); protected: - virtual bool try_music (Music *event); - PRECOMPUTED_VIRTUAL void stop_translation_timestep (); - virtual void create_audio_elements (); - + void stop_translation_timestep (); + void process_music (); + DECLARE_TRANSLATOR_LISTENER (lyric); private: - Link_array events_; + vector events_; Audio_text *audio_; }; @@ -31,7 +31,7 @@ Lyric_performer::Lyric_performer () } void -Lyric_performer::create_audio_elements () +Lyric_performer::process_music () { // FIXME: won't work with fancy lyrics if (events_.size () @@ -51,24 +51,17 @@ Lyric_performer::stop_translation_timestep () { if (audio_) { - play_element (audio_); audio_ = 0; } events_.clear (); } -bool -Lyric_performer::try_music (Music *event) +IMPLEMENT_TRANSLATOR_LISTENER (Lyric_performer, lyric); +void +Lyric_performer::listen_lyric (Stream_event *event) { - if (event->is_mus_type ("lyric-event")) - { - events_.push (event); - return true; - } - return false; + events_.push_back (event); } -#include "translator.icc" - -ADD_TRANSLATOR (Lyric_performer, "", "", "lyric-event", - "", ""); +ADD_TRANSLATOR (Lyric_performer, "", "", + "", "");