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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
|
/*
This file is part of LilyPond, the GNU music typesetter.
Copyright (C) 1997--2015 Han-Wen Nienhuys <hanwen@xs4all.nl>
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 <http://www.gnu.org/licenses/>.
*/
#include "note-column.hh"
#include <cmath> // ceil
using namespace std;
#include "accidental-placement.hh"
#include "axis-group-interface.hh"
#include "directional-element-interface.hh"
#include "international.hh"
#include "item.hh"
#include "note-head.hh"
#include "output-def.hh"
#include "pointer-group-interface.hh"
#include "rest.hh"
#include "staff-symbol-referencer.hh"
#include "stem.hh"
#include "warn.hh"
/*
TODO: figure out if we can prune this class. This is just an
annoying layer between (rest)collision & (note-head + stem)
*/
bool
Note_column::has_rests (Grob *me)
{
return unsmob<Grob> (me->get_object ("rest"));
}
bool
Note_column::shift_less (Grob *const &p1, Grob *const &p2)
{
SCM s1 = p1->get_property ("horizontal-shift");
SCM s2 = p2->get_property ("horizontal-shift");
int h1 = (scm_is_number (s1)) ? scm_to_int (s1) : 0;
int h2 = (scm_is_number (s2)) ? scm_to_int (s2) : 0;
return h1 < h2;
}
Item *
Note_column::get_stem (Grob *me)
{
SCM s = me->get_object ("stem");
return unsmob<Item> (s);
}
Item *
Note_column::get_flag (Grob *me)
{
Item *stem = get_stem (me);
if (stem)
{
SCM s = stem->get_object ("flag");
return unsmob<Item> (s);
}
return 0;
}
Slice
Note_column::head_positions_interval (Grob *me)
{
Slice iv;
iv.set_empty ();
extract_grob_set (me, "note-heads", heads);
for (vsize i = 0; i < heads.size (); i++)
{
Grob *se = heads[i];
int j = Staff_symbol_referencer::get_rounded_position (se);
iv.unite (Slice (j, j));
}
return iv;
}
Direction
Note_column::dir (Grob *me)
{
Grob *stem = unsmob<Grob> (me->get_object ("stem"));
if (has_interface<Stem> (stem))
return get_grob_direction (stem);
else
{
extract_grob_set (me, "note-heads", heads);
if (heads.size ())
return (Direction)sign (head_positions_interval (me).center ());
}
if (has_interface<Note_column> (me))
programming_error ("Note_column without heads and stem");
else
programming_error ("dir() given grob without Note_column interface");
return CENTER;
}
void
Note_column::set_stem (Grob *me, Grob *stem)
{
me->set_object ("stem", stem->self_scm ());
Axis_group_interface::add_element (me, stem);
}
Grob *
Note_column::get_rest (Grob *me)
{
return unsmob<Grob> (me->get_object ("rest"));
}
void
Note_column::add_head (Grob *me, Grob *h)
{
bool both = false;
if (has_interface<Rest> (h))
{
extract_grob_set (me, "note-heads", heads);
if (heads.size ())
both = true;
else
me->set_object ("rest", h->self_scm ());
}
else if (has_interface<Note_head> (h))
{
if (unsmob<Grob> (me->get_object ("rest")))
both = true;
Pointer_group_interface::add_grob (me, ly_symbol2scm ("note-heads"), h);
}
if (both)
me->warning (_ ("cannot have note heads and rests together on a stem"));
else
Axis_group_interface::add_element (me, h);
}
Grob *
Note_column::first_head (Grob *me)
{
Grob *st = get_stem (me);
return st ? Stem::first_head (st) : 0;
}
/*
Return extent of the noteheads in the "main column",
(i.e. excluding any suspended noteheads), or extent
of the rest (if there are no heads).
*/
Interval
Note_column::calc_main_extent (Grob *me)
{
Grob *main_head = 0;
if (get_stem (me))
main_head = first_head (me);
else
{
// no stems => no suspended noteheads.
extract_grob_set (me, "note-heads", heads);
if (heads.size())
main_head = heads[0];
}
Grob *main_item = main_head
? main_head
: unsmob<Grob> (me->get_object ("rest"));
return main_item
? main_item->extent (me, X_AXIS)
: Interval (0, 0);
}
/*
Return the first AccidentalPlacement grob that we find in a note-head.
*/
Grob *
Note_column::accidentals (Grob *me)
{
extract_grob_set (me, "note-heads", heads);
Grob *acc = 0;
for (vsize i = 0; i < heads.size (); i++)
{
Grob *h = heads[i];
acc = h ? unsmob<Grob> (h->get_object ("accidental-grob")) : 0;
if (acc)
break;
}
if (!acc)
return 0;
if (has_interface<Accidental_placement> (acc->get_parent (X_AXIS)))
return acc->get_parent (X_AXIS);
/* compatibility. */
return acc;
}
Grob *
Note_column::dot_column (Grob *me)
{
extract_grob_set (me, "note-heads", heads);
for (vsize i = 0; i < heads.size (); i++)
{
Grob *dots = unsmob<Grob> (heads[i]->get_object ("dot"));
if (dots)
return dots->get_parent (X_AXIS);
}
return 0;
}
/* If a note-column contains a cross-staff stem then
nc->extent (Y_AXIS, refp) will not consider the extent of the stem.
If you want the extent of the stem to be included (and you are safe
from any cross-staff issues) then call this function instead. */
Interval
Note_column::cross_staff_extent (Grob *me, Grob *refp)
{
Interval iv = me->extent (refp, Y_AXIS);
if (Grob *s = get_stem (me))
iv.unite (s->extent (refp, Y_AXIS));
return iv;
}
ADD_INTERFACE (Note_column,
"Stem and noteheads combined.",
/* properties */
"force-hshift "
"horizontal-shift "
"ignore-collision "
"note-heads "
"rest "
"rest-collision "
"stem "
);
|