]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/midi-def.cc
release: 1.5.21
[lilypond.git] / lily / midi-def.cc
index 1415298439c1fc7d6da9c0d4a727dee4f3d1415c..a0599d107f83b41a21212d460c609f82d226cba9 100644 (file)
@@ -3,50 +3,40 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1997 Jan Nieuwenhuizen <jan@digicash.com>
+  (c)  1997--2001 Jan Nieuwenhuizen <janneke@gnu.org>
 
 */
 #include <math.h>
 #include "misc.hh"
 #include "midi-def.hh"
-#include "translator.hh"
 #include "performance.hh"
-#include "assoc-iter.hh"
-#include "score-performer.hh"
 #include "debug.hh"
+#include "scope.hh"
 
-// classes, alphasorted
-//     statics
-//     constructors
-//     destructor
-//     routines, alphasorted
-
-Midi_def::Midi_def()
+Midi_def::Midi_def ()
 {
-  outfile_str_ = ""; 
   // ugh
-  set_tempo (Moment (1, 4), 60);
-}
-
-Midi_def::~Midi_def()
-{
-}
-
-Real
-Midi_def::duration_to_seconds_f (Moment mom)
-{
-  if (!mom)
-    return 0;
-  
-  return Moment (whole_in_seconds_mom_) * mom;
+  set_tempo (Moment (Rational (1, 4)), 60);
 }
 
-
 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;
+  SCM wis  = ly_symbol2scm ("whole-in-seconds");
+  Moment *w = unsmob_moment (scope_p_->scm_elem (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);
 }
 
@@ -54,19 +44,22 @@ 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_ = 1/(beats_per_second * one_beat_mom);
+
+  Moment m = Moment (1)/Moment (beats_per_second * one_beat_mom);
+  scope_p_->set ("whole-in-seconds", m.smobbed_copy ());
 }
 
-void
-Midi_def::print() const
+
+int Midi_def::score_count_i_=0;
+
+int
+Midi_def::get_next_score_count () const
 {
-#ifndef NPRINT
-  DOUT << "Midi {";
-  DOUT << "4/min: " << Real (60) / (whole_in_seconds_mom_ * 4);
-  DOUT << "out: " << outfile_str_;
-  DOUT << "}\n";
-#endif
+  return score_count_i_++;
 }
 
-
-IMPLEMENT_IS_TYPE_B1(Midi_def, Music_output_def);
+void
+Midi_def::reset_score_count ()
+{
+  score_count_i_ = 0;
+}