]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/auto-beam-engraver.cc
Run `make grand-replace'.
[lilypond.git] / lily / auto-beam-engraver.cc
index 779d0781b0c196e0964dd18e59922438425d881f..f86edaecc88eceddb74e17dea010458a24fa826f 100644 (file)
-/*   
-  auto-beam-engraver.cc --  implement Auto_beam_engraver
-  
+/*
+  auto-beam-engraver.cc -- implement Auto_beam_engraver
+
   source file of the GNU LilyPond music typesetter
-  
-  (c) 1999 Jan Nieuwenhuizen <janneke@gnu.org>
-  
- */
-#include "beaming.hh"
-#include "auto-beam-engraver.hh"
-#include "musical-request.hh"
-#include "bar.hh"
+
+  (c) 1999--2008 Jan Nieuwenhuizen <janneke@gnu.org>
+*/
+
+#include "bar-line.hh"
+#include "beaming-pattern.hh"
 #include "beam.hh"
+#include "context.hh"
+#include "duration.hh"
+#include "engraver.hh"
+#include "item.hh"
 #include "rest.hh"
+#include "spanner.hh"
+#include "stream-event.hh"
 #include "stem.hh"
-#include "debug.hh"
-#include "timing-engraver.hh"
-#include "engraver-group-engraver.hh"
+#include "warn.hh"
 
-ADD_THIS_TRANSLATOR (Auto_beam_engraver);
+#include "translator.icc"
 
-Auto_beam_engraver::Auto_beam_engraver ()
+class Auto_beam_engraver : public Engraver
 {
-  stem_l_arr_p_ = 0;
-  shortest_mom_ = Moment (1, 8);
-  finished_beam_p_ = 0;
-  finished_grouping_p_ = 0;
-  grouping_p_ = 0;
-  timer_l_ =0;
-}
+  TRANSLATOR_DECLARATIONS (Auto_beam_engraver);
+
+protected:
+  void stop_translation_timestep ();
+  void process_music ();
+  virtual void finalize ();
+  virtual void derived_mark () const;
+
+  DECLARE_ACKNOWLEDGER (rest);
+  DECLARE_ACKNOWLEDGER (beam);
+  DECLARE_ACKNOWLEDGER (bar_line);
+  DECLARE_ACKNOWLEDGER (stem);
+  DECLARE_TRANSLATOR_LISTENER (beam_forbid);
+
+  void process_acknowledged ();
+
+private:
+  bool test_moment (Direction, Moment);
+  void consider_begin (Moment);
+  void consider_end (Moment);
+  Spanner *create_beam ();
+  void begin_beam ();
+  void end_beam ();
+  void junk_beam ();
+  bool is_same_grace_state (Grob *e);
+  void typeset_beam ();
+
+  Stream_event *forbid_;
+  /*
+    shortest_mom is the shortest note in the beam.
+  */
+  Moment shortest_mom_;
+  Spanner *finished_beam_;
+  vector<Item*> *stems_;
 
-void
-Auto_beam_engraver::do_creation_processing ()
-{
-  Translator * t = daddy_grav_l  ()->get_simple_translator ("Timing_engraver");
-  timer_l_ = dynamic_cast<Timing_engraver*> (t);
-}
+  int process_acknowledged_count_;
+  Moment last_add_mom_;
+  /*
+    Projected ending of the  beam we're working on.
+  */
+  Moment extend_mom_;
+  Moment beam_start_moment_;
+  Moment beam_start_location_;
+
+  // We act as if beam were created, and start a grouping anyway.
+  Beaming_pattern *grouping_;
+  SCM beam_settings_;
+
+  Beaming_pattern *finished_grouping_;
 
-bool
-Auto_beam_engraver::do_try_music (Music*) 
-{
-  return false;
-} 
+
+  Beaming_options beaming_options_;
+  Beaming_options finished_beaming_options_;
+  
+  
+  void check_bar_property ();
+};
 
 void
-Auto_beam_engraver::do_process_music ()
+Auto_beam_engraver::derived_mark () const
 {
-  consider_end_and_begin (shortest_mom_);
+  scm_gc_mark (beam_settings_);
 }
 
 void
-Auto_beam_engraver::consider_end_and_begin (Moment test_mom)
+Auto_beam_engraver::check_bar_property ()
 {
-  if (!timer_l_)
-      return;
-  
-  int num;
-  int den;
-  timer_l_->get_time_signature (&num, &den);
-  
-  String time_str = String ("time") + to_str (num) + "_" + to_str (den);
+  /* Duplicated from process_music (), since
+     Repeat_acknowledge_engraver::process_music () may also set whichBar.  */
 
-  String type_str;
-  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 ());
-
-  /*
-    URG
-    
-    FIXME: SHOULD USE ALIST
-    
-   */
+  Moment now = now_mom ();
+  if (scm_is_string (get_property ("whichBar"))
+      && beam_start_moment_ < now)
+    {
+      consider_end (shortest_mom_);
+      junk_beam ();
+    }
+}
 
+void
+Auto_beam_engraver::process_music ()
+{
   /*
-    Determine end moment for auto beaming (and begin, mostly 0==anywhere) 
-    In order of increasing priority:
-
-    i.   every beat <den>
-    ii.  time<num>_<den>beamAutoEnd
-    iii. time<num>_<den>beamAutoEnd<type>
-    iv.  beamAutoEnd
-    v.   beamAutoEnd<type>
-
-
-    Rationale:
-
-    [to be defined in config file]
-    i.   easy catch-all rule
-    ii.  exceptions for time signature
-    iii. exceptions for time signature, for specific duration type
+    don't beam over skips
+  */
+  if (stems_)
+    {
+      Moment now = now_mom ();
+      if (extend_mom_ < now)
+       end_beam ();
+    }
 
-    [user override]
-    iv.  generic override
-    v.   override for specific duration type
+  if (scm_is_string (get_property ("whichBar")))
+    {
+      consider_end (shortest_mom_);
+      junk_beam ();
+    }
 
-    The user overrides should be required for common cases.
-   */
-  
-  /*
-    first guess: begin beam at any position
-  */
-  Moment begin_mom (0);
-  /*
-    first guess: end beam at end of beat
-  */
-  SCM one (get_property ("beatLength"));
+  if (forbid_)
+    {
+      consider_end (shortest_mom_);
+      junk_beam ();
+    }
+}
 
-  Moment end_mom;
-  if (SMOB_IS_TYPE_B(Moment, one))
-    end_mom = *SMOB_TO_TYPE (Moment, one);
+Auto_beam_engraver::Auto_beam_engraver ()
+{
+  forbid_ = 0;
+  process_acknowledged_count_ = 0;
+  stems_ = 0;
+  shortest_mom_ = Moment (Rational (1, 8));
+  finished_beam_ = 0;
+  finished_grouping_ = 0;
+  grouping_ = 0;
+  beam_settings_ = SCM_EOL;
+}
 
-  /*
-    second guess: property generic time exception
-  */
-  SCM begin = get_property (time_str + "beamAutoBegin");
-  if (SMOB_IS_TYPE_B(Moment, begin))
-    begin_mom = * SMOB_TO_TYPE(Moment, begin);
+IMPLEMENT_TRANSLATOR_LISTENER (Auto_beam_engraver, beam_forbid);
+void
+Auto_beam_engraver::listen_beam_forbid (Stream_event *ev)
+{
+  ASSIGN_EVENT_ONCE (forbid_, ev);
+}
 
-  SCM end = get_property (time_str + "beamAutoEnd");
-  if (SMOB_IS_TYPE_B (Moment, end))
-    end_mom = * SMOB_TO_TYPE(Moment,end);
+bool
+Auto_beam_engraver::test_moment (Direction dir, Moment test)
+{
+  return scm_call_3 (get_property ("autoBeamCheck"),
+                    context ()->self_scm (),
+                    scm_from_int (dir),
+                    test.smobbed_copy ())
+    != SCM_BOOL_F;
+}
 
-  /*
-    third guess: property time exception, specific for duration type
-  */
-  if (type_str.length_i ())
+void
+Auto_beam_engraver::consider_begin (Moment test_mom)
+{
+  bool on = to_boolean (get_property ("autoBeaming"));
+  if (!stems_ && on
+      && !forbid_)
     {
-      SCM end_mult = get_property ( time_str + "beamAutoEnd" + type_str);
-      if (SMOB_IS_TYPE_B (Moment, end_mult))
-       end_mom = * SMOB_TO_TYPE (Moment,end_mult);
-
-      SCM begin_mult = get_property (time_str + "beamAutoBegin" + type_str);
-      if (SMOB_IS_TYPE_B (Moment, begin_mult))
-       begin_mom = * SMOB_TO_TYPE (Moment,begin_mult);
+      bool b = test_moment (START, test_mom);
+      if (b)
+       begin_beam ();
     }
+}
 
-  /*
-    fourth guess [user override]: property plain generic
-  */
-  begin = get_property ("beamAutoBegin");
-  if (SMOB_IS_TYPE_B(Moment, begin))
-    begin_mom = * SMOB_TO_TYPE(Moment, begin);
+void
+Auto_beam_engraver::consider_end (Moment test_mom)
+{
+  if (stems_)
+    {
+      /* Allow already started autobeam to end:
+        don't check for autoBeaming */
+      bool b = test_moment (STOP, test_mom);
+      if (b)
+       end_beam ();
+    }
+}
 
+Spanner *
+Auto_beam_engraver::create_beam ()
+{
+  if (to_boolean (get_property ("skipTypesetting")))
+    return 0;
 
-  
-  end = get_property ("beamAutoEnd");
-  if (SMOB_IS_TYPE_B (Moment, end))
-    end_mom = * SMOB_TO_TYPE (Moment,end);
+  for (vsize i = 0; i < stems_->size (); i++)
+    if (Stem::get_beam ((*stems_)[i]))
+      return 0;
 
   /*
-    fifth guess [user override]: property plain, specific for duration type
+    Can't use make_spanner_from_properties () because we have to use
+    beam_settings_.
   */
-  if (type_str.length_i ())
-    {
-      SCM end_mult = get_property (String ("beamAutoEnd") + type_str);
-      if (SMOB_IS_TYPE_B (Moment, end_mult))
-       end_mom = * SMOB_TO_TYPE (Moment,end_mult);
-
-      SCM begin_mult = get_property (String ("beamAutoBegin") + type_str);
-      if (SMOB_IS_TYPE_B (Moment, begin_mult))
-       begin_mom = * SMOB_TO_TYPE (Moment,begin_mult);
-    }
+  Spanner *beam = new Spanner (beam_settings_);
 
-  Rational r;
-  if (end_mom)
-    r = timer_l_->measure_position ().mod_rat (end_mom);
-  else
-    r = Moment (1);
+  for (vsize i = 0; i < stems_->size (); i++)
+    Beam::add_stem (beam, (*stems_)[i]);
 
-  if (stem_l_arr_p_ && !r)
-    end_beam ();
-     
-  /*
-    Allow already started autobeam to end
-   */
-  SCM on = get_property ("noAutoBeaming");
-  if (to_boolean (on))
-    return;
+  announce_grob (beam, (*stems_)[0]->self_scm ());
 
-  if (begin_mom)
-    r = timer_l_->measure_position ().mod_rat (begin_mom);
-  if (!stem_l_arr_p_ && (!begin_mom || !r))
-    begin_beam ();
+  return beam;
 }
 
-      
 void
 Auto_beam_engraver::begin_beam ()
 {
-  assert (!stem_l_arr_p_);
-  stem_l_arr_p_ = new Array<Stem*>;
-  assert (!grouping_p_);
-  grouping_p_ = new Beaming_info_list;
+  if (stems_ || grouping_)
+    {
+      programming_error ("already have autobeam");
+      return;
+    }
+
+  stems_ = new vector<Item*>;
+  grouping_ = new Beaming_pattern ();
+  beaming_options_.from_context (context ());
+  beam_settings_ = updated_grob_properties (context (), ly_symbol2scm ("Beam"));
+
   beam_start_moment_ = now_mom ();
-  beam_start_location_ = timer_l_->measure_position ();
+  beam_start_location_
+    = robust_scm2moment (get_property ("measurePosition"), Moment (0));
 }
 
-Beam*
-Auto_beam_engraver::create_beam_p ()
+void
+Auto_beam_engraver::junk_beam ()
 {
-  Beam* beam_p = new Beam;
+  if (!stems_)
+    return;
 
-  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 ())
-       {
-         return 0;
-       }
-      beam_p->add_stem ((*stem_l_arr_p_)[i]);
-    }
-  
-  announce_element (Score_element_info (beam_p, 0));
+  delete stems_;
+  stems_ = 0;
+  delete grouping_;
+  grouping_ = 0;
+  beam_settings_ = SCM_EOL;
 
-  return beam_p;
+  shortest_mom_ = Moment (Rational (1, 8));
 }
 
 void
 Auto_beam_engraver::end_beam ()
 {
-  if (stem_l_arr_p_->size () < 2)
-    {
-      junk_beam ();
-    }
+  if (stems_->size () < 2)
+    junk_beam ();
   else
     {
-      finished_beam_p_ = create_beam_p ();
-      if (finished_beam_p_)
-       finished_grouping_p_ = grouping_p_;
-      delete stem_l_arr_p_;
-      stem_l_arr_p_ = 0;
-      grouping_p_ = 0;
-      shortest_mom_ = Moment (1, 8);
+      finished_beam_ = create_beam ();
+      
+      if (finished_beam_)
+       {
+         announce_end_grob (finished_beam_, SCM_EOL);
+         finished_grouping_ = grouping_;
+         finished_beaming_options_ = beaming_options_;
+       }
+      delete stems_;
+      stems_ = 0;
+      grouping_ = 0;
+      beam_settings_ = SCM_EOL;
     }
+
+  shortest_mom_ = Moment (Rational (1, 8));
 }
+
 void
 Auto_beam_engraver::typeset_beam ()
 {
-  if (finished_beam_p_)
+  if (finished_beam_)
     {
-      finished_grouping_p_->beamify ();
-      finished_beam_p_->set_beaming (finished_grouping_p_);
-      typeset_element (finished_beam_p_);
-      finished_beam_p_ = 0;
-    
-      delete finished_grouping_p_;
-      finished_grouping_p_= 0;
-    }
-}
+      if (!finished_beam_->get_bound (RIGHT))
+       finished_beam_->set_bound (RIGHT, finished_beam_->get_bound (LEFT));
+      
+      finished_grouping_->beamify (finished_beaming_options_);
+      Beam::set_beaming (finished_beam_, finished_grouping_);
+      finished_beam_ = 0;
 
-void
-Auto_beam_engraver::do_post_move_processing ()
-{
-  /*
-    don't beam over skips
-   */
-  if (stem_l_arr_p_)
-    {
-      Moment now = now_mom ();
-      if (extend_mom_ < now)
-       {
-         end_beam ();
-       }
+      delete finished_grouping_;
+      finished_grouping_ = 0;
     }
 }
 
 void
-Auto_beam_engraver::do_pre_move_processing ()
+Auto_beam_engraver::stop_translation_timestep ()
 {
   typeset_beam ();
+  process_acknowledged_count_ = 0;
+  forbid_ = 0;
 }
 
 void
-Auto_beam_engraver::do_removal_processing ()
+Auto_beam_engraver::finalize ()
 {
   /* finished beams may be typeset */
   typeset_beam ();
   /* but unfinished may need another announce/acknowledge pass */
-  if (stem_l_arr_p_)
+  if (stems_)
     junk_beam ();
 }
 
-bool
-Auto_beam_engraver::same_grace_state_b (Score_element* e)
+
+void
+Auto_beam_engraver::acknowledge_beam (Grob_info info)
 {
-  bool gr = e->get_elt_property ("grace") == SCM_BOOL_T;
-  SCM wg =get_property ("weAreGraceContext");
-  return (to_boolean (wg)) == gr;
+  (void)info;
+  check_bar_property ();
+  if (stems_)
+    end_beam ();
 }
 
 void
-Auto_beam_engraver::acknowledge_element (Score_element_info info)
+Auto_beam_engraver::acknowledge_bar_line (Grob_info info)
 {
-  if (!same_grace_state_b (info.elem_l_) || !timer_l_)
-    return;
-  
-  if (stem_l_arr_p_)
+  (void)info;
+  check_bar_property ();
+  if (stems_)
+    end_beam ();
+}
+
+void
+Auto_beam_engraver::acknowledge_rest (Grob_info info)
+{
+  (void)info;
+  check_bar_property ();
+  if (stems_)
+    end_beam ();
+}
+
+void
+Auto_beam_engraver::acknowledge_stem (Grob_info info)
+{
+  check_bar_property ();
+  Item *stem = dynamic_cast<Item *> (info.grob ());
+  Stream_event *ev = info.ultimate_event_cause ();
+  if (!ev->in_event_class ("rhythmic-event"))
     {
-      if (Beam *b = dynamic_cast<Beam *> (info.elem_l_))
-       {
-         end_beam ();
-       }
-      else if (Bar *b = dynamic_cast<Bar *> (info.elem_l_))
-       {
-         end_beam ();
-       }
-      else if (Rest* rest_l = dynamic_cast<Rest *> (info.elem_l_))
-       {
-         end_beam ();
-       }
+      programming_error ("stem must have rhythmic structure");
+      return;
     }
-  
-  if (Stem* stem_l = dynamic_cast<Stem *> (info.elem_l_))
+
+  /*
+    Don't (start) auto-beam over empty stems; skips or rests
+  */
+  if (!Stem::head_count (stem))
     {
-      Rhythmic_req *rhythmic_req = dynamic_cast <Rhythmic_req *> (info.req_l_);
-      if (!rhythmic_req)
-       {
-         programming_error ("Stem must have rhythmic structure");
-         return;
-       }
-      
-      /*
-       Don't (start) auto-beam over empty stems; skips or rests
-       */
-      if (!stem_l->heads_i ())
-       {
-         if (stem_l_arr_p_)
-           end_beam ();
-         return;
-       }
+      if (stems_)
+       end_beam ();
+      return;
+    }
 
-      if (stem_l->beam_l ())
-       {
-         if (stem_l_arr_p_)
-           junk_beam ();
-         return ;
-       }
-             
-      int durlog  =rhythmic_req->duration_.durlog_i_;
-      if (durlog <= 2)
-       {
-         if (stem_l_arr_p_)
-           end_beam ();
-         return;
-       }
+  if (Stem::get_beam (stem))
+    {
+      if (stems_)
+       junk_beam ();
+      return;
+    }
 
-      /*
-       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 ();
+  int durlog = unsmob_duration (ev->get_property ("duration"))->duration_log ();
+
+  if (durlog <= 2)
+    {
+      if (stems_)
+       end_beam ();
+      return;
     }
-}
 
-void
-Auto_beam_engraver::junk_beam () 
-{
-  assert (stem_l_arr_p_);
-  
-  delete stem_l_arr_p_;
-  stem_l_arr_p_ = 0;
-  delete grouping_p_;
-  grouping_p_ = 0;
-  shortest_mom_ = Moment (1, 8);
+  /*
+    ignore grace notes.
+  */
+  Moment now = now_mom ();
+  if (bool (beam_start_location_.grace_part_) != bool (now.grace_part_))
+    return;
+
+  Moment dur = unsmob_duration (ev->get_property ("duration"))->get_length ();
+
+  consider_end (dur);
+  consider_begin (dur);
+
+  if (dur < shortest_mom_)
+    shortest_mom_ = dur;
+
+  if (!stems_)
+    return;
+
+  grouping_->add_stem (now - beam_start_moment_ + beam_start_location_,
+                      durlog - 2,
+                      Stem::is_invisible (stem));
+  stems_->push_back (stem);
+  last_add_mom_ = now;
+  extend_mom_ = max (extend_mom_, now) + get_event_length (ev, now);
 }
 
 void
 Auto_beam_engraver::process_acknowledged ()
 {
-  if (stem_l_arr_p_)
+  if (extend_mom_ > now_mom ())
+    return;
+
+  if (!process_acknowledged_count_)
     {
-      Moment now = now_mom ();
-      if ((extend_mom_ < now)
-         || ((extend_mom_ == now) && (last_add_mom_ != now )))
-       {
-         end_beam ();
-       }
-      else if (!stem_l_arr_p_->size ())
+      consider_end (shortest_mom_);
+      consider_begin (shortest_mom_);
+    }
+  else if (process_acknowledged_count_ > 1)
+    {
+      if (stems_)
        {
-         junk_beam ();
+         Moment now = now_mom ();
+         if ((extend_mom_ < now)
+             || ((extend_mom_ == now) && (last_add_mom_ != now)))
+           end_beam ();
+         else if (!stems_->size ())
+           junk_beam ();
        }
     }
+
+  process_acknowledged_count_++;
 }
 
+ADD_ACKNOWLEDGER (Auto_beam_engraver, stem);
+ADD_ACKNOWLEDGER (Auto_beam_engraver, bar_line);
+ADD_ACKNOWLEDGER (Auto_beam_engraver, beam);
+ADD_ACKNOWLEDGER (Auto_beam_engraver, rest);
+ADD_TRANSLATOR (Auto_beam_engraver,
+               /* doc */
+               "Generate beams based on measure characteristics and observed"
+               " Stems.  Uses @code{beatLength}, @code{measureLength}, and"
+               " @code{measurePosition} to decide when to start and stop a"
+               " beam.  Overriding beaming is done through"
+               " @ref{Stem_engraver} properties @code{stemLeftBeamCount} and"
+               " @code{stemRightBeamCount}.",
+
+               /* create */
+               "Beam ",
+
+               /* read */
+               "autoBeaming "
+               "autoBeamSettings "
+               "beatLength "
+               "subdivideBeams ",
+               
+               /* write */
+               ""
+               );