]> git.donarmstrong.com Git - lilypond.git/blob - lily/score-scheme.cc
Merge branch 'master' of git://git.sv.gnu.org/lilypond
[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--2007 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #include "score.hh"
10
11 #include "music.hh"
12 #include "output-def.hh"
13 #include "global-context.hh"
14 #include "music-output.hh"
15 #include "paper-score.hh"
16 #include "paper-book.hh"
17
18 LY_DEFINE (ly_make_score, "ly:make-score",
19            1, 0, 0,
20            (SCM music),
21            "Return score with @var{music} encapsulated in @var{score}.")
22 {
23   LY_ASSERT_SMOB (Music, music, 1);
24
25   Score *score = new Score;
26   score->set_music (music);
27
28   return score->unprotect ();
29 }
30
31 LY_DEFINE (ly_score_output_defs, "ly:score-output-defs",
32            1, 0, 0, (SCM score),
33            "All output definitions in a score.")
34 {
35   LY_ASSERT_SMOB (Score, score, 1);
36   Score *sc = unsmob_score (score);
37
38   SCM l = SCM_EOL;
39   for (vsize i = 0; i < sc->defs_.size (); i++)
40     l = scm_cons (sc->defs_[i]->self_scm (), l);
41   return scm_reverse_x (l, SCM_EOL);
42 }
43
44 LY_DEFINE (ly_score_add_output_def_x, "ly:score-add-output-def!",
45            2, 0, 0, (SCM score, SCM def),
46            "Add an output definition @var{def} to @var{score}.")
47 {
48   LY_ASSERT_SMOB (Score, score, 1);
49   LY_ASSERT_SMOB (Output_def, def, 2);
50   Score *sc = unsmob_score (score);
51   Output_def *output_def = unsmob_output_def (def);
52   sc->add_output_def (output_def);
53   return SCM_UNSPECIFIED;
54 }
55
56 LY_DEFINE (ly_score_header, "ly:score-header",
57            1, 0, 0, (SCM score),
58            "Return score header.")
59 {
60   LY_ASSERT_SMOB (Score, score, 1);
61   Score *sc = unsmob_score (score);
62   return sc->header_;
63 }
64
65
66 LY_DEFINE (ly_score_music, "ly:score-music",
67            1, 0, 0, (SCM score),
68            "Return score music.")
69 {
70   LY_ASSERT_SMOB (Score, score, 1);
71   Score *sc = unsmob_score (score);
72   return sc->get_music ();
73 }
74
75 LY_DEFINE (ly_score_error_p, "ly:score-error?",
76            1, 0, 0, (SCM score),
77            "Was there an error in the score?")
78 {
79   LY_ASSERT_SMOB (Score, score, 1);
80   Score *sc = unsmob_score (score);
81   return scm_from_bool (sc->error_found_);
82 }
83
84 LY_DEFINE (ly_score_embedded_format, "ly:score-embedded-format",
85            2, 0, 0, (SCM score, SCM layout),
86            "Run @var{score} through @var{layout} (an output definition)"
87            " scaled to correct output-scale already, returning a list of"
88            " layout-lines.  This function takes an optional"
89            " @code{Object_key} argument.")
90 {
91   LY_ASSERT_SMOB (Score, score, 1);
92   LY_ASSERT_SMOB (Output_def, layout, 2);
93
94   Score *sc = unsmob_score (score);
95   Output_def *od = unsmob_output_def (layout);
96
97   if (sc->error_found_)
98     return SCM_EOL;
99
100   Output_def *score_def = 0;
101
102   /* UGR, FIXME, these are default \layout blocks once again.  They
103      suck. */
104   for (vsize i = 0; !score_def && i < sc->defs_.size (); i++)
105     if (sc->defs_[i]->c_variable ("is-layout") == SCM_BOOL_T)
106       score_def = sc->defs_[i];
107
108   if (!score_def)
109     return SCM_BOOL_F;
110
111   score_def = score_def->clone ();
112   SCM prot = score_def->unprotect ();
113
114   /* TODO: SCORE_DEF should be scaled according to OD->parent_ or OD
115      itself. */
116   score_def->parent_ = od;
117
118   SCM context = ly_run_translator (sc->get_music (), score_def->self_scm ());
119   SCM output = ly_format_output (context);
120
121   scm_remember_upto_here_1 (prot);
122   return output;
123 }