]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/bar-grav.cc
partial: 1.0.1.jcn
[lilypond.git] / lily / bar-grav.cc
index c390c78a31420cc04586cead10e5d28d5a6b6fc2..33e62ad6a9f28ed39b32f65baa03e700f08dcfa7 100644 (file)
@@ -3,17 +3,20 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
+  (c)  1997--1998 Han-Wen Nienhuys <hanwen@stack.nl>
 */
 
 #include "bar-grav.hh"
 #include "bar.hh"
+#include "musical-request.hh"
+#include "multi-measure-rest.hh"
 #include "command-request.hh"
 #include "time-description.hh"
 #include "engraver-group.hh"
 
 Bar_engraver::Bar_engraver()
 {
+  bar_p_ =0;
   do_post_move_processing();
 }
 
@@ -22,10 +25,10 @@ Bar_engraver::do_try_request (Request*r_l)
 {
   Command_req* c_l = r_l->command();
   if (!c_l|| !c_l->bar()) 
-       return false;
+    return false;
   Bar_req  * b= c_l->bar();
   if (bar_req_l_ && bar_req_l_->equal_b (b))
-       return false;
+    return false;
   
   bar_req_l_ = b;
 
@@ -33,26 +36,56 @@ Bar_engraver::do_try_request (Request*r_l)
 }
 
 void
-Bar_engraver::do_process_requests()
+Bar_engraver::create_bar ()
 {
-  if (bar_req_l_) 
+  if (!bar_p_)
     {
-       bar_p_ = new Bar;
-       bar_p_->type_str_=bar_req_l_->type_str_;
+      bar_p_ = new Bar;
+      bar_p_->break_priority_i_  = 0;
+      announce_element (Score_elem_info (bar_p_, bar_req_l_));
     }
-  else if (!get_staff_info().time_C_->whole_in_measure_) 
+}
+
+
+void 
+Bar_engraver::do_creation_processing ()
+{
+  create_bar ();
+  bar_p_->type_str_ = "";
+}
+
+void
+Bar_engraver::do_removal_processing ()
+{
+  if (bar_p_) 
     {
-       bar_p_ = new Bar;
+      typeset_element (bar_p_);
+      bar_p_ =0;
     }
-  
-  if (bar_p_)
+}
+
+void
+Bar_engraver::do_process_requests()
+{  
+  if (bar_req_l_) 
     {
-       announce_element (Score_elem_info (bar_p_, bar_req_l_));
+      if (!bar_p_)
+       create_bar ();    
+
+      bar_p_->type_str_ = bar_req_l_->type_str_;
     }
   else 
     {
-       Disallow_break_req r;
-       daddy_grav_l_->try_request (&r);
+      Time_description const *time = get_staff_info().time_C_;
+      if (time && !time->whole_in_measure_) 
+       create_bar ();
+    }
+  
+  if (!bar_p_)
+    {
+      Break_req r;
+      r.penalty_i_ = Break_req::DISALLOW;
+      daddy_grav_l ()->try_request (&r);
     }
 }
 
@@ -60,22 +93,21 @@ Bar_engraver::do_process_requests()
 void 
 Bar_engraver::do_pre_move_processing()
 {
-    if (bar_p_) 
-      {
-         typeset_element (bar_p_);
-         bar_p_ =0;
-      }
+  if (bar_p_) 
+    {
+      typeset_element (bar_p_);
+      bar_p_ =0;
+    }
 }
 
 void
 Bar_engraver::do_post_move_processing()
 {
   bar_req_l_ = 0;
-  bar_p_ =0;
 }
 
 
 IMPLEMENT_IS_TYPE_B1(Bar_engraver,Engraver);
-ADD_THIS_ENGRAVER(Bar_engraver);
+ADD_THIS_TRANSLATOR(Bar_engraver);