]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/auto-beam-engraver.cc
release: 1.3.73
[lilypond.git] / lily / auto-beam-engraver.cc
index 6e1e805b3d3da27d8d53d27bc274dcaac95b1d91..2b753524355b15c24cd883d0b44ad93bc4beea3f 100644 (file)
@@ -1,24 +1,71 @@
+
 /*   
   auto-beam-engraver.cc --  implement Auto_beam_engraver
   
   source file of the GNU LilyPond music typesetter
   
-  (c) 1999 Jan Nieuwenhuizen <janneke@gnu.org>
+  (c) 1999--2000 Jan Nieuwenhuizen <janneke@gnu.org>
   
  */
 #include "beaming.hh"
-#include "auto-beam-engraver.hh"
 #include "musical-request.hh"
-#include "bar.hh"
 #include "beam.hh"
-#include "rest.hh"
 #include "stem.hh"
 #include "debug.hh"
-#include "timing-engraver.hh"
 #include "engraver-group-engraver.hh"
+#include "bar.hh"
+#include "rest.hh"
+#include "engraver.hh"
+#include "item.hh"
+#include "spanner.hh"
+
+class Auto_beam_engraver : public Engraver
+{
+public:
+  Auto_beam_engraver ();
+  VIRTUAL_COPY_CONS (Translator);
+
+protected:
+  virtual bool do_try_music (Music*);
+  virtual void do_pre_move_processing ();
+  virtual void do_post_move_processing ();
+  virtual void do_removal_processing ();
+  virtual void acknowledge_element (Score_element_info);
+  virtual void do_process_music ();
+  virtual void process_acknowledged ();
+private:
+  void begin_beam ();
+  void consider_end_and_begin (Moment test_mom);
+  Spanner* create_beam_p ();
+  void end_beam ();
+  void junk_beam ();
+  bool same_grace_state_b (Score_element* e);
+  void typeset_beam ();
+
+  Moment shortest_mom_;
+  Spanner *finished_beam_p_;
+  Link_array<Item>* stem_l_arr_p_;
+  
+  Moment last_add_mom_;
+  Moment extend_mom_;
+  Moment beam_start_moment_;
+  Moment beam_start_location_;
+  
+  // We act as if beam were created, and start a grouping anyway.
+  Beaming_info_list*grouping_p_;  
+  Beaming_info_list*finished_grouping_p_;
+};
+
+
+
 
 ADD_THIS_TRANSLATOR (Auto_beam_engraver);
 
+
+/*
+  TODO: remove all references to Timing_engraver; should read properties.
+  
+ */
 Auto_beam_engraver::Auto_beam_engraver ()
 {
   stem_l_arr_p_ = 0;
@@ -26,15 +73,8 @@ Auto_beam_engraver::Auto_beam_engraver ()
   finished_beam_p_ = 0;
   finished_grouping_p_ = 0;
   grouping_p_ = 0;
-  timer_l_ =0;
 }
 
-void
-Auto_beam_engraver::do_creation_processing ()
-{
-  Translator * t = daddy_grav_l  ()->get_simple_translator ("Timing_engraver");
-  timer_l_ = dynamic_cast<Timing_engraver*> (t);
-}
 
 bool
 Auto_beam_engraver::do_try_music (Music*) 
@@ -43,7 +83,7 @@ Auto_beam_engraver::do_try_music (Music*)
 } 
 
 void
-Auto_beam_engraver::do_process_requests ()
+Auto_beam_engraver::do_process_music ()
 {
   consider_end_and_begin (shortest_mom_);
 }
