]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/time-signature-performer.cc
2003 -> 2004
[lilypond.git] / lily / time-signature-performer.cc
index 709087e42b416b475487d10c86cff9e1b21cab7b..efab395ee2e12aa5961118af8711b436a9392abc 100644 (file)
@@ -3,19 +3,36 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--2000 Jan Nieuwenhuizen <janneke@gnu.org>
+  (c) 1997--2004 Jan Nieuwenhuizen <janneke@gnu.org>
 */
 
-#include "time-signature-performer.hh"
-#include "command-request.hh"
 #include "audio-item.hh"
+#include "lily-proto.hh"
+#include "performer.hh"
+
+
+class Time_signature_performer : public Performer
+{
+public:
+  TRANSLATOR_DECLARATIONS(Time_signature_performer);
+  ~Time_signature_performer ();
+
+protected:
+
+  virtual void stop_translation_timestep ();
+  virtual void create_audio_elements ();
+
+  SCM prev_fraction_;
+private:
+
+  Audio_time_signature* audio_;
+};
 
-ADD_THIS_TRANSLATOR (Time_signature_performer);
 
 Time_signature_performer::Time_signature_performer ()
 {
-  time_signature_req_l_ = 0;
-  audio_p_ = 0;
+  prev_fraction_ = SCM_BOOL_F;
+  audio_ = 0;
 }
 
 Time_signature_performer::~Time_signature_performer ()
@@ -24,40 +41,30 @@ Time_signature_performer::~Time_signature_performer ()
 
 
 void
-Time_signature_performer::do_process_music ()
+Time_signature_performer::create_audio_elements ()
 {
-  if (time_signature_req_l_)
+  SCM fr = get_property ("timeSignatureFraction");
+  if (gh_pair_p (fr) && !gh_equal_p (fr, prev_fraction_))
     {
-      audio_p_ = new Audio_time_signature (time_signature_req_l_->beats_i_, time_signature_req_l_->one_beat_i_);
-      Audio_element_info info (audio_p_, time_signature_req_l_);
+      prev_fraction_ = fr;
+      int b = gh_scm2int (ly_car (fr));
+      int o = gh_scm2int (ly_cdr (fr));
+      
+      audio_ = new Audio_time_signature (b,o);
+      Audio_element_info info (audio_, 0);
       announce_element (info);
-      time_signature_req_l_ = 0;
-    }
-}
 
-void
-Time_signature_performer::do_pre_move_processing ()
-{
-  if (audio_p_)
-    {
-      play_element (audio_p_);
-      audio_p_ = 0;
     }
 }
 
-bool
-Time_signature_performer::do_try_music (Music* req_l)
+void
+Time_signature_performer::stop_translation_timestep ()
 {
-  if (time_signature_req_l_)
-    return false;
-
-  if (Time_signature_change_req *t =
-      dynamic_cast <Time_signature_change_req *> (req_l))
+  if (audio_)
     {
-      time_signature_req_l_ = t;
-      return true;
+      play_element (audio_);
+      audio_ = 0;
     }
-
-  return false;
 }
 
+ENTER_DESCRIPTION(Time_signature_performer,"","","","","","");