X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fpaper-score.cc;h=3e41930daa21b7e6886d9e01a3f531cde9a29346;hb=b07ef7805ea536741e20c3d1b8fc1bc463a844ba;hp=3855b65f1a61319cce68d5def3107aed26db2ddf;hpb=545092a25d8ca41dc90b87482474b3719f7130a9;p=lilypond.git diff --git a/lily/paper-score.cc b/lily/paper-score.cc index 3855b65f1a..3e41930daa 100644 --- a/lily/paper-score.cc +++ b/lily/paper-score.cc @@ -3,13 +3,15 @@ source file of the GNU LilyPond music typesetter - (c) 1996--2005 Han-Wen Nienhuys + (c) 1996--2006 Han-Wen Nienhuys */ #include "paper-score.hh" #include "all-font-metrics.hh" +#include "book.hh" #include "gourlay-breaking.hh" +#include "international.hh" #include "main.hh" #include "misc.hh" #include "output-def.hh" @@ -20,6 +22,7 @@ #include "stencil.hh" #include "system.hh" #include "warn.hh" +#include "constrained-breaking.hh" Paper_score::Paper_score (Output_def *layout) { @@ -56,13 +59,37 @@ Paper_score::typeset_system (System *system) system->unprotect (); } -Array + +vector +Paper_score::find_break_indices () const +{ + vector all = root_system ()->columns (); + vector retval; + + for (vsize i = 0; i < all.size (); i++) + if (Item::is_breakable (all[i])) + retval.push_back (i); + + return retval; +} + + +vector Paper_score::calc_breaking () { Break_algorithm *algorithm = 0; - Array sol; - - algorithm = new Gourlay_breaking; + vector sol; + + int system_count = robust_scm2int (layout ()->c_variable ("system-count"), 0); + if (system_count) + { + Constrained_breaking *b = new Constrained_breaking; + b->resize (system_count); + algorithm = b; + } + else + algorithm = new Gourlay_breaking; + algorithm->set_pscore (this); sol = algorithm->solve (); delete algorithm; @@ -84,13 +111,13 @@ Paper_score::process () down the road. doubly, also done in Score_engraver */ - Link_array pc (system_->columns ()); + vector pc (system_->columns ()); pc[0]->set_property ("breakable", SCM_BOOL_T); - pc.top ()->set_property ("breakable", SCM_BOOL_T); + pc.back ()->set_property ("breakable", SCM_BOOL_T); system_->pre_processing (); - Array breaking = calc_breaking (); + vector breaking = calc_breaking (); system_->break_into_pieces (breaking); paper_systems_ = system_->get_paper_systems (); @@ -113,3 +140,4 @@ Paper_score::get_paper_systems () const { return paper_systems_; } +