blob: ffad13c38b076c0b0b171f0abd24b096e1336f59 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
|
/*
paper-score.cc -- implement Paper_score
source file of the GNU LilyPond music typesetter
(c) 1996--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
*/
#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"
#include "paper-book.hh"
#include "paper-column.hh"
#include "scm-hash.hh"
#include "score.hh"
#include "stencil.hh"
#include "system.hh"
#include "warn.hh"
#include "constrained-breaking.hh"
Paper_score::Paper_score (Output_def *layout)
{
layout_ = layout;
system_ = 0;
systems_ = SCM_EOL;
paper_systems_ = SCM_BOOL_F;
}
Paper_score::Paper_score (Paper_score const &s)
: Music_output (s)
{
assert (false);
}
void
Paper_score::derived_mark () const
{
if (layout_)
scm_gc_mark (layout_->self_scm ());
scm_gc_mark (systems_);
scm_gc_mark (paper_systems_);
}
void
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 ();
}
vector<vsize>
Paper_score::find_break_indices () const
{
vector<Grob*> all = root_system ()->columns ();
vector<vsize> retval;
for (vsize i = 0; i < all.size (); i++)
{
Item *it = dynamic_cast<Item*> (all[i]);
if (Paper_column::is_breakable (all[i])
&& (i == 0 || it->find_prebroken_piece (LEFT))
&& (i == all.size () - 1 || it->find_prebroken_piece (RIGHT)))
retval.push_back (i);
}
cols_ = all;
break_indices_ = retval;
return retval;
}
vector<vsize>
Paper_score::get_break_indices () const
{
if (break_indices_.empty ())
find_break_indices ();
return break_indices_;
}
vector<Grob*>
Paper_score::get_columns () const
{
if (cols_.empty ())
find_break_indices ();
return cols_;
}
vector<Column_x_positions>
Paper_score::calc_breaking ()
{
Break_algorithm *algorithm = 0;
vector<Column_x_positions> sol;
message (_ ("Calculating line breaks...") + " ");
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;
return sol;
}
void
Paper_score::process ()
{
if (be_verbose_global)
message (_f ("Element count %d (spanners %d) ",
system_->element_count (),
system_->spanner_count ()));
message (_ ("Preprocessing graphical objects...") + " ");
/* FIXME: Check out why we need this - removing gives assertion failures
down the road.
doubly, also done in Score_engraver */
vector<Grob*> pc (system_->columns ());
pc[0]->set_property ("line-break-permission", ly_symbol2scm ("allow"));
pc.back ()->set_property ("line-break-permission", ly_symbol2scm ("allow"));
system_->pre_processing ();
}
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<Column_x_positions> breaking = calc_breaking ();
system_->break_into_pieces (breaking);
message (_ ("Drawing systems...") + " ");
paper_systems_ = system_->get_paper_systems ();
}
return paper_systems_;
}
|