]> git.donarmstrong.com Git - lilypond.git/blob - lily/rest-engraver.cc
patch::: 1.3.108.jcn3
[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   void deprecated_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::deprecated_process_music ()
66 {
67   if (rest_req_l_ && !rest_p_) 
68     {
69       rest_p_ = new Item (get_property ("Rest"));
70       Rhythmic_head::set_interface (rest_p_);
71       Staff_symbol_referencer::set_interface (rest_p_);
72
73       
74       int durlog  = unsmob_duration (rest_req_l_->get_mus_property ("duration"))-> duration_log ();
75       
76       rest_p_->set_elt_property ("duration-log",
77                                  gh_int2scm (durlog));
78
79       int dots =unsmob_duration (rest_req_l_->get_mus_property ("duration"))->dot_count ();
80       
81       if (dots)
82         {
83           dot_p_ = new Item (get_property ("Dots"));
84
85           Rhythmic_head::set_dots (rest_p_, dot_p_);
86           dot_p_->set_parent (rest_p_, Y_AXIS);
87           dot_p_->set_elt_property ("dot-count", gh_int2scm (dots));
88           announce_element (dot_p_,0);
89         }
90
91       announce_element (rest_p_, rest_req_l_);
92     }
93 }
94
95 bool
96 Rest_engraver::do_try_music (Music *m)
97 {
98   if (Rest_req *r = dynamic_cast <Rest_req *> (m))
99     {
100       rest_req_l_ = r;
101       return true;
102     }  
103   return false;
104 }
105
106
107 ADD_THIS_TRANSLATOR(Rest_engraver);