lilypond-1.3.69
[lilypond.git] / lily / moment.cc
blob8495cdc47068a08230cd20bcaae09b78a9895bb8
1 /*
2 moment.cc -- implement Moment
4 source file of the GNU LilyPond music typesetter
6 (c) 1999--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8 */
11 #include "lily-guile.hh"
12 #include "moment.hh"
13 #include "warn.hh"
15 SCM
16 Moment::mark_smob (SCM)
18 return SCM_EOL;
22 Moment::~Moment()
24 self_scm_ = SCM_EOL;
27 int
28 Moment::print_smob (SCM s, SCM port, scm_print_state *)
30 Moment *r = (Moment *) gh_cdr (s);
32 scm_puts ("#<Mom ", port);
33 String str(r->str());
34 scm_puts ((char *)str.ch_C(), port);
35 scm_puts (" >", port);
37 return 1;
40 void
41 Moment::do_smobify_self ()
45 SCM
46 make_rational (SCM n, SCM d)
48 Moment *r;
49 SCM retval = SCM_EOL;
50 if (SCM_INUMP (n) && SCM_INUMP(d))
52 r= new Moment (gh_scm2int (n), gh_scm2int (d));
54 else
56 ::error ("make-moment takes two integer arguments.");
57 r = new Moment (1,1);
60 retval = r->smobify_self ();
61 scm_unprotect_object (r->self_scm_);
62 return retval ;
65 #include "ly-smobs.icc"
67 IMPLEMENT_UNSMOB(Moment,moment);
68 IMPLEMENT_SMOBS(Moment);
70 void
71 init_moments ()
73 scm_make_gsubr ("make-moment", 2 , 0, 0, (SCM(*)(...)) make_rational);
76 ADD_SCM_INIT_FUNC(moms,init_moments);
78 SCM
79 Moment::equal_p (SCM a, SCM b)
81 Moment *m1 = SMOB_TO_TYPE(Moment, a);
82 Moment *m2 = SMOB_TO_TYPE(Moment, b);
84 return (*m1 == *m2) ? SCM_BOOL_T : SCM_BOOL_F;