]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/score.cc
new file, move from
[lilypond.git] / lily / score.cc
index b51795072149875b7df07676593781c81584a951..aa66207b9dae9f7d2335ea67a591e4b493fbd329 100644 (file)
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
-#include "score.hh"
-#include "debug.hh"
-#include "music-output-def.hh"
-#include "music-output.hh"
-#include "source.hh"
-#include "source-file.hh"
-#include "music-iterator.hh"
-#include "music.hh"
-#include "global-translator.hh"
-#include "scope.hh"
+#include <stdio.h>
+
+#include "book.hh"
+#include "book-paper-def.hh"
 #include "cpu-timer.hh"
+#include "global-context.hh"
+#include "ly-module.hh"
+#include "ly-smobs.icc"
 #include "main.hh"
-#include "paper-def.hh"
+#include "music-iterator.hh"
+#include "output-def.hh"
+#include "music-output.hh"
+#include "music.hh"
+#include "paper-book.hh"
+#include "output-def.hh"
+#include "paper-score.hh"
+#include "scm-hash.hh"
+#include "score.hh"
+#include "warn.hh"
 
+/*
+  TODO: junkme.
+ */
+Score::Score ()
+  : Input ()
+{
+  header_ = SCM_EOL;
+  music_ = SCM_EOL;
+  smobify_self ();
+}
 
-Score::Score()
-    : Input()
+Score::~Score ()
 {
-  header_p_ = 0;
-  music_p_ = 0;
-  errorlevel_i_ = 0;
 }
 
-Score::Score (Score const &s)
-  : Input (s)
+IMPLEMENT_SMOBS (Score);
+IMPLEMENT_DEFAULT_EQUAL_P (Score);
+
+SCM
+Score::mark_smob (SCM s)
 {
-  music_p_ = (s.music_p_) ? s.music_p_->clone() : 0;
-  for (int i=0; i < s.def_p_arr_.size (); i++)
-    def_p_arr_.push(s.def_p_arr_[i]->clone());
-  errorlevel_i_ = s.errorlevel_i_;
-  header_p_ =  (s.header_p_) ? new Scope (*s.header_p_): 0;
+  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_;
 }
 
-Score::~Score()
+int
+Score::print_smob (SCM , SCM p, scm_print_state*)
 {
-  delete header_p_;
-  junk_pointer_array (def_p_arr_);
-  delete music_p_;
+  scm_puts ("#<Score>", p);
+
+  return 1;
 }
 
-void
-Score::run_translator (Music_output_def *odef_l)
+
+
+/*
+  store point & click locations.
+  Global to save some time. (Sue us!)
+ */
+
+Score::Score (Score const &s)
+  : Input (s)
 {
-  Cpu_timer timer;
-  Global_translator * trans_p = odef_l->get_global_translator_p();
-  if (!trans_p)
-    {
-      non_fatal_error (_("no toplevel translator"));
-      return ;
-    }
-  *mlog << '\n' << _("Interpreting music...") << flush;
-  trans_p->last_mom_ = music_p_->length_mom ();
+  music_ = SCM_EOL;
 
+  // FIXME: SCM_EOL?
+  header_ = 0;
 
-  Music_iterator * iter = Music_iterator::static_get_iterator_p (music_p_);
-  iter->init_translator(music_p_, trans_p);
+  smobify_self ();
 
-  iter->construct_children();
+  Music *m =unsmob_music (s.music_);
+  music_ = m ? m->clone ()->self_scm () : SCM_EOL;
+  scm_gc_unprotect_object (music_);
+  
+  for (int i = 0; i < s.defs_.size (); i++)
+    defs_.push (s.defs_[i]->clone ());
 
-  if (! iter->ok())
+  header_ = ly_make_anonymous_module (false);
+  if (is_module (s.header_))
+    ly_import_module (header_, s.header_);
+}
+
+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.")
+{
+  Output_def *odef = unsmob_output_def (output_def);
+  Music *music = unsmob_music (mus);
+
+  SCM_ASSERT_TYPE (music, mus, SCM_ARG1, __FUNCTION__, "Music");
+  SCM_ASSERT_TYPE (odef, output_def, SCM_ARG2, __FUNCTION__, "Output definition");
+  
+  Cpu_timer timer;
+  
+  Global_context * trans = new Global_context (odef, music->get_length ());
+  
+  if (!trans)
     {
-      delete iter;
-      warning (_("Need music in a score"));
-      errorlevel_i_ =1;
-      return ;
+      programming_error ("no toplevel translator");
+      return SCM_BOOL_F;
     }
+  progress_indication (_ ("Interpreting music... "));
+  
+  SCM protected_iter = Music_iterator::get_static_get_iterator (music);
+  Music_iterator * iter = unsmob_iterator (protected_iter);
+  iter->init_translator (music, trans);
 
-  trans_p->start ();
-  trans_p->run_iterator_on_me (iter);
-  delete iter;
-  trans_p->finish ();
+  iter->construct_children ();
 
-  if (errorlevel_i_)
+  if (!iter->ok ())
     {
-      // should we? hampers debugging.
-      warning (_ ("Errors found/*, not processing score*/"));
+      warning (_ ("Need music in a score"));
+      /* todo: should throw exception. */
+      return SCM_BOOL_F;
     }
 
-  Music_output * output = trans_p->get_output_p();
-  delete trans_p;
-  *mlog << endl << _f ("elapsed time: %.2f seconds",  timer.read ()) << flush;
+  trans->run_iterator_on_me (iter);
+  iter->quit ();
+  scm_remember_upto_here_1 (protected_iter);
+  trans->finish ();
 
-  output->header_l_ = header_p_;
-  output->origin_str_ =  location_str();
+  if (verbose_global_b)
+    progress_indication (_f ("elapsed time: %.2f seconds",  timer.read ()));
+  
+  return scm_gc_unprotect_object (trans->self_scm ());
+}
 
