]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/score.cc
*** empty log message ***
[lilypond.git] / lily / score.cc
index e072eaaaf18181ed6cbdb62b93d5a1bec31e4a71..d00b774ec669f9e7768b865623419d4e6b7146ec 100644 (file)
@@ -47,7 +47,7 @@ IMPLEMENT_TYPE_P (Score, "ly:score?");
 SCM
 Score::mark_smob (SCM s)
 {
-  Score *sc = (Score*) SCM_CELL_WORD_1 (s);
+  Score *sc = (Score *) SCM_CELL_WORD_1 (s);
 
   scm_gc_mark (sc->header_);
   scm_gc_mark (sc->texts_);
@@ -57,7 +57,7 @@ Score::mark_smob (SCM s)
 }
 
 int
-Score::print_smob (SCM , SCM p, scm_print_state*)
+Score::print_smob (SCM, SCM p, scm_print_state*)
 {
   scm_puts ("#<Score>", p);
 
@@ -76,7 +76,7 @@ Score::Score (Score const &s)
   Music *m = unsmob_music (s.music_);
   music_ = m ? m->clone ()->self_scm () : SCM_EOL;
   scm_gc_unprotect_object (music_);
-  
+
   for (int i = 0, n = s.defs_.size (); i < n; i++)
     defs_.push (s.defs_[i]->clone ());
 
@@ -87,37 +87,36 @@ Score::Score (Score const &s)
   texts_ = s.texts_;
 }
 
-
 void
 default_rendering (SCM music, SCM outdef,
                   SCM book_outputdef,
-                  SCM header, SCM texts,
+                  SCM header,
                   SCM outname,
                   SCM key)
 {
   SCM scaled_def = outdef;
   SCM scaled_bookdef = book_outputdef;
-  
+
   Output_def *bpd = unsmob_output_def (book_outputdef);
 
   /* ugh.  */
   if (bpd->c_variable ("is-paper") == SCM_BOOL_T)
     {
       Real scale = scm_to_double (bpd->c_variable ("outputscale"));
-      
+
       Output_def *def = scale_output_def (unsmob_output_def (outdef), scale);
       scaled_def = def->self_scm ();
 
       scaled_bookdef = scale_output_def (bpd, scale)->self_scm ();
       unsmob_output_def (scaled_def)->parent_
        = unsmob_output_def (scaled_bookdef);
-      
+
       scm_gc_unprotect_object (scaled_bookdef);
       scm_gc_unprotect_object (scaled_def);
     }
-  
+
   SCM context = ly_run_translator (music, scaled_def, key);
-  if (Global_context *g = dynamic_cast<Global_context*>
+  if (Global_context *g = dynamic_cast<Global_context *>
       (unsmob_context (context)))
     {
       SCM systems = ly_format_output (context, outname);
@@ -128,14 +127,11 @@ default_rendering (SCM music, SCM outdef,
          Paper_book *paper_book = new Paper_book ();
          paper_book->header_ = header;
          paper_book->paper_ = unsmob_output_def (scaled_bookdef);
-         
-         Score_systems sc;
-         sc.systems_ = systems;
-         sc.header_ = header;
-         sc.texts_ = texts;
-
-         paper_book->score_systems_.push (sc);
-         
+
+         if (ly_c_module_p (header))
+           paper_book->add_score (header);
+         paper_book->add_score (systems);
+
          paper_book->classic_output (ly_scm2string (outname));
          scm_gc_unprotect_object (paper_book->self_scm ());
        }
@@ -147,11 +143,10 @@ default_rendering (SCM music, SCM outdef,
 }
 
 /*
-Format score, return systems. OUTNAME is still passed to create a midi
-file.
-
-LAYOUTBOOK should be scaled already.
+  Format score, return systems. OUTNAME is still passed to create a midi
+  file.
 
+  LAYOUTBOOK should be scaled already.
 */
 SCM
 Score::book_rendering (String outname,
@@ -161,21 +156,21 @@ Score::book_rendering (String outname,
 {
   if (error_found_)
     return SCM_EOL;
-   
+
   SCM scaled_bookdef = SCM_EOL;
   Real scale = 1.0;
 
   if (layoutbook && layoutbook->c_variable ("is-paper") == SCM_BOOL_T)
     scale = scm_to_double (layoutbook->c_variable ("outputscale"));
-  
+
   SCM out = scm_makfrom0str (outname.to_str0 ());
   SCM systems = SCM_EOL;
   int outdef_count = defs_.size ();
 
-  Object_key * key = new Lilypond_general_key (book_key, user_key_, 0);
-  SCM scm_key = key->self_scm();
+  Object_key *key = new Lilypond_general_key (book_key, user_key_, 0);
+  SCM scm_key = key->self_scm ();
   scm_gc_unprotect_object (scm_key);
-  
+
   for (int i = 0; !i || i < outdef_count; i++)
     {
       Output_def *def = outdef_count ? defs_[i] : default_def;
@@ -190,7 +185,7 @@ Score::book_rendering (String outname,
 
       /* TODO: fix or junk --no-layout.  */
       SCM context = ly_run_translator (music_, def->self_scm (), scm_key);
-      if (dynamic_cast<Global_context*> (unsmob_context (context)))
+      if (dynamic_cast<Global_context *> (unsmob_context (context)))
        {
          SCM s = ly_format_output (context, out);
          if (s != SCM_UNDEFINED)
@@ -205,10 +200,6 @@ Score::book_rendering (String outname,
   return systems;
 }
 
-
-
-
-
 void
 Score::set_music (SCM music, SCM parser)
 {
@@ -219,23 +210,21 @@ Score::set_music (SCM music, SCM parser)
 
   if (unsmob_music (music_))
     {
-      unsmob_music (music)->origin ()->error (_("Already have music in score"));
-      unsmob_music (music_)->origin ()->error (_("This is the previous music"));
+      unsmob_music (music)->origin ()->error (_ ("already have music in score"));
+      unsmob_music (music_)->origin ()->error (_ ("this is the previous music"));
     }
-  Music * m = unsmob_music (music);
+  Music *m = unsmob_music (music);
   if (m && to_boolean (m->get_property ("error-found")))
     {
-      m->origin()->error (_("Error found in this music expression. Ignoring it"));
-      
+      m->origin ()->error (_ ("errors found, ignoring music expression"));
+
       this->error_found_ = this->error_found_ || to_boolean (m->get_property ("error-found"));
-      
     }
 
   if (this->error_found_)
-    this->music_ = SCM_EOL; 
+    this->music_ = SCM_EOL;
   else
     this->music_ = music;
-
 }
 
 SCM