]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/duration.cc
Run grand-replace (issue 3765)
[lilypond.git] / lily / duration.cc
index 6476466774e51a8398660487d654f19361705e4c..894748f915788a9387add5c8ad5fdeb39d31e9cb 100644 (file)
@@ -1,41 +1,98 @@
 /*
-  duration.cc -- implement Duration, Plet, 
+  This file is part of LilyPond, the GNU music typesetter.
 
-  source file of the LilyPond music typesetter
+  Copyright (C) 1997--2014 Jan Nieuwenhuizen <janneke@gnu.org>
+  Han-Wen Nienhuys <hanwen@xs4all.nl>
 
-  (c)  1997--2001 Jan Nieuwenhuizen <janneke@gnu.org>
-           Han-Wen Nienhuys <hanwen@cs.uu.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.
 
-#include <assert.h>
+  You should have received a copy of the GNU General Public License
+  along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
+*/
 
-#include "lily-proto.hh"
-#include "string.hh"
-#include "moment.hh"
 #include "duration.hh"
-#include "ly-smobs.icc"
 
+#include "misc.hh"
+#include "lily-proto.hh"
 
+#include "ly-smobs.icc"
 
 int
 Duration::compare (Duration const &left, Duration const &right)
 {
-  return Rational::compare (left.length_mom (), right.length_mom ());
+  return Rational::compare (left.get_length (), right.get_length ());
 }
 
 Duration::Duration ()
 {
-  durlog_i_ = 0;
-  dots_i_ = 0;
-  factor_ = Rational (1,1);
+  durlog_ = 0;
+  dots_ = 0;
+  factor_ = Rational (1, 1);
 }
 
-Duration::Duration (int l, int d)
+Duration::Duration (int log, int d)
 {
-  durlog_i_ = l;
-  dots_i_ = d;
-  factor_ = Rational (1,1);
+  durlog_ = log;
+  dots_ = d;
+  factor_ = Rational (1, 1);
+}
+
+Duration::Duration (Rational r, bool scale)
+{
+  factor_ = Rational (1, 1);
+
+  if (r.num () == 0.0)
+    {
+      durlog_ = 0;
+      dots_ = 0;
+    }
+  else
+    {
+      /* we want to find the integer k for which 2q/p > 2^k >= q/p.
+         It's simple to check that k' = \floor \log q - \floor \log p
+         satisfies the left inequality and is within a factor of 2 of
+         satistying the right one. Therefore either k = k' or k = k'+1 */
+
+      int p = (int) r.num ();
+      int q = (int) r.den ();
+      int k = intlog2 (q) - intlog2 (p);
+      if (shift_left (p, k) < q)
+        k++;
+
+      assert (shift_left (p, k) >= q && shift_left (p, (k - 1)) < q);
+
+      /* If we were to write out log (p/q) in base 2, then the position of the
+         first non-zero bit (ie. k in our notation) would be the durlog
+         and the number of consecutive 1s after that bit would be the number of
+         dots */
+      p = shift_left (p, k) - q;
+      dots_ = 0;
+      while ((p *= 2) >= q)
+        {
+          p -= q;
+          dots_++;
+        }
+
+      /* we only go up to 64th notes */
+      if (k > 6)
+        {
+          durlog_ = 6;
+          dots_ = 0;
+        }
+      else
+        durlog_ = k;
+
+      if (scale || k > 6)
+        factor_ = r / get_length ();
+    }
 }
 
 Duration
@@ -47,16 +104,15 @@ Duration::compressed (Rational m) const
 }
 
 Rational
