Fixes Issue 1504, allowing feather beam line breaking.
[lilypond/patrick.git] / lily / pitch-scheme.cc
blobbc69b633a780dd3cb995e26ff40a91affd88719f
1 /*
2 This file is part of LilyPond, the GNU music typesetter.
4 Copyright (C) 2005--2011 Han-Wen Nienhuys <hanwen@xs4all.nl>
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.
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.
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/>.
20 #include "pitch.hh"
22 LY_DEFINE (ly_pitch_transpose, "ly:pitch-transpose",
23 2, 0, 0, (SCM p, SCM delta),
24 "Transpose @var{p} by the amount @var{delta},"
25 " where @var{delta} is relative to middle@tie{}C.")
27 LY_ASSERT_SMOB (Pitch, p, 1);
28 LY_ASSERT_SMOB (Pitch, delta, 2);
30 Pitch *t = unsmob_pitch (p);
31 Pitch *d = unsmob_pitch (delta);
32 return t->transposed (*d).smobbed_copy ();
35 /* Should add optional args. */
36 LY_DEFINE (ly_make_pitch, "ly:make-pitch",
37 2, 1, 0, (SCM octave, SCM note, SCM alter),
38 "@var{octave} is specified by an integer, zero for the octave"
39 " containing middle@tie{}C. @var{note} is a number indexing the"
40 " global default scale, with 0 corresponding to pitch@tie{}C"
41 " and 6 usually corresponding to pitch@tie{}B. @var{alter} is"
42 " a rational number of 200-cent whole tones for alteration.")
45 LY_ASSERT_TYPE (scm_is_integer, octave, 1);
46 LY_ASSERT_TYPE (scm_is_integer, note, 2);
47 LY_ASSERT_TYPE (scm_is_rational, alter, 3);
49 Pitch p (scm_to_int (octave), scm_to_int (note),
50 ly_scm2rational (alter));
52 return p.smobbed_copy ();
55 LY_DEFINE (ly_pitch_negate, "ly:pitch-negate", 1, 0, 0,
56 (SCM p),
57 "Negate @var{p}.")
59 LY_ASSERT_SMOB (Pitch, p, 1);
60 Pitch *pp = unsmob_pitch (p);
61 return pp->negated ().smobbed_copy ();
64 LY_DEFINE (ly_pitch_steps, "ly:pitch-steps", 1, 0, 0,
65 (SCM p),
66 "Number of steps counted from middle@tie{}C of the"
67 " pitch@tie{}@var{p}.")
69 LY_ASSERT_SMOB (Pitch, p, 1);
70 Pitch *pp = unsmob_pitch (p);
71 return scm_from_int (pp->steps ());
74 LY_DEFINE (ly_pitch_octave, "ly:pitch-octave",
75 1, 0, 0, (SCM pp),
76 "Extract the octave from pitch@tie{}@var{pp}.")
78 LY_ASSERT_SMOB (Pitch, pp, 1);
79 Pitch *p = unsmob_pitch (pp);
80 int q = p->get_octave ();
81 return scm_from_int (q);
84 LY_DEFINE (ly_pitch_alteration, "ly:pitch-alteration",
85 1, 0, 0, (SCM pp),
86 "Extract the alteration from pitch@tie{}@var{pp}.")
88 LY_ASSERT_SMOB (Pitch, pp, 1);
89 Pitch *p = unsmob_pitch (pp);
90 Rational q = p->get_alteration ();
92 return ly_rational2scm (q);
95 LY_DEFINE (pitch_notename, "ly:pitch-notename",
96 1, 0, 0, (SCM pp),
97 "Extract the note name from pitch @var{pp}.")
99 LY_ASSERT_SMOB (Pitch, pp, 1);
100 Pitch *p = unsmob_pitch (pp);
101 int q = p->get_notename ();
102 return scm_from_int (q);
105 LY_DEFINE (ly_pitch_quartertones, "ly:pitch-quartertones",
106 1, 0, 0, (SCM pp),
107 "Calculate the number of quarter tones of@tie{}@var{pp} from"
108 " middle@tie{}C.")
110 LY_ASSERT_SMOB (Pitch, pp, 1);
111 Pitch *p = unsmob_pitch (pp);
112 int q = p->rounded_quartertone_pitch ();
113 return scm_from_int (q);
116 LY_DEFINE (ly_pitch_semitones, "ly:pitch-semitones",
117 1, 0, 0, (SCM pp),
118 "Calculate the number of semitones of@tie{}@var{pp} from"
119 " middle@tie{}C.")
121 LY_ASSERT_SMOB (Pitch, pp, 1);
122 Pitch *p = unsmob_pitch (pp);
123 int q = p->rounded_semitone_pitch ();
124 return scm_from_int (q);
127 LY_DEFINE (ly_pitch_less_p, "ly:pitch<?",
128 2, 0, 0, (SCM p1, SCM p2),
129 "Is @var{p1} lexicographically smaller than @var{p2}?")
131 LY_ASSERT_SMOB (Pitch, p1, 1);
132 LY_ASSERT_SMOB (Pitch, p2, 2);
134 Pitch *a = unsmob_pitch (p1);
135 Pitch *b = unsmob_pitch (p2);
137 if (Pitch::compare (*a, *b) < 0)
138 return SCM_BOOL_T;
139 else
140 return SCM_BOOL_F;
143 LY_DEFINE (ly_pitch_diff, "ly:pitch-diff",
144 2, 0, 0, (SCM pitch, SCM root),
145 "Return pitch @var{delta} such that @var{pitch} transposed by"
146 " @var{delta} equals @var{root}.")
149 LY_ASSERT_SMOB (Pitch, pitch, 1);
150 LY_ASSERT_SMOB (Pitch, root, 2);
152 Pitch *p = unsmob_pitch (pitch);
153 Pitch *r = unsmob_pitch (root);
155 return pitch_interval (*r, *p).smobbed_copy ();
158 /* FIXME: probably isn't the right place for this function */
159 #include "context.hh"
160 LY_DEFINE (ly_set_middle_C_x, "ly:set-middle-C!",
161 1, 0, 0, (SCM context),
162 "Set the @code{middleCPosition} variable in @var{context}"
163 " based on the variables @code{middleCClefPosition} and"
164 " middleCOffset.")
166 LY_ASSERT_SMOB (Context, context, 1);
168 Context *c = unsmob_context (context);
169 int clef_pos = robust_scm2int (c->get_property ("middleCClefPosition"), 0);
170 int offset = robust_scm2int (c->get_property ("middleCOffset"), 0);
171 /* middleCCuePosition overrides the clef! */
172 SCM cue_pos = c->get_property ("middleCCuePosition");
173 if (scm_is_number (cue_pos))
174 clef_pos = robust_scm2int (cue_pos, 0);
176 c->set_property (ly_symbol2scm ("middleCPosition"), scm_from_int (clef_pos + offset));
177 return SCM_UNDEFINED;