]> git.donarmstrong.com Git - lilypond.git/blob - lily/rest.cc
release: 1.3.105
[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 "font-interface.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 MAKE_SCHEME_CALLBACK(Rest,after_line_breaking,1);
19 SCM
20 Rest::after_line_breaking (SCM smob)
21 {
22   Score_element *me = unsmob_element (smob);
23   int bt = gh_scm2int (me->get_elt_property ("duration-log"));
24   if (bt == 0)
25     {
26       me->translate_axis (Staff_symbol_referencer::staff_space (me) , Y_AXIS);
27     }
28
29   Score_element * d = unsmob_element (me->get_elt_property ("dot"));
30   if (d && bt > 4) // UGH.
31     {
32       d->set_elt_property ("staff-position",
33                            gh_int2scm ((bt == 7) ? 4 : 3));
34     }
35
36   return SCM_UNSPECIFIED;
37 }
38
39
40 MAKE_SCHEME_CALLBACK(Rest,brew_molecule,1)
41 SCM 
42 Rest::brew_molecule (SCM smob) 
43 {
44   Score_element* me = unsmob_element (smob);
45   
46   bool ledger_b =false;
47
48   SCM balltype = me->get_elt_property ("duration-log");
49   
50   if (balltype == gh_int2scm (0) || balltype == gh_int2scm (1))
51     {
52       int sz = Staff_symbol_referencer::line_count (me);
53       Real dif = abs(Staff_symbol_referencer::position_f (me)  - (2* gh_scm2int (balltype) - 1)); 
54       ledger_b = dif > sz;
55     }
56   
57   String style; 
58   SCM style_sym =me->get_elt_property ("style");
59   if (gh_scm2int (balltype) >= 2 && gh_string_p (style_sym))
60     {
61       style = ly_scm2string (style_sym);
62     }
63
64   String idx =  ("rests-") + to_str (gh_scm2int (balltype))
65     + (ledger_b ? "o" : "") + style;
66
67   return Font_interface::get_default_font (me)->find_by_name (idx).smobbed_copy();
68 }
69
70
71 bool
72 Rest::has_interface (Score_element*m)
73 {
74   return m && m->has_interface (ly_symbol2scm ("rest-interface"));
75 }