]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/time-signature-engraver.cc
Run `make grand-replace'.
[lilypond.git] / lily / time-signature-engraver.cc
index 54c6278e97c85bff7c068a43254fb0df081c7eba..ec4ff28efc58ea7e8bc2dcb216b7d21b233fc08a 100644 (file)
 /*
-  time_signature-reg.cc -- implement Time_signature_engraver
+  time-signature-engraver.cc -- implement Time_signature_engraver
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1997--2008 Han-Wen Nienhuys <hanwen@xs4all.nl>
 */
 
-#include "time-signature-engraver.hh"
-#include "time-signature.hh"
-#include "command-request.hh"
-#include "timing-engraver.hh"
 #include "engraver-group.hh"
 
-Time_signature_engraver::Time_signature_engraver()
-{ 
-  time_signature_p_ =0;
-}
+#include "item.hh"
+#include "international.hh"
+#include "misc.hh"
+#include "time-signature.hh"
+#include "warn.hh"
 
-void
-Time_signature_engraver::do_process_requests()
+/**
+   generate time_signatures.
+*/
+class Time_signature_engraver : public Engraver
 {
-  Translator * result =
-    daddy_grav_l()->get_simple_translator ("Timing_engraver"); // ugh
+  Item *time_signature_;
+  SCM last_time_fraction_;
 
-  if (!result)
-    {
-      warning (_ ("lost in time") + ": " + _ ("can't find") 
-        + " Timing_translator");
-      return ;
-    }
-  
-  Timing_engraver * timing_grav_l= dynamic_cast<Timing_engraver *> (result);
-  
-  Time_signature_change_req *req = timing_grav_l->time_signature_req_l();
-  if (req)
-    {
-      Array<int> args;
-      args.push (req->beats_i_);
-      args.push (req->one_beat_i_);
-       
-      time_signature_p_ = new Time_signature ();
-      time_signature_p_->args_ = args;
-      time_signature_p_->set_elt_property (break_priority_scm_sym, gh_int2scm (1)); // 1
-    }
+protected:
+  virtual void derived_mark () const;
+  void stop_translation_timestep ();
+  void process_music ();
+public:
+  TRANSLATOR_DECLARATIONS (Time_signature_engraver);
+};
+
+void
+Time_signature_engraver::derived_mark () const
+{
+  scm_gc_mark (last_time_fraction_);
+}
 
-  
-  if (time_signature_p_)
-    announce_element (Score_element_info (time_signature_p_, req));
+Time_signature_engraver::Time_signature_engraver ()
+{
+  time_signature_ = 0;
+  last_time_fraction_ = SCM_BOOL_F;
 }
 
 void
-Time_signature_engraver::do_pre_move_processing()
+Time_signature_engraver::process_music ()
 {
-  if (time_signature_p_) 
+  /*
+    not rigorously safe, since the value might get GC'd and
+    reallocated in the same spot */
+  SCM fr = get_property ("timeSignatureFraction");
+  if (!time_signature_
+      && last_time_fraction_ != fr
+      && scm_is_pair (fr))
     {
-      Scalar sigstyle = get_property ("timeSignatureStyle", 0);
-      if (sigstyle.length_i ())
+      int den = scm_to_int (scm_cdr (fr));
+      if (den != (1 << intlog2 (den)))
        {
-         time_signature_p_->time_sig_type_str_ = sigstyle;
+         /*
+           Todo: should make typecheck?
+
+           OTOH, Tristan Keuris writes 8/20 in his Intermezzi.
+         */
+         warning (_f ("strange time signature found: %d/%d",
+                      int (scm_to_int (scm_car (fr))),
+                      den));
        }
 
-      typeset_element (time_signature_p_);
-      time_signature_p_ =0;
+      time_signature_ = make_item ("TimeSignature", SCM_EOL);
+      time_signature_->set_property ("fraction", fr);
+
+      if (last_time_fraction_ == SCM_BOOL_F)
+       time_signature_->set_property ("break-visibility",
+                                      get_property ("implicitTimeSignatureVisibility"));
+      
+      last_time_fraction_ = fr;
     }
 }
 
+void
+Time_signature_engraver::stop_translation_timestep ()
+{
+  time_signature_ = 0;
+}
+
+#include "translator.icc"
+
+ADD_TRANSLATOR (Time_signature_engraver,
+               /* doc */
+               "Create a @ref{TimeSignature} whenever"
+               " @code{timeSignatureFraction} changes.",
+
+               /* create */
+               "TimeSignature ",
+               
+               /* read */
+               "implicitTimeSignatureVisibility "
+               "timeSignatureFraction ",
 
-ADD_THIS_TRANSLATOR(Time_signature_engraver);
+               /* write */
+               ""
+               );