-Duration::length_mom () const
+Duration::get_length () const
 {
-  Rational mom (1 << abs (durlog_i_));
+  Rational mom (1 << abs (durlog_));
 
-  if (durlog_i_> 0)
-    mom = Rational (1)/mom;
+  if (durlog_ > 0)
+    mom = Rational (1) / mom;
 
   Rational delta = mom;
-
-  for (int d = dots_i_; d; d--)
+  for (int i = 0; i < dots_; i++)
     {
       delta /= Rational (2);
       mom += delta;
@@ -65,22 +121,23 @@ Duration::length_mom () const
   return mom * factor_;
 }
 
+string
+Duration::to_string () const
+{
+  string s;
 
+  if (durlog_ < 0)
+    s = "log = " + ::to_string (durlog_);
+  else
+    s = ::to_string (1 << durlog_);
 
-String
-Duration::str () const
-{
-  String s =  to_str (durlog_i_) + to_str ('.', dots_i_);
-  if (factor_ != Moment (Rational (1,1)))
-    {
-      s += "*" + factor_.str ();
-    }
+  s += ::to_string ('.', dots_);
+  if (factor_ != Moment (Rational (1, 1)))
+    s += "*" + factor_.to_string ();
   return s;
 }
 
-
-IMPLEMENT_TYPE_P (Duration, "duration?");
-IMPLEMENT_UNSMOB (Duration, duration);
+IMPLEMENT_TYPE_P (Duration, "ly:duration?");
 
 SCM
 Duration::mark_smob (SCM)
@@ -89,78 +146,39 @@ Duration::mark_smob (SCM)
 }
 
 IMPLEMENT_SIMPLE_SMOBS (Duration);
-
-
 int
 Duration::print_smob (SCM s, SCM port, scm_print_state *)
 {
-  Duration  *r = (Duration *) ly_cdr (s);
-     
+  Duration *r = (Duration *) SCM_CELL_WORD_1 (s);
+
   scm_puts ("#<Duration ", port);
-  scm_display (ly_str02scm (r->str ().ch_C ()), port);
+  scm_display (ly_string2scm (r->to_string ()), port);
   scm_puts (" >", port);
-  
+
   return 1;
 }
 
 SCM
-Duration::equal_p (SCM a , SCM b)
+Duration::equal_p (SCM a, SCM b)
 {
-  Duration  *p = (Duration *) ly_cdr (a);
-  Duration  *q = (Duration *) ly_cdr (b);  
+  Duration *p = (Duration *) SCM_CELL_WORD_1 (a);
+  Duration *q = (Duration *) SCM_CELL_WORD_1 (b);
 
-  bool eq = p->dots_i_ == q->dots_i_
-    && p->durlog_i_ == q->durlog_i_
-    && p->factor_ == q->factor_;
+  bool eq = p->dots_ == q->dots_
+            && p->durlog_ == q->durlog_
+            && p->factor_ == q->factor_;
 
   return eq ? SCM_BOOL_T : SCM_BOOL_F;
 }
-  
-MAKE_SCHEME_CALLBACK (Duration, less_p, 2);
-SCM
-Duration::less_p (SCM p1, SCM p2)
-{
-  Duration *a = unsmob_duration (p1);
-  Duration *b = unsmob_duration (p2);
-
-  if (compare (*a, *b) < 0)
-    return SCM_BOOL_T;
-  else
-    return SCM_BOOL_F;
-}
-
-static SCM
-make_duration (SCM l, SCM d)
-{
-  Duration p (gh_scm2int (l), gh_scm2int (d));
-  return p.smobbed_copy ();
-}
-
-static void
-add_funcs ()
-{
-  scm_c_define_gsubr ("make-duration", 2, 0, 0,
-                     (Scheme_function_unknown)make_duration);
-}
-
-ADD_SCM_INIT_FUNC (duration, add_funcs);
-
-SCM
-Duration::smobbed_copy ()const
-{
-  Duration *  p = new Duration (*this);
-  return p->smobbed_self ();
-}
 
 int
 Duration::duration_log () const
 {
-  return durlog_i_;
+  return durlog_;
 }
 
 int
 Duration::dot_count () const
 {
-  return dots_i_;
+  return dots_;
 }
-