-  *mlog << endl;
-  output->process();
-  delete output ;
+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.")
+{
+  Global_context *g = dynamic_cast<Global_context*> (unsmob_context (context));
+  SCM_ASSERT_TYPE (g, context, SCM_ARG1, __FUNCTION__, "Global context");
+  SCM_ASSERT_TYPE (ly_c_string_p (outname), outname, SCM_ARG2, __FUNCTION__, "output filename");
+
+  Music_output *output = g->get_output ();
+  progress_indication ("\n");
+  // ugh, midi still wants outname
+  return output->process (ly_scm2string (outname));
 }
 
 void
-Score::process()
+default_rendering (SCM music, SCM outdef,
+                  SCM book_outputdef,
+                  SCM header, SCM outname)
 {
-  if (!music_p_)
-    return;
-
-  print();
-  for (int i=0; i < def_p_arr_.size (); i++)
+  Book_output_def *bpd = unsmob_book_output_def (book_outputdef);
+  if (bpd && unsmob_output_def (outdef))
+    /* FIXME:  memory leak */
+    outdef = bpd->scale_paper (unsmob_output_def (outdef))->self_scm ();
+  
+  SCM context = ly_run_translator (music, outdef);
+
+  if (Global_context *g = dynamic_cast<Global_context*>
+      (unsmob_context (context)))
     {
-      if (no_paper_global_b 
-         && dynamic_cast<Paper_def*>(def_p_arr_[i]))
-       continue;
-      run_translator (def_p_arr_[i]);
+      SCM systems = ly_format_output (context, outname);
+      Music_output *output = g->get_output ();
+      if (systems != SCM_UNDEFINED)
+       {
+         Paper_book *paper_book = new Paper_book ();
+         Paper_score *ps = dynamic_cast<Paper_score*> (output);
+
+         Score_lines sc;
+         sc.paper_ = ps->paper_;
+         sc.lines_ = systems;
+         sc.header_ = header;
+
+         paper_book->score_lines_.push (sc);
+         
+         paper_book->classic_output (ly_scm2string (outname));
+         scm_gc_unprotect_object (paper_book->self_scm ());
+       }
+      delete output;
     }
 }
-
-
-
-void
-Score::print() const
+SCM
+Score::book_rendering (String outname,
+                      Book_output_def* paperbook,
+                      Output_def *default_def,
+                      Output_def **paper)
 {
-#ifndef NPRINT
-  DEBUG_OUT << "score {\n";
-  music_p_ -> print ();
-  for (int i=0; i < def_p_arr_.size (); i++)
-    def_p_arr_[i]->print();
-  DEBUG_OUT << "}\n";
-#endif
+  SCM out = scm_makfrom0str (outname.to_str0 ());
+  SCM systems = SCM_EOL;
+  int outdef_count = defs_.size ();
+  for (int i = 0; !i || i < outdef_count; i++)
+    {
+      Output_def *def = outdef_count ? defs_[i] : default_def;
+      if (Output_def * pd = dynamic_cast<Output_def*> (def))
+       {
+         def = paperbook->scale_paper (pd);
+       }
+      
+      if (!(no_paper_global_b && dynamic_cast<Output_def*> (def)))
+       {
+         SCM context = ly_run_translator (music_, def->self_scm ());
+         if (Global_context *g = dynamic_cast<Global_context*>
+             (unsmob_context (context)))
+           {
+             SCM s = ly_format_output (context, out);
+             if (s != SCM_UNDEFINED)
+               {
+                 systems = s;
+                 /* Ugh. */
+                 Music_output *output = g->get_output ();
+                 if (Paper_score *ps = dynamic_cast<Paper_score*> (output))
+                   *paper = ps->paper_;
+               }
+           }
+       }
+    }
+  return systems;
 }
 
-void
-Score::add_output (Music_output_def *pap_p)
+LY_DEFINE (ly_score_bookify, "ly:score-bookify",
+          1, 0, 0,
+          (SCM score_smob),
+          "Return SCORE encapsulated in a BOOK.")
 {
-  def_p_arr_.push(pap_p);
+  SCM_ASSERT_TYPE (unsmob_score (score_smob), score_smob, SCM_ARG1, __FUNCTION__, "score_smob");
+  
+  Score *score = unsmob_score (score_smob);
+  Book *book = new Book;
+  book->scores_.push (score);
+  scm_gc_unprotect_object (book->self_scm ());
+  return book->self_scm ();
 }