@@ -51,12 +91,11 @@ Auto_beam_engraver::do_process_requests ()
 void
 Auto_beam_engraver::consider_end_and_begin (Moment test_mom)
 {
-  if (!timer_l_)
-      return;
-  
-  int num;
-  int den;
-  timer_l_->get_time_signature (&num, &den);
+  Moment one_beat = *unsmob_moment( get_property ("beatLength"));
+
+  int num = *unsmob_moment (get_property("measureLength")) / one_beat;
+  int den = one_beat.den_i ();
+
   
   String time_str = String ("time") + to_str (num) + "_" + to_str (den);
 
@@ -105,67 +144,67 @@ Auto_beam_engraver::consider_end_and_begin (Moment test_mom)
   /*
     first guess: end beam at end of beat
   */
-  SCM one (get_property ("beatLength", 0));
+  SCM one (get_property ("beatLength"));
 
   Moment end_mom;
-  if (SMOB_IS_TYPE_B(Moment, one))
-    end_mom = *SMOB_TO_TYPE (Moment, one);
+  if (unsmob_moment (one))
+    end_mom = *unsmob_moment (one);
 
   /*
     second guess: property generic time exception
   */
-  SCM begin = get_property (time_str + "beamAutoBegin", 0);
-  if (SMOB_IS_TYPE_B(Moment, begin))
-    begin_mom = * SMOB_TO_TYPE(Moment, begin);
+  SCM begin = get_property ((time_str + "beamAutoBegin").ch_C());
+  if (unsmob_moment (begin))
+    begin_mom = * unsmob_moment (begin);
 
-  SCM end = get_property (time_str + "beamAutoEnd", 0);
-  if (SMOB_IS_TYPE_B (Moment, end))
-    end_mom = * SMOB_TO_TYPE(Moment,end);
+  SCM end = get_property ((time_str + "beamAutoEnd").ch_C());
+  if (unsmob_moment (end))
+    end_mom = * unsmob_moment (end);
 
   /*
     third guess: property time exception, specific for duration type
   */
   if (type_str.length_i ())
     {
-      SCM end_mult = get_property (time_str + "beamAutoEnd" + type_str, 0);
-      if (SMOB_IS_TYPE_B (Moment, end_mult))
-       end_mom = * SMOB_TO_TYPE (Moment,end_mult);
+      SCM end_mult = get_property ((time_str + "beamAutoEnd" + type_str).ch_C());
+      if (unsmob_moment (end_mult))
+       end_mom = * unsmob_moment (end_mult);
 
-      SCM begin_mult = get_property (time_str + "beamAutoBegin" + type_str, 0);
-      if (SMOB_IS_TYPE_B (Moment, begin_mult))
-       begin_mom = * SMOB_TO_TYPE (Moment,begin_mult);
+      SCM begin_mult = get_property ((time_str + "beamAutoBegin" + type_str).ch_C());
+      if (unsmob_moment (begin_mult))
+       begin_mom = * unsmob_moment (begin_mult);
     }
 
   /*
     fourth guess [user override]: property plain generic
   */
-  begin = get_property ("beamAutoBegin", 0);
-  if (SMOB_IS_TYPE_B(Moment, begin))
-    begin_mom = * SMOB_TO_TYPE(Moment, begin);
+  begin = get_property ("beamAutoBegin");
+  if (unsmob_moment (begin))
+    begin_mom = * unsmob_moment (begin);
 
 
   
-  end = get_property ("beamAutoEnd", 0);
-  if (SMOB_IS_TYPE_B (Moment, end))
-    end_mom = * SMOB_TO_TYPE (Moment,end);
+  end = get_property ("beamAutoEnd");
+  if (unsmob_moment (end))
+    end_mom = * unsmob_moment (end);
 
   /*
     fifth guess [user override]: property plain, specific for duration type
   */
   if (type_str.length_i ())
     {
-      SCM end_mult = get_property (String ("beamAutoEnd") + type_str, 0);
-      if (SMOB_IS_TYPE_B (Moment, end_mult))
-       end_mom = * SMOB_TO_TYPE (Moment,end_mult);
+      SCM end_mult = get_property ((String ("beamAutoEnd") + type_str).ch_C());
+      if (unsmob_moment (end_mult))
+       end_mom = * unsmob_moment (end_mult);
 
-      SCM begin_mult = get_property (String ("beamAutoBegin") + type_str, 0);
-      if (SMOB_IS_TYPE_B (Moment, begin_mult))
-       begin_mom = * SMOB_TO_TYPE (Moment,begin_mult);
+      SCM begin_mult = get_property ((String ("beamAutoBegin") + type_str).ch_C());
+      if (unsmob_moment (begin_mult))
+       begin_mom = * unsmob_moment (begin_mult);
     }
 
   Rational r;
   if (end_mom)
-    r = timer_l_->measure_position ().mod_rat (end_mom);
+    r = unsmob_moment (get_property ("measurePosition"))->mod_rat (end_mom);
   else
     r = Moment (1);
 
@@ -175,12 +214,12 @@ Auto_beam_engraver::consider_end_and_begin (Moment test_mom)
   /*
     Allow already started autobeam to end
    */
-  SCM on = get_property ("noAutoBeaming", 0);
-  if (gh_boolean_p (on) && gh_scm2bool (on))
+  SCM on = get_property ("noAutoBeaming");
+  if (to_boolean (on))
     return;
 
   if (begin_mom)
-    r = timer_l_->measure_position ().mod_rat (begin_mom);
+    r =     unsmob_moment (get_property ("measurePosition"))->mod_rat (begin_mom);
   if (!stem_l_arr_p_ && (!begin_mom || !r))
     begin_beam ();
 }
