X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fspring-smob.cc;h=95d20c4333fea9ff36b9a6bb9af3fc2adbcc3d09;hb=8019ff784cd3aa6cc43b8eb8f29a621bc5800f5c;hp=b00bd9df12ca4c12c0cd62ce2ddd4982a5814969;hpb=ce521e79fd7669b45c8c1132e4b5693a03b5d90a;p=lilypond.git diff --git a/lily/spring-smob.cc b/lily/spring-smob.cc index b00bd9df12..95d20c4333 100644 --- a/lily/spring-smob.cc +++ b/lily/spring-smob.cc @@ -1,47 +1,82 @@ -/* - spring.cc -- implement Spring - - source file of the GNU LilyPond music typesetter - - (c) 1999--2002 Han-Wen Nienhuys - - */ +/* + This file is part of LilyPond, the GNU music typesetter. -#include "spring.hh" -#include "debug.hh" -#include "ly-smobs.icc" + Copyright (C) 1999--2012 Han-Wen Nienhuys -Spring_smob::Spring_smob() -{ - distance_f_ =0.; - strength_f_ =1.0; - expand_only_b_ = false; - other_ = 0; -} + 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. -IMPLEMENT_SIMPLE_SMOBS(Spring_smob); + You should have received a copy of the GNU General Public License + along with LilyPond. If not, see . +*/ + +#include "spring.hh" +#include "warn.hh" +#include "ly-smobs.icc" + +IMPLEMENT_SIMPLE_SMOBS (Spring); SCM -Spring_smob::mark_smob (SCM) { return SCM_UNSPECIFIED; } +Spring::mark_smob (SCM) +{ + return SCM_UNSPECIFIED; +} int -Spring_smob::print_smob (SCM s, SCM p, scm_print_state *) +Spring::print_smob (SCM, SCM p, scm_print_state *) { - Spring_smob *ss = unsmob_spring (s); - scm_puts (_f("#", ss->distance_f_).ch_C(), p); + scm_puts ("#", p); return 1; } SCM -Spring_smob::equal_p (SCM a , SCM b) +Spring::equal_p (SCM a, SCM b) { - return a==b? SCM_BOOL_T : SCM_BOOL_F; + return a == b ? SCM_BOOL_T : SCM_BOOL_F; } -SCM -Spring_smob::smobbed_copy ()const +LY_DEFINE (ly_make_spring, "ly:make-spring", + 2, 0, 0, (SCM ideal, SCM min_dist), + "Make a spring. @var{ideal} is the ideal distance of the" + " spring, and @var{min-dist} is the minimum distance.") { - Spring_smob * p = new Spring_smob (*this); - return p->smobbed_self (); + LY_ASSERT_TYPE (scm_is_number, ideal, 1); + LY_ASSERT_TYPE (scm_is_number, min_dist, 2); + + Spring s (scm_to_double (ideal), scm_to_double (min_dist)); + + return s.smobbed_copy (); +} + +LY_DEFINE (ly_spring_set_inverse_compress_strength_x, "ly:spring-set-inverse-compress-strength!", + 2, 0, 0, (SCM spring, SCM strength), + "Set the inverse compress @var{strength} of @var{spring}.") +{ + LY_ASSERT_SMOB (Spring, spring, 1); + LY_ASSERT_TYPE (scm_is_number, strength, 2); + + Spring *s = unsmob_spring (spring); + s->set_inverse_compress_strength (scm_to_double (strength)); + return s->smobbed_copy (); } + +LY_DEFINE (ly_spring_set_inverse_stretch_strength_x, "ly:spring-set-inverse-stretch-strength!", + 2, 0, 0, (SCM spring, SCM strength), + "Set the inverse stretch @var{strength} of @var{spring}.") +{ + LY_ASSERT_SMOB (Spring, spring, 1); + LY_ASSERT_TYPE (scm_is_number, strength, 2); + + Spring *s = unsmob_spring (spring); + s->set_inverse_stretch_strength (scm_to_double (strength)); + return s->smobbed_copy (); +} + +IMPLEMENT_TYPE_P (Spring, "ly:spring?");