]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/midi-def.cc
* lily/include/scm-hash.hh (class Scheme_hash_table): idem.
[lilypond.git] / lily / midi-def.cc
index 1915e8207153f3506f9bd7340e0f538c2153a630..e42f2dce6e4e7c3fab47266dd8cb937566fda09b 100644 (file)
@@ -3,42 +3,40 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--2000 Jan Nieuwenhuizen <janneke@gnu.org>
+  (c)  1997--2003 Jan Nieuwenhuizen <janneke@gnu.org>
 
 */
 #include <math.h>
 #include "misc.hh"
 #include "midi-def.hh"
-#include "translator.hh"
 #include "performance.hh"
-#include "score-performer.hh"
-#include "debug.hh"
+#include "warn.hh"
+#include "scm-hash.hh"
 
-Midi_def::Midi_def()
+Midi_def::Midi_def ()
 {
   // ugh
-  set_tempo (Moment (1, 4), 60);
+  set_tempo (Moment (Rational (1, 4)), 60);
 }
 
-Midi_def::~Midi_def()
-{
-}
-
-Real
-Midi_def::length_mom_to_seconds_f (Moment mom)
-{
-  if (!mom)
-    return 0;
-  
-  return Moment (whole_in_seconds_mom_) * mom;
-}
-
-
 int
-Midi_def::get_tempo_i (Moment one_beat_mom)
-{
-  Moment wholes_per_min = Moment(60) /Moment(whole_in_seconds_mom_);
-  int beats_per_min = wholes_per_min / one_beat_mom;
+Midi_def::get_tempo (Moment one_beat_mom)
+{
+  SCM wis  = ly_symbol2scm ("whole-in-seconds");
+  Moment *w = unsmob_moment (lookup_variable (wis));
+
+  Moment wholes_per_min = Moment (60);
+  if (!w)
+    {
+      programming_error  ("wholes-in-seconds not set.");
+      wholes_per_min /= 4;
+    }
+  else
+    {
+      wholes_per_min /= *w; 
+    }
+  
+  int beats_per_min =  int ((wholes_per_min / one_beat_mom).main_part_);
   return int (beats_per_min);
 }
 
@@ -46,30 +44,8 @@ void
 Midi_def::set_tempo (Moment one_beat_mom, int beats_per_minute_i)
 {
   Moment beats_per_second = Moment (beats_per_minute_i) / Moment (60);
-  whole_in_seconds_mom_ = Moment(1)/Moment(beats_per_second * one_beat_mom);
-}
 
-void
-Midi_def::print() const
-{
-#ifndef NPRINT
-  DEBUG_OUT << "MIDI {\n";
-  Music_output_def::print ();
-  DEBUG_OUT << "4/min: " << Moment (60) / (whole_in_seconds_mom_ * Moment (4));
-  DEBUG_OUT << "}\n";  
-#endif
-}
-
-int Midi_def::default_count_i_=0;
-
-int
-Midi_def::get_next_default_count () const
-{
-  return default_count_i_++;
+  Moment m = Moment (1)/Moment (beats_per_second * one_beat_mom);
+  set_variable (ly_symbol2scm ("whole-in-seconds"), m.smobbed_copy ());
 }
 
-void
-Midi_def::reset_default_count ()
-{
-  default_count_i_ = 0;
-}