]> git.donarmstrong.com Git - lilypond.git/blob - lily/rest-engraver.cc
release: 1.3.90
[lilypond.git] / lily / rest-engraver.cc
1 /*
2   rest-grav.cc -- implement Rest_engraver
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8 #include "item.hh"
9 #include "staff-symbol-referencer.hh"
10 #include "musical-request.hh"
11 #include "dots.hh"
12 #include "rhythmic-head.hh"
13 #include "engraver.hh"
14
15
16 class Rest_engraver : public Engraver
17 {
18   Rest_req *rest_req_l_;
19   Item * dot_p_;
20   Score_element* rest_p_;
21 protected:
22   virtual bool do_try_music (Music *);
23   virtual void do_pre_move_processing ();
24   virtual void do_post_move_processing ();
25   virtual void do_process_music ();
26 public:
27   
28   VIRTUAL_COPY_CONS(Translator);
29   Rest_engraver ();
30 };
31
32
33 /*
34   Should merge with Note_head_engraver
35  */
36 Rest_engraver::Rest_engraver ()
37 {
38   rest_req_l_ =0;
39   rest_p_ =0;
40   dot_p_ =0;
41 }
42
43 void
44 Rest_engraver::do_post_move_processing ()
45 {
46   rest_req_l_ =0;
47 }
48
49 void
50 Rest_engraver::do_pre_move_processing ()
51 {
52   if (rest_p_)
53     {
54       typeset_element (rest_p_);
55       rest_p_ =0;
56     }
57   if (dot_p_)
58     {
59       typeset_element (dot_p_);
60       dot_p_ =0;
61     }    
62 }
63
64 void
65 Rest_engraver::do_process_music ()
66 {
67   if (rest_req_l_ && !rest_p_) 
68     {
69       rest_p_ = new Item (get_property ("basicRestProperties"));
70       Rhythmic_head::set_interface (rest_p_);
71       Staff_symbol_referencer::set_interface (rest_p_);
72
73       
74       rest_p_->set_elt_property ("duration-log",
75                                  gh_int2scm (rest_req_l_->duration_.durlog_i_)); 
76       
77       if (rest_req_l_->duration_.dots_i_)
78         {
79           dot_p_ = new Item (get_property ("basicDotsProperties"));
80
81           Staff_symbol_referencer::set_interface (dot_p_);
82           Rhythmic_head::set_dots (rest_p_, dot_p_);
83           dot_p_->set_parent (rest_p_, Y_AXIS);
84           dot_p_->add_offset_callback (Dots::quantised_position_callback, Y_AXIS);
85           dot_p_->set_elt_property ("dot-count",
86                                     gh_int2scm (rest_req_l_->duration_.dots_i_));
87           announce_element (dot_p_,0);
88         }
89
90       announce_element (rest_p_, rest_req_l_);
91     }
92 }
93
94 bool
95 Rest_engraver::do_try_music (Music *m)
96 {
97   if (Rest_req *r = dynamic_cast <Rest_req *> (m))
98     {
99       rest_req_l_ = r;
100       return true;
101     }  
102   return false;
103 }
104
105
106 ADD_THIS_TRANSLATOR(Rest_engraver);