summaryrefslogtreecommitdiff
path: root/lily/metronome-engraver.cc
diff options
context:
space:
mode:
authorHan-Wen Nienhuys <hanwen@xs4all.nl>2006-08-22 10:23:27 +0000
committerHan-Wen Nienhuys <hanwen@xs4all.nl>2006-08-22 10:23:27 +0000
commit7dcae7597fae14ce5c4e2e7d50c2709d162b7332 (patch)
treeae3c01341183b90a82122a2a8be658594138aa47 /lily/metronome-engraver.cc
parent1069c441b69b7d48f0d90ec28a03d611b165509a (diff)
* python/convertrules.py (conv): warning on \tempo{}
* ly/performer-init.ly: set tempoWholesPerMinute. * ly/midi-init.ly: remove \midi * lily/tempo-performer.cc: look at tempoWholesPerMinute to set MIDI tempo. * lily/metronome-engraver.cc (process_music): use tempoUnitCount tempoUnitDuration for determining what to print. * lily/lyric-extender.cc: typo. * lily/parser.yy (output_def_body): disallow \tempo in \midi{} * lily/duration-scheme.cc (LY_DEFINE): ly:duration-length: new function. * THANKS: update sponsors. * ly/english.ly: quarter tone naming (thanks, Trevor Baca)
Diffstat (limited to 'lily/metronome-engraver.cc')
-rw-r--r--lily/metronome-engraver.cc65
1 files changed, 38 insertions, 27 deletions
diff --git a/lily/metronome-engraver.cc b/lily/metronome-engraver.cc
index 21eb711a24..40be81e221 100644
--- a/lily/metronome-engraver.cc
+++ b/lily/metronome-engraver.cc
@@ -11,9 +11,10 @@ using namespace std;
#include "engraver.hh"
-#include "note-column.hh"
+#include "item.hh"
#include "context.hh"
#include "grob-array.hh"
+#include "duration.hh"
/**
put stuff over or next to bars. Examples: bar numbers, marginal notes,
@@ -26,19 +27,28 @@ public:
protected:
Item *text_;
Grob *bar_line_;
- Music *mark_ev_;
- void create_items (Music *);
+ SCM last_duration_;
+ SCM last_count_;
+
protected:
+ virtual void derived_mark () const;
void stop_translation_timestep ();
- virtual bool try_music (Music *ev);
void process_music ();
};
Metronome_mark_engraver::Metronome_mark_engraver ()
{
text_ = 0;
- mark_ev_ = 0;
+ last_duration_ = SCM_EOL;
+ last_count_ = SCM_EOL;
+}
+
+void
+Metronome_mark_engraver::derived_mark () const
+{
+ scm_gc_mark (last_count_);
+ scm_gc_mark (last_duration_);
}
void
@@ -53,37 +63,31 @@ Metronome_mark_engraver::stop_translation_timestep ()
text_ = 0;
}
- mark_ev_ = 0;
-}
-
-void
-Metronome_mark_engraver::create_items (Music *rq)
-{
- if (text_)
- return;
-
- text_ = make_item ("MetronomeMark", rq->self_scm ());
-}
-
-bool
-Metronome_mark_engraver::try_music (Music *r)
-{
- mark_ev_ = r;
- return true;
}
void
Metronome_mark_engraver::process_music ()
{
- if (mark_ev_)
+ SCM count = get_property ("tempoUnitCount");
+ SCM duration = get_property ("tempoUnitDuration");
+
+ if (unsmob_duration (duration)
+ && scm_is_number (count)
+ && !(ly_is_equal (count, last_count_)
+ && ly_is_equal (duration, last_duration_)))
{
- create_items (mark_ev_);
+ text_ = make_item ("MetronomeMark", SCM_EOL);
SCM proc = get_property ("metronomeMarkFormatter");
- SCM result = scm_call_2 (proc, mark_ev_->self_scm (),
+ SCM result = scm_call_3 (proc,
+ duration,
+ count,
context ()->self_scm ());
text_->set_property ("text", result);
+
+ last_duration_ = duration;
+ last_count_ = count;
}
}
@@ -96,6 +100,13 @@ ADD_TRANSLATOR (Metronome_mark_engraver,
"The staves are taken from the @code{stavesFound} property, "
"which is maintained by @code{@ref{Staff_collecting_engraver}}. ",
/* create */ "MetronomeMark",
- /* accept */ "metronome-change-event",
- /* read */ "stavesFound metronomeMarkFormatter",
+ /* accept */ "",
+
+ /* read */
+ "stavesFound "
+ "metronomeMarkFormatter "
+ "tempoUnitDuration "
+ "tempoUnitCount "
+ ,
+
/* write */ "");