]> git.donarmstrong.com Git - lilypond.git/blob - lily/rest.cc
release: 1.3.66
[lilypond.git] / lily / rest.cc
1 /*
2  rest.cc -- implement Rest
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 "molecule.hh"
10 #include "paper-def.hh"
11 #include "lookup.hh"
12 #include "rest.hh"
13 #include "dots.hh"
14 #include "paper-score.hh"
15 #include "staff-symbol-referencer.hh"
16
17 // -> offset callback
18 GLUE_SCORE_ELEMENT(Rest,after_line_breaking);
19 SCM
20 Rest::member_after_line_breaking ()
21 {
22   if (balltype_i () == 0)
23     {
24       Staff_symbol_referencer_interface si (this);
25       si.set_position (si.position_f () + 2);
26     }
27   Item * d = dots_l ();
28   if (d && balltype_i () > 4) // UGH.
29     {
30       /*
31         UGH. 
32        */
33       staff_symbol_referencer (d)
34         .set_position ((balltype_i () == 7) ? 4 : 3);
35     }
36
37   return SCM_UNDEFINED;
38 }
39
40
41 MAKE_SCHEME_SCORE_ELEMENT_CALLBACK(Rest,brew_molecule)
42
43 SCM 
44 Rest::brew_molecule (SCM smob) 
45 {
46   Score_element* sc = unsmob_element (smob);
47   
48   bool ledger_b =false;
49
50   SCM balltype = sc->get_elt_property ("duration-log");
51   
52   if (balltype == gh_int2scm (0) || balltype == gh_int2scm (1))
53     {
54       Staff_symbol_referencer_interface si(sc);
55       ledger_b = abs(si.position_f ()  - (2* gh_scm2int (balltype) - 1))
56         > si.line_count (); 
57     }
58   
59   String style; 
60   SCM style_sym =sc->get_elt_property ("style");
61   if (gh_scm2int (balltype) >= 2 && gh_string_p (style_sym))
62     {
63       style = ly_scm2string (style_sym);
64     }
65
66   String idx =  ("rests-") + to_str (gh_scm2int (balltype))
67     + (ledger_b ? "o" : "") + style;
68
69   return sc-> lookup_l ()->afm_find (idx).create_scheme();
70 }
71
72
73
74 Rest::Rest (SCM s)
75   : Rhythmic_head (s)
76 {
77 }
78