]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/auto-beam-engraver.cc
release: 1.1.56
[lilypond.git] / lily / auto-beam-engraver.cc
index c38fd2c5313edc1d1e1409cdb33867e11c67e9fe..77094004d368cc2bb6b450dd0eb620b541afb910 100644 (file)
@@ -6,46 +6,74 @@
   (c) 1999 Jan Nieuwenhuizen <janneke@gnu.org>
   
  */
-
+#include "new-beaming.hh"
 #include "auto-beam-engraver.hh"
 #include "musical-request.hh"
 #include "bar.hh"
 #include "beam.hh"
-#include "rhythmic-grouping.hh"
 #include "rest.hh"
 #include "stem.hh"
 #include "debug.hh"
-#include "time-description.hh"
+#include "timing-engraver.hh"
+#include "engraver-group-engraver.hh"
 
 ADD_THIS_TRANSLATOR (Auto_beam_engraver);
 
 Auto_beam_engraver::Auto_beam_engraver ()
 {
   stem_l_arr_p_ = 0;
-  shortest_mom_ = 1;
+  shortest_mom_ = Moment (1, 8);
   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* m) 
+{
+  /*
+    Mag dit?  Nu word-i toch maar geswallowed, en
+    komt er dus ook geen announce...
+   */
+  if (Skip_req* s = dynamic_cast <Skip_req*> (m))
+    {
+      if (stem_l_arr_p_)
+       end_beam ();
+      return true;
+    }
+  return false;
+} 
+
 void
 Auto_beam_engraver::do_process_requests ()
 {
-  consider_end_and_begin ();
+  consider_end_and_begin (shortest_mom_);
 }
 
 void
