]> git.donarmstrong.com Git - lilypond.git/blob - lily/script.cc
release: 1.3.68
[lilypond.git] / lily / script.cc
1 /*   
2   script.cc --  implement Script
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 1999--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #include "debug.hh"
11 #include "script.hh"
12 #include "lookup.hh"
13 #include "side-position-interface.hh"
14 #include "paper-def.hh"
15 #include "dimension-cache.hh"
16
17 Script ::Script (SCM s)
18   : Item (s)
19 {
20 }
21
22 Molecule
23 Script::get_molecule(Score_element * me, Direction d)
24 {
25   SCM s = me->get_elt_property ("molecule");
26   assert (gh_pair_p (s));
27
28   SCM key = gh_car  (s);
29   if (key == ly_symbol2scm ("feta"))
30     {
31       return me->lookup_l ()->afm_find ("scripts-" +
32                                     ly_scm2string (index_cell (gh_cdr (s), d)));
33     }
34   else if (key == ly_symbol2scm ("accordion"))
35     {
36       return me->lookup_l ()->accordion (gh_cdr (s), me->paper_l()->get_var("interline"));
37     }
38   else
39     assert (false);
40
41   return Molecule ();
42 }
43
44
45
46
47 GLUE_SCORE_ELEMENT(Script,after_line_breaking);
48 SCM
49 Script::member_after_line_breaking ()
50 {
51   Side_position_interface i (this);
52   Direction d =  i.get_direction ();
53   i.set_direction (d);
54
55   return SCM_UNDEFINED;
56 }
57
58
59 MAKE_SCHEME_SCORE_ELEMENT_CALLBACK(Script,brew_molecule);
60
61 SCM
62 Script::brew_molecule (SCM smob)
63 {
64   Score_element *me= unsmob_element (smob);
65   Direction dir = DOWN;
66   SCM d = me->get_elt_property ("direction");
67   if (isdir_b (d))
68     dir = to_dir (d);
69   
70   return get_molecule (me, dir).create_scheme();
71 }
72
73
74