]> git.donarmstrong.com Git - lilypond.git/blob - lily/score-scheme.cc
* lily/book.cc:
[lilypond.git] / lily / score-scheme.cc
1 /*
2   score-scheme.cc -- implement Score bindings.
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2005 Han-Wen Nienhuys <hanwen@xs4all.nl>
7
8 */
9
10
11 #include "score.hh"
12 #include "music.hh"
13 #include "output-def.hh"
14 #include "global-context.hh"
15
16 LY_DEFINE (ly_music_scorify, "ly:music-scorify",
17            2, 0, 0,
18            (SCM music, SCM parser),
19            "Return MUSIC with TEXTS encapsulated in SCORE.")
20 {
21 #if 0
22   SCM_ASSERT_TYPE (ly_c_music_p (music), music, SCM_ARG1, __FUNCTION__, "music");
23 #endif
24   Score *score = new Score;
25   score->set_music (music, parser);
26   scm_gc_unprotect_object (score->self_scm ());
27   return score->self_scm ();
28 }
29
30 LY_DEFINE (ly_score_embedded_format, "ly:score-embedded-format",
31            2, 1, 0, (SCM score, SCM layout, SCM key),
32            "Run @var{score} through @var{layout}, an output definition, "
33            "scaled to correct outputscale already, "
34            "return a list of layout-lines. "
35            "\nTake optional Object_key argument."
36            )
37 {
38   Score * sc = unsmob_score (score);
39   Output_def *od = unsmob_output_def (layout);
40
41   if (sc->error_found_)
42     return SCM_EOL;
43   
44   SCM_ASSERT_TYPE (sc, score, SCM_ARG1, __FUNCTION__, "Score");
45   SCM_ASSERT_TYPE (od, layout, SCM_ARG2, __FUNCTION__, "Output_def");
46
47   Output_def * score_def  = 0;
48
49   /* UGR, FIXME, these are default \layout blocks once again.  They
50      suck. */
51   for (int i = 0; !score_def && i < sc->defs_.size (); i++)
52     if (sc->defs_[i]->c_variable ("is-layout") == SCM_BOOL_T)
53       score_def = sc->defs_[i];
54
55   if (!score_def)
56     return scm_c_make_vector (0, SCM_EOL);
57       
58   score_def = score_def->clone ();
59   SCM prot = score_def->self_scm ();
60   scm_gc_unprotect_object (prot);
61
62   /* TODO: SCORE_DEF should be scaled according to OD->parent_ or OD
63      itself. */
64   score_def->parent_ = od;
65   
66   SCM context = ly_run_translator (sc->get_music (), score_def->self_scm (),
67                                    key);
68   SCM lines = ly_format_output (context, scm_makfrom0str ("<embedded>"));
69   
70   scm_remember_upto_here_1 (prot);
71   return lines;
72 }