]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/score-scheme.cc
(music-descriptions): remove
[lilypond.git] / lily / score-scheme.cc
index 3c7f5c9a274e56e4b3d9ba9d5fd8e3bb04164dcc..6ef6d216ecea404f422a7e92a66e5838d3b12371 100644 (file)
@@ -7,22 +7,27 @@
 */
 
 #include "score.hh"
+
 #include "music.hh"
 #include "output-def.hh"
 #include "global-context.hh"
+#include "lilypond-key.hh"
+
 
-LY_DEFINE (ly_music_scorify, "ly:music-scorify",
-          2, 0, 0,
-          (SCM music, SCM parser),
-          "Return MUSIC with TEXTS encapsulated in SCORE.")
+LY_DEFINE (ly_make_score, "ly:make-score",
+          1, 0, 0,
+          (SCM music),
+          "Return score with @var{music} encapsulated in @var{score}.")
 {
-#if 0
-  SCM_ASSERT_TYPE (ly_c_music_p (music), music, SCM_ARG1, __FUNCTION__, "music");
-#endif
+  Music *mus = unsmob_music (music);
+  SCM_ASSERT_TYPE (mus, music, SCM_ARG1, __FUNCTION__, "music");
+  
   Score *score = new Score;
-  score->set_music (music, parser);
-  scm_gc_unprotect_object (score->self_scm ());
-  return score->self_scm ();
+  score->set_music (music);
+
+  SCM self = score->self_scm ();
+  scm_gc_unprotect_object (self);
+  return self;
 }
 
 LY_DEFINE (ly_score_embedded_format, "ly:score-embedded-format",
@@ -50,7 +55,7 @@ LY_DEFINE (ly_score_embedded_format, "ly:score-embedded-format",
       score_def = sc->defs_[i];
 
   if (!score_def)
-    return scm_c_make_vector (0, SCM_EOL);
+    return SCM_BOOL_F;
 
   score_def = score_def->clone ();
   SCM prot = score_def->self_scm ();
@@ -62,8 +67,54 @@ LY_DEFINE (ly_score_embedded_format, "ly:score-embedded-format",
 
   SCM context = ly_run_translator (sc->get_music (), score_def->self_scm (),
                                   key);
-  SCM lines = ly_format_output (context, scm_makfrom0str ("<embedded>"));
+  SCM output = ly_format_output (context);
 
   scm_remember_upto_here_1 (prot);
-  return lines;
+  return output;
+}
+
+LY_DEFINE (ly_score_process, "ly:score-process",
+          5, 0, 0,
+          (SCM score_smob,
+           SCM default_header,
+           SCM default_paper,
+           SCM default_layout,
+           SCM basename),
+          "Print score without page-layout: just print the systems.")
+{
+  Score *score = unsmob_score (score_smob);
+
+  SCM_ASSERT_TYPE (score, score_smob, SCM_ARG1, __FUNCTION__, "score");
+
+  // allow header to be undefined.
+  SCM_ASSERT_TYPE (unsmob_output_def (default_paper),
+                  default_header, SCM_ARG3, __FUNCTION__, "\\paper block");
+  SCM_ASSERT_TYPE (unsmob_output_def (default_layout),
+                  default_header, SCM_ARG4, __FUNCTION__, "\\layout block");
+  
+  Object_key *key = new Lilypond_general_key (0, score->user_key_, 0);
+
+  if (score->error_found_)
+    return SCM_UNSPECIFIED;
+
+  SCM header = ly_is_module (score->header_)
+    ? score->header_
+    : default_header;
+  
+  for (int i = 0; i < score->defs_.size (); i++)
+    default_rendering (score->get_music (), score->defs_[i]->self_scm (),
+                      default_paper, header, basename, key->self_scm ());
+
+  if (score->defs_.is_empty ())
+    {
+      default_rendering (score->get_music (),
+                        default_layout,
+                        default_paper,
+                        header, basename, key->self_scm ());
+    }
+
+  scm_gc_unprotect_object (key->self_scm ());
+  return SCM_UNSPECIFIED;
 }
+
+