2 This file is part of LilyPond, the GNU music typesetter.
4 Copyright (C) 1997--2014 Jan Nieuwenhuizen <janneke@gnu.org>
5 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 LilyPond is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
12 LilyPond is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with LilyPond. If not, see <http://www.gnu.org/licenses/>.
21 #include "duration.hh"
24 #include "lily-proto.hh"
28 Duration::compare (Duration const &left, Duration const &right)
30 return Rational::compare (left.get_length (), right.get_length ());
37 factor_ = Rational (1, 1);
40 Duration::Duration (int log, int d)
44 factor_ = Rational (1, 1);
47 Duration::Duration (Rational r, bool scale)
49 factor_ = Rational (1, 1);
58 /* we want to find the integer k for which 2q/p > 2^k >= q/p.
59 It's simple to check that k' = \floor \log q - \floor \log p
60 satisfies the left inequality and is within a factor of 2 of
61 satistying the right one. Therefore either k = k' or k = k'+1 */
63 int p = (int) r.num ();
64 int q = (int) r.den ();
65 int k = intlog2 (q) - intlog2 (p);
66 if (shift_left (p, k) < q)
69 assert (shift_left (p, k) >= q && shift_left (p, (k - 1)) < q);
71 /* If we were to write out log (p/q) in base 2, then the position of the
72 first non-zero bit (ie. k in our notation) would be the durlog
73 and the number of consecutive 1s after that bit would be the number of
75 p = shift_left (p, k) - q;
83 /* we only go up to 64th notes */
93 factor_ = r / get_length ();
98 Duration::compressed (Rational m) const
106 Duration::get_length () const
108 Rational mom (1 << abs (durlog_));
111 mom = Rational (1) / mom;
113 Rational delta = mom;
114 for (int i = 0; i < dots_; i++)
116 delta /= Rational (2);
120 return mom * factor_;
124 Duration::to_string () const
129 s = "log = " + ::to_string (durlog_);
131 s = ::to_string (1 << durlog_);
133 s += ::to_string ('.', dots_);
134 if (factor_ != Moment (Rational (1, 1)))
135 s += "*" + factor_.to_string ();
139 const char Duration::type_p_name_[] = "ly:duration?";
143 Duration::print_smob (SCM s, SCM port, scm_print_state *)
145 Duration *r = (Duration *) SCM_CELL_WORD_1 (s);
147 scm_puts ("#<Duration ", port);
148 scm_display (ly_string2scm (r->to_string ()), port);
149 scm_puts (" >", port);
155 Duration::equal_p (SCM a, SCM b)
157 Duration *p = (Duration *) SCM_CELL_WORD_1 (a);
158 Duration *q = (Duration *) SCM_CELL_WORD_1 (b);
160 bool eq = p->dots_ == q->dots_
161 && p->durlog_ == q->durlog_
162 && p->factor_ == q->factor_;
164 return eq ? SCM_BOOL_T : SCM_BOOL_F;
168 Duration::duration_log () const
174 Duration::dot_count () const