X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fpaper-score.cc;h=b7568416793f3dbc0b3e7c06858aef087d9bb233;hb=32cdc3e2bc738e82c0965bdc5d8d99830e929092;hp=cab9e144453832a3ffd95b874f2e23f442cc99e9;hpb=ba9f8c7b737b63c29e1a7f6956c7cec69d1180bb;p=lilypond.git diff --git a/lily/paper-score.cc b/lily/paper-score.cc index cab9e14445..b756841679 100644 --- a/lily/paper-score.cc +++ b/lily/paper-score.cc @@ -3,7 +3,7 @@ source file of the GNU LilyPond music typesetter - (c) 1996--2004 Han-Wen Nienhuys + (c) 1996--2005 Han-Wen Nienhuys */ #include "paper-score.hh" @@ -21,10 +21,12 @@ #include "system.hh" #include "warn.hh" -Paper_score::Paper_score () +Paper_score::Paper_score (Output_def *layout) { - layout_ = 0; + layout_ = layout; system_ = 0; + systems_ = SCM_EOL; + paper_systems_ = SCM_EOL; } Paper_score::Paper_score (Paper_score const &s) @@ -33,8 +35,16 @@ Paper_score::Paper_score (Paper_score const &s) assert (false); } + +void +Paper_score::derived_mark () const +{ + scm_gc_mark (systems_); + scm_gc_mark (paper_systems_); +} + void -Paper_score::typeset_line (System *system) +Paper_score::typeset_system (System *system) { if (!system_) system_ = system; @@ -51,7 +61,7 @@ Paper_score::calc_breaking () Break_algorithm *algorithm = 0; Array sol; - algorithm = new Gourlay_breaking ; + algorithm = new Gourlay_breaking; algorithm->set_pscore (this); sol = algorithm->solve (); delete algorithm; @@ -59,36 +69,47 @@ Paper_score::calc_breaking () return sol; } -SCM -Paper_score::process (String) +void +Paper_score::process () { if (be_verbose_global) - progress_indication (_f ("Element count %d (spanners %d) ", - system_->element_count (), - system_->spanner_count ())); + message (_f ("Element count %d (spanners %d) ", + system_->element_count (), + system_->spanner_count ())); - progress_indication (_ ("Preprocessing graphical objects...") + " "); + message (_ ("Preprocessing graphical objects...") + " "); /* FIXME: Check out why we need this - removing gives assertion failures down the road. - + doubly, also done in Score_engraver */ Link_array pc (system_->columns ()); pc[0]->set_property ("breakable", SCM_BOOL_T); pc.top ()->set_property ("breakable", SCM_BOOL_T); - + system_->pre_processing (); - + Array breaking = calc_breaking (); system_->break_into_pieces (breaking); - SCM lines = system_->get_lines (); -#if 0 - /* gourlay:do_solve also prints newline. */ - progress_indication ("\n"); -#endif - - /* Only keep result stencils in lines_, *title_; delete all grobs. */ - systems_ = SCM_EOL; + + paper_systems_ = system_->get_paper_systems (); +} + +System * +Paper_score::root_system () const +{ + return system_; +} + +Output_def * +Paper_score::layout () const +{ + return layout_; +} - return lines; + +SCM +Paper_score::get_paper_systems () const +{ + return paper_systems_; }