]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/score.cc
* lily/include/lily-guile.hh: many new ly_ functions. Thanks to
[lilypond.git] / lily / score.cc
index b1bf3dc749280cc2250621676f39751b7463cbd9..622c2b8b151b6a73c517b403498ec716366624d6 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--2002 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
 #include <stdio.h>
 #include "music-output.hh"
 #include "music-iterator.hh"
 #include "music.hh"
-#include "global-translator.hh"
+#include "global-context.hh"
 #include "scm-hash.hh"
 #include "cpu-timer.hh"
 #include "main.hh"
 #include "paper-def.hh"
-#include "ly-modules.hh"
-
+#include "ly-module.hh"
+#include "paper-book.hh"
+#include "paper-score.hh"
+#include "input-file-results.hh"
 
 
 /*
 Score::Score ()
   : Input ()
 {
-  input_file_ = 0;
   header_ = SCM_EOL;
   music_ = SCM_EOL;
-  errorlevel_ = 0;
 
   smobify_self ();
 }
 
+Score::~Score ()
+{
+  
+}
+
+
+
+
+IMPLEMENT_SMOBS (Score);
+IMPLEMENT_DEFAULT_EQUAL_P (Score);
+
+
+SCM
+Score::mark_smob (SCM s)
+{
+  Score * sc = (Score*) SCM_CELL_WORD_1 (s);
+
+  if (sc->header_)
+    scm_gc_mark (sc->header_);
+  for (int i = sc->defs_.size (); i--;)
+    scm_gc_mark (sc->defs_[i]->self_scm ());
+  
+  return sc->music_;
+}
+
+int
+Score::print_smob (SCM , SCM p, scm_print_state*)
+{
+  scm_puts ("#<Score>", p);
+
+  return 1;
+}
+
+
+
 /*
   store point & click locations.
   Global to save some time. (Sue us!)
  */
-bool store_locations_global_b;
 
 Score::Score (Score const &s)
   : Input (s)
@@ -56,41 +90,41 @@ Score::Score (Score const &s)
   music_ =  m?m->clone ()->self_scm () : SCM_EOL;
   scm_gc_unprotect_object (music_);
   
-  for (int i=0; i < s.defs_.size (); i++)
+  for (int i = 0; i < s.defs_.size (); i++)
     defs_.push (s.defs_[i]->clone ());
-  errorlevel_ = s.errorlevel_;
+
   header_ = ly_make_anonymous_module ();
-  ly_copy_module_variables (header_, s.header_);
+  if (ly_module_p (s.header_))
+    ly_import_module (header_, s.header_);
 }
 
-Score::~Score ()
+LY_DEFINE (ly_run_translator, "ly:run-translator", 
+         2, 0, 0, (SCM mus, SCM output_def),
+          "Process @var{mus} according to @var{output_def}. "
+          "An interpretation context is set up, "
+          "and @var{mus} is interpreted with it.  "
+          "The context is returned in its final state.")
 {
-  
-}
-
-
+  Music_output_def *odef = unsmob_music_output_def (output_def);
+  Music *music = unsmob_music (mus);
 