@@ -190,31 +229,32 @@ void
 Auto_beam_engraver::begin_beam ()
 {
   assert (!stem_l_arr_p_);
-  stem_l_arr_p_ = new Array<Stem*>;
+  stem_l_arr_p_ = new Link_array<Item>;
   assert (!grouping_p_);
   grouping_p_ = new Beaming_info_list;
   beam_start_moment_ = now_mom ();
-  beam_start_location_ = timer_l_->measure_position ();
+  beam_start_location_ = *unsmob_moment (get_property ("measurePosition"));
 }
 
-Beam*
+Spanner*
 Auto_beam_engraver::create_beam_p ()
 {
-  Beam* beam_p = new Beam;
+  Spanner* beam_p = new Spanner (get_property ("basicBeamProperties"));
+  Beam::set_interface (beam_p);
 
   for (int i = 0; i < stem_l_arr_p_->size (); i++)
     {
       /*
        watch out for stem tremolos and abbreviation beams
        */
-      if ((*stem_l_arr_p_)[i]->beam_l ())
+      if (Stem::beam_l ((*stem_l_arr_p_)[i]))
        {
          return 0;
        }
-      beam_p->add_stem ((*stem_l_arr_p_)[i]);
+      Beam::add_stem (beam_p,(*stem_l_arr_p_)[i]);
     }
   
-  announce_element (Score_element_info (beam_p, 0));
+  announce_element (beam_p, 0);
 
   return beam_p;
 }
@@ -244,7 +284,7 @@ Auto_beam_engraver::typeset_beam ()
   if (finished_beam_p_)
     {
       finished_grouping_p_->beamify ();
-      finished_beam_p_->set_beaming (finished_grouping_p_);
+      Beam::set_beaming (finished_beam_p_, finished_grouping_p_);
       typeset_element (finished_beam_p_);
       finished_beam_p_ = 0;
     
@@ -289,34 +329,36 @@ bool
 Auto_beam_engraver::same_grace_state_b (Score_element* e)
 {
   bool gr = e->get_elt_property ("grace") == SCM_BOOL_T;
-  SCM wg =get_property ("weAreGraceContext",0);
-  return (gh_boolean_p (wg) && gh_scm2bool (wg)) == gr;
+  SCM wg =get_property ("weAreGraceContext");
+  return (to_boolean (wg)) == gr;
 }
 
 void
 Auto_beam_engraver::acknowledge_element (Score_element_info info)
 {
-  if (!same_grace_state_b (info.elem_l_) || !timer_l_)
+  if (!same_grace_state_b (info.elem_l_))
     return;
   
   if (stem_l_arr_p_)
     {
-      if (Beam *b = dynamic_cast<Beam *> (info.elem_l_))
+      if (Beam::has_interface (info.elem_l_))
        {
          end_beam ();
        }
-      else if (Bar *b = dynamic_cast<Bar *> (info.elem_l_))
+      else if (Bar::has_interface (info.elem_l_))
        {
          end_beam ();
        }
-      else if (Rest* rest_l = dynamic_cast<Rest *> (info.elem_l_))
+      else if (Rest::has_interface (info.elem_l_))
        {
          end_beam ();
        }
     }
   
-  if (Stem* stem_l = dynamic_cast<Stem *> (info.elem_l_))
+  if (Stem::has_interface (info.elem_l_))
     {
+      Item* stem_l = dynamic_cast<Item *> (info.elem_l_);
+                                      
       Rhythmic_req *rhythmic_req = dynamic_cast <Rhythmic_req *> (info.req_l_);
       if (!rhythmic_req)
        {
@@ -327,14 +369,14 @@ Auto_beam_engraver::acknowledge_element (Score_element_info info)
       /*
        Don't (start) auto-beam over empty stems; skips or rests
        */
-      if (!stem_l->head_l_arr_.size ())
+      if (!Stem::heads_i (stem_l))
        {
          if (stem_l_arr_p_)
            end_beam ();
          return;
        }
 
-      if (stem_l->beam_l ())
+      if (Stem::beam_l (stem_l))
        {
          if (stem_l_arr_p_)
            junk_beam ();