]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/scores.cc
release: 0.1.11
[lilypond.git] / lily / scores.cc
index a6df7ead96730c30376bb83a255abe3b11f17daf..a1cb0830a1e403d70072b8f3f6df00490407249d 100644 (file)
@@ -1,48 +1,54 @@
+/*
+  scores.cc -- implement some globals
+
+  source file of the GNU LilyPond music typesetter
+
+  (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
+*/
+
 #include "main.hh"
-#include "input-score.hh"
 #include "score.hh"
 #include "string.hh"
 #include "paper-def.hh"
 #include "debug.hh"
 
-static Array<Input_score*> score_array_global;
+static Array<Score*> score_array_global;
 String default_out_fn = "lelie";
 
 void
 do_scores()
 {
-    for (int i=0; i < score_array_global.size(); i++) {
-       Input_score* &is_p = score_array_global[i];
-       if (is_p->errorlevel_i_) {
-           warning("Score contains errors. Will not process it. ",
-                   is_p->defined_ch_c_l_);
-           delete is_p;
-           continue;
-       } 
+  for (int i=0; i < score_array_global.size(); i++) 
+    {
+       Score *&is_p = score_array_global[i];
        
-       if (only_midi) {
-           delete is_p->paper_p_;
-           is_p->paper_p_ = 0;
-       }
-
-       Score * s_p = is_p->parse();    
+       
+       if (is_p->errorlevel_i_) 
+         {
+           is_p->warning ("Score contains errors. Will not process it. ");
+           exit_status_i_ |= 1;
+         }
+       else 
+         {
+           is_p->print();
+           is_p->process();
+         }
        delete is_p;
-       s_p->print ();
-       s_p->process();
-       delete s_p;
+       is_p =0;
+
     }
-    score_array_global.set_size(0);
+  score_array_global.clear();
 }
 
 void
-add_score(Input_score * s)
+add_score (Score * s)
 {
-    score_array_global.push(s);
+  score_array_global.push (s);
 }
 
 void
-set_default_output(String s)
+set_default_output (String s)
 {
-    default_out_fn = s;
+  default_out_fn = s;
 }