-Auto_beam_engraver::consider_end_and_begin ()
+Auto_beam_engraver::consider_end_and_begin (Moment test_mom)
 {
-  Time_description const *time = get_staff_info().time_C_;
+  if (!timer_l_)
+      return;
+  
+  Time_description const *time = &timer_l_->time_;
   int num = time->whole_per_measure_ / time->one_beat_;
   int den = time->one_beat_.den_i ();
   String time_str = String ("time") + to_str (num) + "_" + to_str (den);
+
   String type_str;
-  if (shortest_mom_.num () != 1)
-    type_str = to_str (shortest_mom_.num ());
-  if (shortest_mom_.den () != 1)
-    type_str = type_str + "_" + to_str (shortest_mom_.den ());
+  if (test_mom.num () != 1)
+    type_str = to_str (test_mom.num ());
+  if (test_mom.den () != 1)
+    type_str = type_str + "_" + to_str (test_mom.den ());
 
   /*
     Determine end moment for auto beaming (and begin, mostly 0==anywhere) 
@@ -155,11 +183,12 @@ Auto_beam_engraver::consider_end_and_begin ()
 void
 Auto_beam_engraver::begin_beam ()
 {
-  //  DOUT << String ("starting autobeam at: ") + now_mom ().str () + "\n";
   assert (!stem_l_arr_p_);
   stem_l_arr_p_ = new Array<Stem*>;
   assert (!grouping_p_);
-  grouping_p_ = new Rhythmic_grouping;
+  grouping_p_ = new Beaming_info_list;
+  beam_start_moment_ = now_mom ();
+  beam_start_location_ = timer_l_->time_.whole_in_measure_;
 }
 
 Beam*
@@ -186,10 +215,8 @@ Auto_beam_engraver::create_beam_p ()
 void
 Auto_beam_engraver::end_beam ()
 {
-  DOUT << String ("ending autobeam at: ") + now_mom ().str () + "\n";
   if (stem_l_arr_p_->size () < 2)
     {
-      DOUT << "junking autombeam: less than two stems\n";
       junk_beam ();
     }
   else
@@ -199,7 +226,7 @@ Auto_beam_engraver::end_beam ()
       delete stem_l_arr_p_;
       stem_l_arr_p_ = 0;
       grouping_p_ = 0;
-      shortest_mom_ = 1;
+      shortest_mom_ = Moment (1, 8);
     }
 }
  
@@ -208,9 +235,8 @@ Auto_beam_engraver::typeset_beam ()
 {
   if (finished_beam_p_)
     {
-      Rhythmic_grouping const * rg_C = get_staff_info().rhythmic_C_;
-      rg_C->extend (finished_grouping_p_->interval());
-      finished_beam_p_->set_grouping (*rg_C, *finished_grouping_p_);
+      finished_grouping_p_->beamify ();
+      finished_beam_p_->set_beaming (finished_grouping_p_);
       typeset_element (finished_beam_p_);
       finished_beam_p_ = 0;
     
@@ -233,96 +259,90 @@ Auto_beam_engraver::do_pre_move_processing ()
 void
 Auto_beam_engraver::do_removal_processing ()
 {
+  if (stem_l_arr_p_)
+    end_beam ();
   typeset_beam ();
-  if (stem_l_arr_p_ && stem_l_arr_p_->size ())
-    {
-      DOUT << "Unfinished beam\n";
-      junk_beam ();
-    }
+}
+
+bool
+Auto_beam_engraver::same_grace_state_b (Score_element* e)
+{
+  bool gr = (e->get_elt_property (grace_scm_sym) != SCM_BOOL_F) ;
+
+  return gr == get_property ("weAreGraceContext",0).to_bool ();
 }
 
 void
 Auto_beam_engraver::acknowledge_element (Score_element_info info)
 {
-  if (Beam *b = dynamic_cast<Beam *> (info.elem_l_))
-    {
-      if (stem_l_arr_p_)
-       {
-         DOUT << "junking autobeam: beam encountered\n";
-         junk_beam ();
-       }
-    }
-  if (Bar *b = dynamic_cast<Bar *> (info.elem_l_))
-    {
-      if (stem_l_arr_p_)
-       {
-         DOUT << "junking autobeam: bar encountered\n";
-         junk_beam ();
-       }
-    }
-
+  if (!same_grace_state_b (info.elem_l_) || !timer_l_)
+    return;
+  
   if (stem_l_arr_p_)
     {
-      Rhythmic_req *rhythmic_req = dynamic_cast <Rhythmic_req *> (info.req_l_);
-      if (!rhythmic_req)
-       return;
-
-      if (dynamic_cast<Rest *> (info.elem_l_))
-       {
-         DOUT << "junking autobeam: rest encountered\n";
-         end_beam ();
-         return;
-       }
-
-      Stem* stem_l = dynamic_cast<Stem *> (info.elem_l_);
-      if (!stem_l)
-       return;
-
-      if (stem_l->beam_l_)
+      if (Beam *b = dynamic_cast<Beam *> (info.elem_l_))
        {
-         DOUT << "junking autobeam: beamed stem encountered\n";
          junk_beam ();
-         return;
        }
-       
-
-      /*
-       now that we have last_add_mom_, perhaps we can (should) do away
-       with these individual junk_beams
-       */
-      if (rhythmic_req->duration_.durlog_i_ <= 2)
+      else if (Bar *b = dynamic_cast<Bar *> (info.elem_l_))
        {
-         DOUT << "ending autobeam: stem doesn't fit in beam\n";
-         end_beam ();
-         return;
+         junk_beam ();
        }
-
-      Moment start = get_staff_info().time_C_->whole_in_measure_;
-      if (!grouping_p_->child_fit_b (start))
+      else if (Rest* rest_l = dynamic_cast<Rest *> (info.elem_l_))
        {
-         DOUT << "ending autobeam: stem doesn't fit in group\n";
          end_beam ();
        }
-      else
+      else if (Stem* stem_l = dynamic_cast<Stem *> (info.elem_l_))
        {
-         /*
-           if shortest duration would change
-           reconsider ending/starting beam first.
-          */
-         Moment mom = rhythmic_req->duration_.length_mom ();
-         if (mom < shortest_mom_)
+         Rhythmic_req *rhythmic_req = dynamic_cast <Rhythmic_req *> (info.req_l_);
+         if (!rhythmic_req)
            {
-             shortest_mom_ = mom;
-             consider_end_and_begin ();
+             programming_error ("Stem must have rhythmic structure");
+             return;
            }
-         grouping_p_->add_child (start, rhythmic_req->length_mom ());
-
-         //stem_l->flag_i_ = rhythmic_req->duration_.durlog_i_;
          
-         stem_l_arr_p_->push (stem_l);
-         Moment now = now_mom ();
-         last_add_mom_ = now;
-         extend_mom_ = extend_mom_ >? now + rhythmic_req->length_mom ();
+         if (stem_l->beam_l_)
+           {
+             junk_beam ();
+             return ;
+           }
+             
+             /*
+               now that we have last_add_mom_, perhaps we can (should) do away
+               with these individual junk_beams
+             */
+
+         int durlog  =rhythmic_req->duration_.durlog_i_;
+         if (durlog <= 2)
+           end_beam ();
+         else 
+           {
+             /*
+               if shortest duration would change
+               reconsider ending/starting beam first.
+             */
+             Moment mom = rhythmic_req->duration_.length_mom ();
+             consider_end_and_begin (mom);
+             if (!stem_l_arr_p_)
+               return;
+             if (mom < shortest_mom_)
+               {
+                 if (stem_l_arr_p_->size ())
+                   {
+                     shortest_mom_ = mom;
+                     consider_end_and_begin (shortest_mom_);
+                     if (!stem_l_arr_p_)
+                       return;
+                   }
+                 shortest_mom_ = mom;
+               }
+             Moment now = now_mom ();
+
+             grouping_p_->add_stem (now - beam_start_moment_ + beam_start_location_, durlog - 2);
+             stem_l_arr_p_->push (stem_l);
+             last_add_mom_ = now;
+             extend_mom_ = extend_mom_ >? now + rhythmic_req->length_mom ();
+           }
        }
     }
 }
@@ -331,14 +351,12 @@ void
 Auto_beam_engraver::junk_beam () 
 {
   assert (stem_l_arr_p_);
-  /*  for (int i = 0; i < stem_l_arr_p_->size (); i++)
-      (*stem_l_arr_p_)[i]->flag_i_ = 0;*/
   
   delete stem_l_arr_p_;
   stem_l_arr_p_ = 0;
   delete grouping_p_;
   grouping_p_ = 0;
-  shortest_mom_ = 1;
+  shortest_mom_ = Moment (1, 8);
 }
 
 void
@@ -350,13 +368,10 @@ Auto_beam_engraver::process_acknowledged ()
       if ((extend_mom_ < now)
          || ((extend_mom_ == now) && (last_add_mom_ != now )))
        {
-         DOUT << String ("junking autobeam: no stem added since: ")
-           + last_add_mom_.str () + "\n";
          end_beam ();
        }
       else if (!stem_l_arr_p_->size ())
        {
-         DOUT << "junking started autobeam: no stems\n";
          junk_beam ();
        }
     }