2 This file is part of LilyPond, the GNU music typesetter.
4 Copyright (C) 2006--2012 Han-Wen Nienhuys <hanwen@lilypond.org>
5 2007--2008 Rune Zedeler
6 2008 Joe Neeman <joeneeman@gmail.com>
8 LilyPond is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
13 LilyPond is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with LilyPond. If not, see <http://www.gnu.org/licenses/>.
24 #include "ly-smobs.icc"
27 todo: put string <-> pitch here too.
29 LY_DEFINE (ly_make_scale, "ly:make-scale",
32 " The argument is a vector of rational numbers, each of which"
33 " represents the number of 200 cent tones of a pitch above the"
36 bool type_ok = scm_is_vector (steps);
38 vector<Rational> tones;
41 int len = scm_c_vector_length (steps);
42 for (int i = 0; i < len; i++)
44 SCM step = scm_c_vector_ref (steps, i);
45 type_ok = type_ok && scm_is_rational (step);
48 Rational from_c (scm_to_int (scm_numerator (step)),
49 scm_to_int (scm_denominator (step)));
50 tones.push_back (from_c);
55 SCM_ASSERT_TYPE (type_ok, steps, SCM_ARG1, __FUNCTION__, "vector of rational");
57 Scale *s = new Scale (tones);
59 SCM retval = s->self_scm ();
65 LY_DEFINE (ly_default_scale, "ly:default-scale",
67 "Get the global default scale.")
69 return default_global_scale
70 ? default_global_scale->self_scm ()
74 Scale *default_global_scale = 0;
76 LY_DEFINE (ly_set_default_scale, "ly:set-default-scale",
78 "Set the global default scale. This determines the tuning of"
79 " pitches with no accidentals or key signatures. The first"
80 " pitch is C. Alterations are calculated relative to this"
81 " scale. The number of pitches in this scale determines the"
82 " number of scale steps that make up an octave. Usually the"
83 " 7-note major scale.")
85 LY_ASSERT_SMOB (Scale, scale, 1);
87 Scale *s = Scale::unsmob (scale);
88 if (default_global_scale)
89 default_global_scale->unprotect ();
90 default_global_scale = s;
93 return SCM_UNSPECIFIED;
97 Scale::step_count () const
99 return step_tones_.size ();
103 Scale::tones_at_step (int step, int octave) const
105 int normalized_step = normalize_step (step);
107 octave += (step - normalized_step) / step_count ();
109 // There are 6 tones in an octave.
110 return step_tones_[normalized_step] + Rational (octave * 6);
114 Scale::step_size (int step) const
116 int normalized_step = normalize_step (step);
118 // Wrap around if we are asked for the final note of the
119 // scale (6 is the number of tones of the octave above the
121 if (normalized_step + 1 == step_count ())
122 return Rational (6) - step_tones_[normalized_step];
124 return step_tones_[normalized_step + 1] - step_tones_[normalized_step];
128 Scale::normalize_step (int step) const
130 int ret = step % step_count ();
132 ret += step_count ();
138 Scale::print_smob (SCM /* x */,
142 scm_puts ("#<Scale>", port);
147 Scale::mark_smob (SCM)
149 return SCM_UNSPECIFIED;
152 Scale::Scale (vector<Rational> const &tones)
159 Scale::Scale (Scale const &src)
161 step_tones_ = src.step_tones_;
169 IMPLEMENT_SMOBS (Scale);
170 IMPLEMENT_DEFAULT_EQUAL_P (Scale);