X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fpaper-score.cc;h=2c1f0797d0f86c59ce746fc046f3bc61a27a97fd;hb=47db9a3883d726ca53e2133a3b2298f78dd6a32e;hp=3c7311b816f77b26fbe11ccd98bc882bfc6f3bd6;hpb=94a1966c72301b8bd1d8bb3b8628c3f089d007cf;p=lilypond.git diff --git a/lily/paper-score.cc b/lily/paper-score.cc index 3c7311b816..af6622a9f3 100644 --- a/lily/paper-score.cc +++ b/lily/paper-score.cc @@ -1,97 +1,161 @@ /* - paper-score.cc -- implement Paper_score + This file is part of LilyPond, the GNU music typesetter. - source file of the GNU LilyPond music typesetter + Copyright (C) 1996--2015 Han-Wen Nienhuys - (c) 1996--2004 Han-Wen Nienhuys + LilyPond is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + LilyPond is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with LilyPond. If not, see . */ -#include "score.hh" -#include "main.hh" -#include "warn.hh" -#include "font-metric.hh" -#include "spanner.hh" -#include "paper-def.hh" -#include "system.hh" -#include "paper-column.hh" #include "paper-score.hh" + +#include "all-font-metrics.hh" +#include "book.hh" +#include "international.hh" +#include "main.hh" +#include "misc.hh" +#include "output-def.hh" +#include "paper-book.hh" #include "paper-column.hh" #include "scm-hash.hh" -#include "gourlay-breaking.hh" -//#include "paper-outputter.hh" -#include "input-file-results.hh" -#include "misc.hh" -#include "all-font-metrics.hh" - +#include "score.hh" #include "stencil.hh" -#include "paper-book.hh" -#include "ly-module.hh" +#include "system.hh" +#include "warn.hh" +#include "constrained-breaking.hh" -Paper_score::Paper_score () +Paper_score::Paper_score (Output_def *layout) { - paper_ = 0; + layout_ = layout; system_ = 0; + systems_ = SCM_EOL; + paper_systems_ = SCM_BOOL_F; } -Paper_score::Paper_score (Paper_score const &s) - : Music_output (s) +void +Paper_score::derived_mark () const { - assert (false); + if (layout_) + scm_gc_mark (layout_->self_scm ()); + 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; systems_ = scm_cons (system->self_scm (), systems_); system->pscore_ = this; + system->layout_ = layout_; + system->unprotect (); +} + +void +Paper_score::find_break_indices () const +{ + cols_ = root_system ()->used_columns (); + break_indices_.clear (); + break_ranks_.clear (); + + for (vsize i = 0; i < cols_.size (); i++) + { + Item *it = dynamic_cast (cols_[i]); + if (Paper_column::is_breakable (cols_[i]) + && (i == 0 || it->find_prebroken_piece (LEFT)) + && (i == cols_.size () - 1 || it->find_prebroken_piece (RIGHT))) + { + break_indices_.push_back (i); + break_ranks_.push_back (it->get_column ()->get_rank ()); + } + } +} + +vector +Paper_score::get_break_indices () const +{ + if (break_indices_.empty ()) + find_break_indices (); + return break_indices_; +} + +vector +Paper_score::get_columns () const +{ + if (cols_.empty ()) + find_break_indices (); + return cols_; +} - scm_gc_unprotect_object (system->self_scm ()); +vector +Paper_score::get_break_ranks () const +{ + if (break_ranks_.empty ()) + find_break_indices (); + return break_ranks_; } -Array +vector Paper_score::calc_breaking () { - Break_algorithm *algorithm=0; - Array sol; + Constrained_breaking algorithm (this); + vector sol; - algorithm = new Gourlay_breaking ; - algorithm->set_pscore (this); - sol = algorithm->solve (); - delete algorithm; + message (_ ("Calculating line breaks...") + " "); - return sol; + int system_count = robust_scm2int (layout ()->c_variable ("system-count"), 0); + if (system_count) + return algorithm.solve (0, VPOS, system_count); + + return algorithm.best_solution (0, VPOS); } -SCM -Paper_score::process (String) +void +Paper_score::process () { - if (verbose_global_b) - progress_indication (_f ("Element count %d (spanners %d) ", - system_->element_count (), - system_->spanner_count ())); - - progress_indication (_ ("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); - + debug_output (_f ("Element count %d (spanners %d) ", + system_->element_count (), + system_->spanner_count ())); + + message (_ ("Preprocessing graphical objects...")); + system_->pre_processing (); - - Array breaking = calc_breaking (); - system_->break_into_pieces (breaking); - SCM lines = system_->get_lines (); - progress_indication ("\n"); +} - /* Only keep result stencils in lines_, *title_; delete all grobs. */ - systems_ = SCM_EOL; - - return lines; +System * +Paper_score::root_system () const +{ + return system_; +} + +Output_def * +Paper_score::layout () const +{ + return layout_; +} + +SCM +Paper_score::get_paper_systems () +{ + if (paper_systems_ == SCM_BOOL_F) + { + vector breaking = calc_breaking (); + system_->break_into_pieces (breaking); + message (_ ("Drawing systems...") + " "); + system_->do_break_substitution_and_fixup_refpoints (); + paper_systems_ = system_->get_paper_systems (); + } + return paper_systems_; }