]> git.donarmstrong.com Git - lilypond.git/blob - lily/paper-score.cc
Issue 4550 (1/2) Avoid "using namespace std;" in included files
[lilypond.git] / lily / paper-score.cc
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 1996--2015 Han-Wen Nienhuys <hanwen@xs4all.nl>
5
6   LilyPond is free software: you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation, either version 3 of the License, or
9   (at your option) any later version.
10
11   LilyPond is distributed in the hope that it will be useful,
12   but WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   GNU General Public License for more details.
15
16   You should have received a copy of the GNU General Public License
17   along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #include "paper-score.hh"
21
22 #include "all-font-metrics.hh"
23 #include "book.hh"
24 #include "international.hh"
25 #include "main.hh"
26 #include "misc.hh"
27 #include "output-def.hh"
28 #include "paper-book.hh"
29 #include "paper-column.hh"
30 #include "scm-hash.hh"
31 #include "score.hh"
32 #include "stencil.hh"
33 #include "system.hh"
34 #include "warn.hh"
35 #include "constrained-breaking.hh"
36
37 using std::vector;
38
39 Paper_score::Paper_score (Output_def *layout)
40 {
41   layout_ = layout;
42   system_ = 0;
43   systems_ = SCM_EOL;
44   paper_systems_ = SCM_BOOL_F;
45 }
46
47 void
48 Paper_score::derived_mark () const
49 {
50   if (layout_)
51     scm_gc_mark (layout_->self_scm ());
52   scm_gc_mark (systems_);
53   scm_gc_mark (paper_systems_);
54 }
55
56 void
57 Paper_score::typeset_system (System *system)
58 {
59   if (!system_)
60     system_ = system;
61
62   systems_ = scm_cons (system->self_scm (), systems_);
63   system->pscore_ = this;
64   system->layout_ = layout_;
65   system->unprotect ();
66 }
67
68 void
69 Paper_score::find_break_indices () const
70 {
71   cols_ = root_system ()->used_columns ();
72   break_indices_.clear ();
73   break_ranks_.clear ();
74
75   for (vsize i = 0; i < cols_.size (); i++)
76     {
77       Item *it = dynamic_cast<Item *> (cols_[i]);
78       if (Paper_column::is_breakable (cols_[i])
79           && (i == 0 || it->find_prebroken_piece (LEFT))
80           && (i == cols_.size () - 1 || it->find_prebroken_piece (RIGHT)))
81         {
82           break_indices_.push_back (i);
83           break_ranks_.push_back (it->get_column ()->get_rank ());
84         }
85     }
86 }
87
88 vector<vsize>
89 Paper_score::get_break_indices () const
90 {
91   if (break_indices_.empty ())
92     find_break_indices ();
93   return break_indices_;
94 }
95
96 vector<Grob *>
97 Paper_score::get_columns () const
98 {
99   if (cols_.empty ())
100     find_break_indices ();
101   return cols_;
102 }
103
104 vector<vsize>
105 Paper_score::get_break_ranks () const
106 {
107   if (break_ranks_.empty ())
108     find_break_indices ();
109   return break_ranks_;
110 }
111
112 vector<Column_x_positions>
113 Paper_score::calc_breaking ()
114 {
115   Constrained_breaking algorithm (this);
116   vector<Column_x_positions> sol;
117
118   message (_ ("Calculating line breaks...") + " ");
119
120   int system_count = robust_scm2int (layout ()->c_variable ("system-count"), 0);
121   if (system_count)
122     return algorithm.solve (0, VPOS, system_count);
123
124   return algorithm.best_solution (0, VPOS);
125 }
126
127 void
128 Paper_score::process ()
129 {
130   debug_output (_f ("Element count %d (spanners %d) ",
131                     system_->element_count (),
132                     system_->spanner_count ()));
133
134   message (_ ("Preprocessing graphical objects..."));
135
136   system_->pre_processing ();
137 }
138
139 System *
140 Paper_score::root_system () const
141 {
142   return system_;
143 }
144
145 Output_def *
146 Paper_score::layout () const
147 {
148   return layout_;
149 }
150
151 SCM
152 Paper_score::get_paper_systems ()
153 {
154   if (scm_is_false (paper_systems_))
155     {
156       vector<Column_x_positions> breaking = calc_breaking ();
157       system_->break_into_pieces (breaking);
158       message (_ ("Drawing systems...") + " ");
159       system_->do_break_substitution_and_fixup_refpoints ();
160       paper_systems_ = system_->get_paper_systems ();
161     }
162   return paper_systems_;
163 }