-void
-Score::run_translator (Music_output_def *odef)
-{
-  /*
-    We want to know if we want to store locations, since they take a
-    lot of overhead.
-  */
-  store_locations_global_b = (gh_eval_str ("point-and-click") !=  SCM_BOOL_F);
+  SCM_ASSERT_TYPE (music, mus, SCM_ARG1, __FUNCTION__, "Music");
+  SCM_ASSERT_TYPE (odef, output_def, SCM_ARG2, __FUNCTION__, "Output definition");
   
   Cpu_timer timer;
-  Global_translator * trans = odef->get_global_translator ();
+  
+  Global_context * trans = new Global_context (odef,
+                                              music->get_length ()
+                                              );
+  
   if (!trans)
     {
       programming_error ("no toplevel translator");
-      return ;
+      return SCM_BOOL_F;
     }
-  progress_indication (_ ("Interpreting music..."));
-  Music * music = unsmob_music (music_);
+  progress_indication (_ ("Interpreting music... "));
   
-  trans->final_mom_ = music->length_mom ();
-  SCM protected_iter =  Music_iterator::get_static_get_iterator (music);
+  SCM protected_iter = Music_iterator::get_static_get_iterator (music);
   Music_iterator * iter = unsmob_iterator (protected_iter);
   iter->init_translator (music, trans);
 
@@ -99,82 +133,57 @@ Score::run_translator (Music_output_def *odef)
   if (! iter->ok ())
     {
       warning (_ ("Need music in a score"));
-      errorlevel_ =1;
-      return ;
+      return SCM_BOOL_F;       // todo: should throw exception.
     }
 
-  trans->start ();
   trans->run_iterator_on_me (iter);
-  iter->quit();
+  iter->quit ();
   scm_remember_upto_here_1 (protected_iter);
   trans->finish ();
 
-  if (errorlevel_)
-    {
-      // should we? hampers debugging.
-      warning (_ ("Errors found/*, not processing score*/"));
-    }
-
-  Music_output * output = trans->get_output ();
-  scm_gc_unprotect_object (trans->self_scm ());
-  
   if (verbose_global_b)
     progress_indication (_f ("elapsed time: %.2f seconds",  timer.read ()));
 
-  if (!header_)
-    header_ = ly_make_anonymous_module(); // ug.h
-
-  output->header_ = header_;
-  output->origin_string_ =  location_string ();
-
-  progress_indication ("\n");
-  output->process ();
   
-  delete output ;
+  return scm_gc_unprotect_object (trans->self_scm ());
 }
 
-void
-Score::process ()
+LY_DEFINE (ly_format_output, "ly:format-output",
+          2, 0, 0, (SCM context, SCM outname),
+          "Given a Score context in its final state,"
+           "process it and return the (rendered) result.")
 {
-  if (!unsmob_music (music_))
-    return;
+  Global_context *g = dynamic_cast<Global_context*> (unsmob_context (context));
+  SCM_ASSERT_TYPE (g, context, SCM_ARG1, __FUNCTION__, "Global context");
+  SCM_ASSERT_TYPE (ly_string_p (outname), outname, SCM_ARG2, __FUNCTION__, "output filename");
 
-  for (int i=0; i < defs_.size (); i++)
-    {
-      if (no_paper_global_b 
-         && dynamic_cast<Paper_def*> (defs_[i]))
-       continue;
-      run_translator (defs_[i]);
-    }
+  Music_output *output = g->get_output ();
+  progress_indication ("\n");
+  // ugh, midi still wants outname
+  return output->process (ly_scm2string (outname));
 }
 
-
 void
-Score::add_output (Music_output_def *pap)
-{
-  defs_.push (pap);
-}
-
-IMPLEMENT_SMOBS (Score);
-IMPLEMENT_DEFAULT_EQUAL_P (Score);
-
-
-SCM
-Score::mark_smob (SCM s)
-{
-  Score * sc = (Score*) SCM_CELL_WORD_1 (s);
-
-  scm_gc_mark (sc->header_);
-  for (int i = sc->defs_.size (); i--;)
-    scm_gc_mark (sc->defs_[i]->self_scm ());
-  
-  return sc->music_;
-}
-
-int
-Score::print_smob (SCM , SCM p, scm_print_state*)
+default_rendering (SCM music, SCM outdef, SCM header, SCM outname)
 {
-  scm_puts ("#<Score>", p);
+  SCM context = ly_run_translator (music, outdef);
 
-  return 1;
+  if (Global_context *g = dynamic_cast<Global_context*>
+      (unsmob_context (context)))
+    {
+      SCM systems = ly_format_output (context, outname);
+      Music_output *output = g->get_output ();
+      if (systems != SCM_UNDEFINED)
+       {
+         Paper_score *ps = dynamic_cast<Paper_score*> (output);
+
+         paper_book->papers_.push (ps->paper_);
+         paper_book->scores_.push (systems);
+         paper_book->global_headers_.push (global_input_file->header_);
+         paper_book->headers_.push (header);
+         if (output_format_global != PAGE_LAYOUT)
+           paper_book->classic_output (ly_scm2string (outname));
+       }
+      delete output;
+    }
 }