X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fduration-scheme.cc;h=7d0788ea3eef5c4aa42e5b67d1e9dde2be60c1b8;hb=a6a51abfd0195a3cf7d6ea095cf69808852f21ce;hp=de8646e85879a5e5fdd18057e172318ee8c56116;hpb=e42585017a01fd02f6353b994cf0c87b03a7bb2e;p=lilypond.git diff --git a/lily/duration-scheme.cc b/lily/duration-scheme.cc index de8646e858..7d0788ea3e 100644 --- a/lily/duration-scheme.cc +++ b/lily/duration-scheme.cc @@ -1,10 +1,21 @@ /* - duration.cc -- implement Duration + This file is part of LilyPond, the GNU music typesetter. - source file of the LilyPond music typesetter - - (c) 1997--2006 Jan Nieuwenhuizen + Copyright (C) 1997--2015 Jan Nieuwenhuizen Han-Wen Nienhuys + + 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 . */ #include "duration.hh" @@ -14,8 +25,8 @@ 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); + Duration *a = unsmob (p1); + Duration *b = unsmob (p2); if (compare (*a, *b) < 0) return SCM_BOOL_T; @@ -24,14 +35,14 @@ Duration::less_p (SCM p1, SCM p2) } LY_DEFINE (ly_duration_less_p, "ly:duration (p1); + Duration *b = unsmob (p2); if (Duration::compare (*a, *b) < 0) return SCM_BOOL_T; @@ -40,42 +51,40 @@ LY_DEFINE (ly_duration_less_p, "ly:durationduration_log ()); + LY_ASSERT_SMOB (Duration, dur, 1); + return scm_from_int (unsmob (dur)->duration_log ()); } LY_DEFINE (ly_duration_dot_count, "ly:duration-dot-count", - 1, 0, 0, (SCM dur), - "Extract the dot count from @var{dur}") + 1, 0, 0, (SCM dur), + "Extract the dot count from @var{dur}.") { - SCM_ASSERT_TYPE (unsmob_duration (dur), dur, SCM_ARG1, __FUNCTION__, "duration"); - return scm_from_int (unsmob_duration (dur)->dot_count ()); + LY_ASSERT_SMOB (Duration, dur, 1); + return scm_from_int (unsmob (dur)->dot_count ()); } LY_DEFINE (ly_intlog2, "ly:intlog2", - 1, 0, 0, (SCM d), - "The 2-logarithm of 1/@var{d}.") + 1, 0, 0, (SCM d), + "The 2-logarithm of 1/@var{d}.") { - SCM_ASSERT_TYPE (scm_is_number (d), d, SCM_ARG1, __FUNCTION__, "integer"); + LY_ASSERT_TYPE (scm_is_number, d, 1); int log = intlog2 (scm_to_int (d)); return scm_from_int (log); } LY_DEFINE (ly_duration_length, "ly:duration-length", - 1, 0, 0, (SCM dur), - "The length of the duration as a Moment.") + 1, 0, 0, (SCM dur), + "The length of the duration as a @code{moment}.") { - SCM_ASSERT_TYPE (unsmob_duration (dur), dur, SCM_ARG1, __FUNCTION__, "duration"); - return Moment (unsmob_duration (dur)->get_length ()).smobbed_copy (); + LY_ASSERT_SMOB (Duration, dur, 1); + return Moment (unsmob (dur)->get_length ()).smobbed_copy (); } -LY_DEFINE (ly_duration2string, "ly:duration->string", - 1, 0, 0, (SCM dur), - "Convert @var{dur} to string.") +LY_DEFINE (ly_duration_2_string, "ly:duration->string", + 1, 0, 0, (SCM dur), + "Convert @var{dur} to a string.") { - SCM_ASSERT_TYPE (unsmob_duration (dur), dur, SCM_ARG1, __FUNCTION__, "duration"); - return ly_string2scm (unsmob_duration (dur)->to_string ()); + LY_ASSERT_SMOB (Duration, dur, 1); + return ly_string2scm (unsmob (dur)->to_string ()); } LY_DEFINE (ly_duration_factor, "ly:duration-factor", - 1, 0, 0, (SCM dur), - "Extract the compression factor from @var{dur}. Return as a pair.") + 1, 0, 0, (SCM dur), + "Extract the compression factor from @var{dur}." + " Return it as a pair.") { - SCM_ASSERT_TYPE (unsmob_duration (dur), dur, SCM_ARG1, __FUNCTION__, "duration"); - Rational r = unsmob_duration (dur)->factor (); - return scm_cons (scm_from_int (r.num ()), scm_from_int (r.den ())); + LY_ASSERT_SMOB (Duration, dur, 1); + Rational r = unsmob (dur)->factor (); + return scm_cons (scm_from_int64 (r.num ()), scm_from_int64 (r.den ())); +} + +// This is likely what ly:duration-factor should have been in the +// first place. +LY_DEFINE (ly_duration_scale, "ly:duration-scale", + 1, 0, 0, (SCM dur), + "Extract the compression factor from @var{dur}." + " Return it as a rational.") +{ + LY_ASSERT_SMOB (Duration, dur, 1); + Rational r = unsmob (dur)->factor (); + + return ly_rational2scm (r); }