]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/break-algorithm.cc
The grand \paper -> \layout, \bookpaper -> \paper renaming.
[lilypond.git] / lily / break-algorithm.cc
index 51486412c9bcbe3612d0b129c08a82e43ffaa901..212913f4ae4195a7878edfa960e8a7d91449ea58 100644 (file)
@@ -3,53 +3,50 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1996,  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1996--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
-#include "score-column.hh"
-#include "break.hh"
-#include "paper-def.hh"
-#include "debug.hh"
-#include "line-of-score.hh"
+#include "paper-column.hh"
+#include "break-algorithm.hh"
+#include "output-def.hh"
+#include "system.hh"
 #include "paper-score.hh"
 #include "paper-column.hh"
 #include "cpu-timer.hh"
-#include "command-request.hh"
-#include "simple-spacer.hh"
-
-
 
+#include "simple-spacer.hh"
+#include "group-interface.hh"
 
 
 Array<int>
 Break_algorithm::find_break_indices () const
 {
-  Line_of_cols all (pscore_l_->col_l_arr_);
+  Link_array<Grob> all = pscore_->system_->columns ();
   Array<int> retval;
 
   for (int i=0; i < all.size (); i++)
-    if (all[i]->breakable_b ())
+    if (Item::is_breakable (all[i]))
       retval.push (i);
 
-  if (linelength <=0)
-    while (retval.size () >2)
+  if (linewidth_ <= 0)
+    while (retval.size () > 2)
       retval.del (1);
 
   return retval;
 }
 
 
-Line_of_cols
+Link_array<Grob>
 Break_algorithm::find_breaks () const
 {
-  Line_of_cols all (pscore_l_->col_l_arr_);
-  Line_of_cols retval;
+  Link_array<Grob> all = pscore_->system_->columns ();
+  Link_array<Grob> retval;
 
   for (int i=0; i < all.size (); i++)
-    if (all[i]->breakable_b ())
+    if (Item::is_breakable (all[i]))
       retval.push (all[i]);
 
-  if (linelength <=0)
+  if (linewidth_ <= 0)
     while (retval.size () >2)
       retval.del (1);
 
@@ -57,72 +54,45 @@ Break_algorithm::find_breaks () const
 }
 
 
-Line_spacer*
-Break_algorithm::generate_spacing_problem (Line_of_cols curline, Interval line) const
+Simple_spacer_wrapper*
+Break_algorithm::generate_spacing_problem (Link_array<Grob> const &curline,
+                                          Interval line) const
 {
-  Line_spacer * sp =  new Simple_spacer;
+  Simple_spacer_wrapper * spw =  new Simple_spacer_wrapper;
+  Simple_spacer * sp =  spw->spacer_;
   
-  sp->default_space_f_ = pscore_l_->paper_l_->get_var ("loose_column_distance");
-
-  sp->indent_f_ = line[LEFT];
+  /*
+    this is hardcoded, but this shouldn't happen anyway.
+    used to be get_dimension (ly_symbol2scm ("loose_column_distance"));        
+   */
+  sp->default_space_ = 1.0;
+  sp->indent_ = line[LEFT];
 
   /*
     sort out how interfacing this should work;
    */
-  if (line.empty_b())
+  if (line.is_empty ())
     {
-     sp->line_len_f_ = -1;
+     sp->line_len_ = -1;
     }
   else
-    sp->line_len_f_ = line.length ();
+    sp->line_len_ = line.length ();
   
-  sp->add_columns (curline);
-  sp->prepare ();
-
-  return sp;
+  spw->add_columns (curline);
+  return spw;
 }
 
 Break_algorithm::Break_algorithm ()
 {
-  pscore_l_ = 0;
-  get_line_spacer =0;
-  linelength = 0;
+  pscore_ = 0;
+  linewidth_ = 0;
 }
 
 void
 Break_algorithm::set_pscore (Paper_score*s)
 {
-  pscore_l_ = s;
-  linelength = s->paper_l_->linewidth_f ();
-  do_set_pscore ();
-}
-
-bool
-Break_algorithm::feasible (Line_of_cols curline) const
-{
-  if (linelength <=  0)
-    return true;
-
-  for (int i=0; i < curline.size (); i++)
-    {
-      if (i && i < curline.size () -1
-         && ((dynamic_cast<Score_column*>(curline[i]))->break_penalty_i () >= Break_req::FORCE))
-       return false;
-    }
-  return true;
-}
-
-void
-Break_algorithm::problem_OK () const
-{
-  if (pscore_l_->col_l_arr_.empty ())
-    error (_("Score does not have any columns"));
-  OK ();
-}
-
-void
-Break_algorithm::OK () const
-{
+  pscore_ = s;
+  linewidth_ = s->layout_->get_dimension (ly_symbol2scm ("linewidth"));
 }
 
 Array<Column_x_positions>
@@ -133,8 +103,3 @@ Break_algorithm::solve () const
   return h;
 }
 
-void
-Break_algorithm::do_set_pscore ()
-{
-
-}