]> git.donarmstrong.com Git - lilypond.git/blob - lily/dots.cc
release: 1.3.61
[lilypond.git] / lily / dots.cc
1 /*
2   dots.cc -- implement Dots
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #include "dots.hh"
10 #include "molecule.hh"
11 #include "paper-def.hh"
12 #include "lookup.hh"
13 #include "staff-symbol-referencer.hh"
14 #include "directional-element-interface.hh"
15
16 Dots::Dots (SCM s)
17   : Item (s)
18 {
19 }
20
21 void
22 Dots::after_line_breaking ()
23 {
24   SCM d= get_elt_property ("dot-count");
25   if (gh_number_p (d) && gh_scm2int (d))
26     {
27       if (!directional_element (this).get ())
28         directional_element (this).set (UP);
29
30       Staff_symbol_referencer_interface si (this);
31       int p = int (si.position_f ());
32       if (!(p % 2))
33         si.set_position (p  + directional_element (this).get ());
34     }
35 }
36
37 MAKE_SCHEME_SCORE_ELEMENT_NON_DEFAULT_CALLBACKS(Dots);
38
39 SCM  
40 Dots::scheme_molecule (SCM d)
41 {
42   Score_element *sc = unsmob_element (d);
43   Molecule mol (sc->lookup_l ()->blank (Box (Interval (0,0),
44                                          Interval (0,0))));
45
46   SCM c = sc->get_elt_property ("dot-count");
47   if (gh_number_p (c))
48     {
49       Molecule d = sc->lookup_l ()->afm_find (String ("dots-dot"));
50
51       Real dw = d.extent (X_AXIS).length ();
52       d.translate_axis (-dw, X_AXIS);
53
54
55       for (int i = gh_scm2int (c); i--; )
56         {
57           d.translate_axis (2*dw,X_AXIS);
58           mol.add_molecule (d);
59         }
60     }
61   return mol.create_scheme ();
62 }
63
64
65