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
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
|
/*
This file is part of LilyPond, the GNU music typesetter.
Copyright (C) 1998--2012 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 "pitch.hh"
#include "main.hh"
#include "scale.hh"
#include "string-convert.hh"
#include "warn.hh"
#include "ly-smobs.icc"
#include <cmath>
Pitch::Pitch (int o, int n, Rational a)
{
notename_ = n;
alteration_ = a;
octave_ = o;
scale_ = default_global_scale;
normalize_octave ();
}
/* FIXME: why is octave == 0 and default not middleC ? */
Pitch::Pitch ()
{
notename_ = 0;
scale_ = default_global_scale;
octave_ = 0;
alteration_ = (Rational)0;
}
int
Pitch::compare (Pitch const &m1, Pitch const &m2)
{
int o = m1.octave_ - m2.octave_;
int n = m1.notename_ - m2.notename_;
Rational a = m1.alteration_ - m2.alteration_;
if (o)
return o;
if (n)
return n;
if (a)
return a > (Rational)0 ? 1 : -1;
return 0;
}
int
Pitch::steps () const
{
return notename_ + octave_ * scale_->step_count ();
}
Rational
Pitch::tone_pitch () const
{
return scale_->tones_at_step (notename_, octave_) + alteration_;
}
/* Calculate pitch height in 12th octave steps. Don't assume
normalized pitch as this function is used to normalize the pitch. */
int
Pitch::rounded_semitone_pitch () const
{
return int (floor (double (tone_pitch () * Rational (2) + Rational (1, 2))));
}
int
Pitch::rounded_quartertone_pitch () const
{
return int (floor (double (tone_pitch () * Rational (4) + Rational (1, 2))));
}
void
Pitch::normalize_octave ()
{
int normalized_step = notename_ % scale_->step_count ();
if (normalized_step < 0)
normalized_step += scale_->step_count ();
octave_ += (notename_ - normalized_step) / scale_->step_count ();
notename_ = normalized_step;
}
void
Pitch::normalize_alteration ()
{
while (alteration_ > Rational (1))
{
alteration_ -= scale_->step_size (notename_);
notename_++;
}
while (alteration_ < Rational (-1))
{
notename_--;
alteration_ += scale_->step_size (notename_);
}
}
void
Pitch::normalize ()
{
normalize_alteration ();
normalize_octave ();
}
void
Pitch::transpose (Pitch delta)
{
Rational new_alter = tone_pitch () + delta.tone_pitch ();
octave_ += delta.octave_;
notename_ += delta.notename_;
alteration_ += new_alter - tone_pitch ();
normalize_octave ();
}
Pitch
pitch_interval (Pitch const &from, Pitch const &to)
{
Rational sound = to.tone_pitch () - from.tone_pitch ();
Pitch pt (to.get_octave () - from.get_octave (),
to.get_notename () - from.get_notename (),
to.get_alteration () - from.get_alteration ());
return pt.transposed (Pitch (0, 0, sound - pt.tone_pitch ()));
}
/* FIXME
Merge with *pitch->text* funcs in chord-name.scm */
char const *accname[] = {"eses", "eseh", "es", "eh", "",
"ih", "is", "isih", "isis"
};
string
Pitch::to_string () const
{
int n = (notename_ + 2) % scale_->step_count ();
string s = ::to_string (char (n + 'a'));
Rational qtones = alteration_ * Rational (4, 1);
int qt = int (rint (Real (qtones)));
s += string (accname[qt + 4]);
if (octave_ >= 0)
{
int o = octave_ + 1;
while (o--)
s += "'";
}
else if (octave_ < 0)
{
int o = (-octave_) - 1;
while (o--)
s += ::to_string (',');
}
return s;
}
/* Change me to relative, counting from last pitch p
return copy of resulting pitch. */
Pitch
Pitch::to_relative_octave (Pitch p) const
{
/* account for c' = octave 1 iso. 0 4 */
int oct_mod = octave_ + 1;
Pitch up_pitch (p);
Pitch down_pitch (p);
up_pitch.alteration_ = alteration_;
down_pitch.alteration_ = alteration_;
Pitch n = *this;
up_pitch.up_to (notename_);
down_pitch.down_to (notename_);
int h = p.steps ();
if (abs (up_pitch.steps () - h) < abs (down_pitch.steps () - h))
n = up_pitch;
else
n = down_pitch;
n.octave_ += oct_mod;
return n;
}
void
Pitch::up_to (int notename)
{
if (notename_ > notename)
octave_++;
notename_ = notename;
}
void
Pitch::down_to (int notename)
{
if (notename_ < notename)
octave_--;
notename_ = notename;
}
IMPLEMENT_TYPE_P (Pitch, "ly:pitch?");
SCM
Pitch::mark_smob (SCM x)
{
Pitch *p = (Pitch *) SCM_CELL_WORD_1 (x);
return p->scale_->self_scm ();
}
IMPLEMENT_SIMPLE_SMOBS (Pitch);
int
Pitch::print_smob (SCM s, SCM port, scm_print_state *)
{
Pitch *r = (Pitch *) SCM_CELL_WORD_1 (s);
scm_puts ("#<Pitch ", port);
scm_display (ly_string2scm (r->to_string ()), port);
scm_puts (" >", port);
return 1;
}
SCM
Pitch::equal_p (SCM a, SCM b)
{
Pitch *p = (Pitch *) SCM_CELL_WORD_1 (a);
Pitch *q = (Pitch *) SCM_CELL_WORD_1 (b);
bool eq = p->notename_ == q->notename_
&& p->octave_ == q->octave_
&& p->alteration_ == q->alteration_;
return eq ? SCM_BOOL_T : SCM_BOOL_F;
}
MAKE_SCHEME_CALLBACK (Pitch, less_p, 2);
SCM
Pitch::less_p (SCM p1, SCM p2)
{
Pitch *a = unsmob_pitch (p1);
Pitch *b = unsmob_pitch (p2);
if (compare (*a, *b) < 0)
return SCM_BOOL_T;
else
return SCM_BOOL_F;
}
int
Pitch::get_octave () const
{
return octave_;
}
int
Pitch::get_notename () const
{
return notename_;
}
Rational
Pitch::get_alteration () const
{
return alteration_;
}
Pitch
Pitch::transposed (Pitch d) const
{
Pitch p = *this;
p.transpose (d);
return p;
}
Pitch
Pitch::normalized () const
{
Pitch p = *this;
p.normalize ();
return p;
}
Rational NATURAL_ALTERATION (0);
Rational FLAT_ALTERATION (-1, 2);
Rational DOUBLE_FLAT_ALTERATION (-1);
Rational SHARP_ALTERATION (1, 2);
Pitch
Pitch::negated () const
{
return pitch_interval (*this, Pitch ());
}
|