]> git.donarmstrong.com Git - lilypond.git/commitdiff
Fix 884.
authorJoe Neeman <joeneeman@gmail.com>
Wed, 16 Jun 2010 11:28:09 +0000 (14:28 +0300)
committerJoe Neeman <joeneeman@gmail.com>
Wed, 16 Jun 2010 12:35:13 +0000 (15:35 +0300)
Change page-count so that you specify a list of page-counts, with
each element of the list referring to the number of pages between
two successive forced page breaks.

input/regression/page-breaking-page-count-forced-breaks.ly [new file with mode: 0644]
lily/include/optimal-page-breaking.hh
lily/optimal-page-breaking.cc

diff --git a/input/regression/page-breaking-page-count-forced-breaks.ly b/input/regression/page-breaking-page-count-forced-breaks.ly
new file mode 100644 (file)
index 0000000..1d4174d
--- /dev/null
@@ -0,0 +1,18 @@
+\version "2.13.23"
+
+#(set-default-paper-size "a6")
+
+\book {
+  \header {
+    texidoc = "When specifying page-count together with manual \pageBreaks,
+page-count must be a list with one more element than the number of
+\pageBreaks and each element refers to the number of pages between the
+appropriate consecutive \pageBreaks."
+  }
+
+  \paper {
+    page-count = #'(1 2)
+  }
+
+  { c'1 c'1 \pageBreak c'1 c'1 c'1}
+}
\ No newline at end of file
index 2c52fb974b849758aac4d6db93e84080c58472ef..1f943a45bbe3712e13dcf1d84df7fc4a00ca1a37 100644 (file)
@@ -32,7 +32,7 @@ public:
   virtual ~Optimal_page_breaking ();
 
 private:
-  vector<vsize> solve_chunk (vsize);
+  vector<vsize> solve_chunk (vsize, SCM);
 };
 
 #endif /* OPTIMAL_PAGE_BREAKING_HH */
index a043075d76b99c43ff2c5b290ef74c1e158c96fa..31771e70e244a9e563b22f082bd02a99a3d3713b 100644 (file)
@@ -47,11 +47,10 @@ extern bool debug_page_breaking_scoring;
 // ENDth \pageBreak.
 // Returns a vector of systems per page for the pages within this chunk.
 vector<vsize>
-Optimal_page_breaking::solve_chunk (vsize end)
+Optimal_page_breaking::solve_chunk (vsize end, SCM forced_page_count)
 {
   vsize max_sys_count = max_system_count (end-1, end);
   vsize first_page_num = robust_scm2int (book_->paper_->c_variable ("first-page-number"), 1);
-  SCM forced_page_count = book_->paper_->c_variable ("page-count");
 
   set_to_ideal_line_configuration (end-1, end);
 
@@ -198,10 +197,36 @@ Optimal_page_breaking::solve ()
 {
   vector<vsize> systems_per_page;
 
+  SCM forced_page_counts = book_->paper_->c_variable ("page-count");
+  if (scm_is_integer (forced_page_counts))
+    forced_page_counts = scm_list_1 (forced_page_counts);
+
+  bool is_forced_page_counts = false;
+  if (scm_to_bool (scm_list_p (forced_page_counts)))
+    {
+      int len = scm_to_int (scm_length (forced_page_counts));
+      if (len != (int)last_break_position ())
+       {
+         warning (_f ("page-count has length %d, but it should have length %d "
+                       "(one more than the number of forced page breaks)",
+                      len, (int)last_break_position ()));
+        }
+      else
+       is_forced_page_counts = true;
+    }
+
+
   message (_f ("Solving %d page-breaking chunks...", last_break_position ()));
   for (vsize end = 1; end <= last_break_position (); ++end)
     {
-      vector<vsize> chunk_systems = solve_chunk (end);
+      SCM page_count = SCM_EOL;
+      if (is_forced_page_counts)
+       {
+         page_count = scm_car (forced_page_counts);
+         forced_page_counts = scm_cdr (forced_page_counts);
+       }
+
+      vector<vsize> chunk_systems = solve_chunk (end, page_count);
       systems_per_page.insert (systems_per_page.end (), chunk_systems.begin (), chunk_systems.end ());
     }