diff options
author | Han-Wen Nienhuys <hanwen@xs4all.nl> | 2006-08-02 21:41:16 +0000 |
---|---|---|
committer | Han-Wen Nienhuys <hanwen@xs4all.nl> | 2006-08-02 21:41:16 +0000 |
commit | c4c0ba811cd526f047de3f4d3c77abcc32a3e076 (patch) | |
tree | b2af45472c4e2a0cabb309d37b15a99de8c595c4 /lily/chord-tremolo-engraver.cc | |
parent | 013927ef96837fc7fddb62d6313e8f58be519c37 (diff) |
*** empty log message ***
Diffstat (limited to 'lily/chord-tremolo-engraver.cc')
-rw-r--r-- | lily/chord-tremolo-engraver.cc | 48 |
1 files changed, 22 insertions, 26 deletions
diff --git a/lily/chord-tremolo-engraver.cc b/lily/chord-tremolo-engraver.cc index 60800064c9..b0f17352ba 100644 --- a/lily/chord-tremolo-engraver.cc +++ b/lily/chord-tremolo-engraver.cc @@ -7,18 +7,18 @@ Erik Sandberg <mandolaerik@gmail.com> */ -#include "math.h" // ceil - #include "beam.hh" #include "engraver-group.hh" #include "international.hh" #include "item.hh" +#include "math.h" // ceil #include "misc.hh" #include "repeated-music.hh" #include "rhythmic-head.hh" #include "spanner.hh" #include "stem-tremolo.hh" #include "stem.hh" +#include "stream-event.hh" #include "warn.hh" #include "translator.icc" @@ -41,7 +41,7 @@ class Chord_tremolo_engraver : public Engraver { TRANSLATOR_DECLARATIONS (Chord_tremolo_engraver); protected: - Music *repeat_; + Stream_event *repeat_; int flags_; // number of beams for short tremolos @@ -52,8 +52,8 @@ protected: Spanner *beam_; protected: virtual void finalize (); - virtual bool try_music (Music *); void process_music (); + DECLARE_TRANSLATOR_LISTENER (tremolo_span); DECLARE_ACKNOWLEDGER (stem); }; @@ -66,31 +66,27 @@ Chord_tremolo_engraver::Chord_tremolo_engraver () beam_dir_ = CENTER; } -bool -Chord_tremolo_engraver::try_music (Music *m) +IMPLEMENT_TRANSLATOR_LISTENER (Chord_tremolo_engraver, tremolo_span); +void +Chord_tremolo_engraver::listen_tremolo_span (Stream_event *ev) { - if (m->is_mus_type ("tremolo-span-event")) + Direction span_dir = to_dir (ev->get_property ("span-direction")); + if (span_dir == START) { - Direction span_dir = to_dir (m->get_property ("span-direction")); - if (span_dir == START) - { - repeat_ = m; - int type = scm_to_int (m->get_property ("tremolo-type")); - /* e.g. 1 for type 8, 2 for type 16 */ - flags_ = intlog2 (type) - 2; - expected_beam_count_ = scm_to_int (m->get_property ("expected-beam-count")); - beam_dir_ = RIGHT; - } - if (span_dir == STOP) - { - repeat_ = 0; - beam_ = 0; - expected_beam_count_ = 0; - beam_dir_ = CENTER; - } - return true; + repeat_ = ev; + int type = scm_to_int (ev->get_property ("tremolo-type")); + /* e.g. 1 for type 8, 2 for type 16 */ + flags_ = intlog2 (type) - 2; + expected_beam_count_ = scm_to_int (ev->get_property ("expected-beam-count")); + beam_dir_ = RIGHT; + } + else if (span_dir == STOP) + { + repeat_ = 0; + beam_ = 0; + expected_beam_count_ = 0; + beam_dir_ = CENTER; } - return false; } void |