]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/optimal-page-breaking.cc
Merge branch 'stable'
[lilypond.git] / lily / optimal-page-breaking.cc
index 4aa8bececc6ea328384e9bcb5462aef6b33ea381..c5a61335633c6790f8bbdba7d83238fb5c521c01 100644 (file)
@@ -5,7 +5,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 2006--2007 Joe Neeman <joeneeman@gmail.com>
+  (c) 2006--2008 Joe Neeman <joeneeman@gmail.com>
 */
 
 #include "international.hh"
@@ -18,9 +18,8 @@
 #include "system.hh"
 
 static bool
-is_break (Grob *g)
+is_break (Grob *)
 {
-  (void) g; /* shutup warning */
   return false;
 }
 
@@ -45,8 +44,8 @@ Optimal_page_breaking::solve ()
 
   Page_spacing_result best;
   vsize page_count = robust_scm2int (forced_page_count, 1);
-  Line_division ideal_line_division;
-  Line_division best_division;
+  Line_division ideal_line_division = current_configuration (0);
+  Line_division best_division = ideal_line_division;
   vsize min_sys_count = 1;
   vsize ideal_sys_count = system_count ();
   
@@ -57,14 +56,21 @@ Optimal_page_breaking::solve ()
   
       best = space_systems_on_best_pages (0, first_page_num);
       page_count = best.systems_per_page_.size ();
-      ideal_line_division = current_configuration (0);
-      best_division = ideal_line_division;
 
       ideal_sys_count = best.system_count ();
       min_sys_count = ideal_sys_count - best.systems_per_page_.back ();
   
       if (page_count > 1 && best.systems_per_page_[page_count - 2] > 1)
        min_sys_count -= best.systems_per_page_[page_count - 2];
+
+      min_sys_count = max (min_sys_count, (vsize)1);
+    }
+  else
+    {
+      /* todo: the following line will spit out programming errors if the
+        ideal line spacing doesn't fit on PAGE_COUNT pages */
+      best = space_systems_on_n_pages (0, page_count, first_page_num);
+      min_sys_count = page_count;
     }
 
   if (page_count == 1)
@@ -86,9 +92,7 @@ Optimal_page_breaking::solve ()
          vsize min_p_count = min_page_count (i, first_page_num);
          Page_spacing_result cur;
 
-         if (min_p_count > page_count)
-           continue;
-         else if (min_p_count == page_count)
+         if (min_p_count == page_count || scm_is_integer (forced_page_count))
            cur = space_systems_on_n_pages (i, page_count, first_page_num);
          else
            cur = space_systems_on_n_or_one_more_pages (i, page_count-1, first_page_num);
@@ -151,7 +155,7 @@ Optimal_page_breaking::solve ()
        break;
     }
 
-  message ("Drawing systems...");
+  message (_ ("Drawing systems..."));
   break_into_pieces (0, end, best_division);
   SCM lines = systems ();
   return make_pages (best.systems_per_page_, lines);