]> git.donarmstrong.com Git - lilypond.git/blob - lily/note-heads-engraver.cc
release: 1.3.6
[lilypond.git] / lily / note-heads-engraver.cc
1 /*
2   head-grav.cc -- part of GNU LilyPond
3
4   (c)  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
5 */
6
7 #include "note-head.hh"
8 #include "note-heads-engraver.hh"
9 #include "paper-def.hh"
10 #include "musical-request.hh"
11 #include "dots.hh"
12 #include "dot-column.hh"
13
14 Note_heads_engraver::Note_heads_engraver()
15 {
16 }
17
18 bool
19 Note_heads_engraver::do_try_music (Music *m) 
20 {
21   if (Note_req * n =dynamic_cast <Note_req *> (m))
22     {
23       note_req_l_arr_.push (n);
24       notes_end_pq_.insert (now_mom () + m->length_mom ());
25       
26       return true;
27     }
28   else if (Tonic_req* t = dynamic_cast<Tonic_req*> (m))
29     {
30       return true;
31     }
32   else if (Inversion_req* i = dynamic_cast<Inversion_req*> (m))
33     {
34       return true;
35     }
36   else if (Bass_req* b = dynamic_cast<Bass_req*> (m))
37     {
38       return true;
39     }
40   else if (Busy_playing_req * p = dynamic_cast<Busy_playing_req*> (m))
41     {
42       return notes_end_pq_.size ();
43     }
44   else if (Pitch_interrogate_req *p = dynamic_cast<Pitch_interrogate_req*> (m))
45     {
46       for (int i= note_req_l_arr_.size (); i--;)
47         p->pitch_arr_.push (note_req_l_arr_[i]->pitch_); // GUH UGH UGHUGH.
48       return true;
49     }
50   return false;
51   
52 }
53
54 void
55 Note_heads_engraver::do_process_requests()
56 {
57   if (note_p_arr_.size ())
58     return ;
59   
60   SCM noteheadstyle = get_property ("noteHeadStyle", 0);
61   for (int i=0; i < note_req_l_arr_.size (); i++)
62     {
63       Note_head *note_p  = new Note_head;
64       Note_req * note_req_l = note_req_l_arr_[i];
65       note_p->balltype_i_ = note_req_l->duration_.durlog_i_;
66
67       if (note_req_l->duration_.dots_i_)
68         {
69           Dots * d = new Dots;
70           note_p->dots_l_ = d;
71           d->dots_i_ = note_req_l->duration_.dots_i_;
72           announce_element (Score_element_info (d,0));
73           dot_p_arr_.push (d);
74         }
75       note_p->set_position(note_req_l->pitch_.steps ());
76
77       /*
78         TODO: transparent note heads.
79        */
80          
81       if (gh_string_p (noteheadstyle))
82         {
83           note_p->set_elt_property ("style", noteheadstyle);
84         }
85       
86       Score_element_info itinf (note_p,note_req_l);
87       announce_element (itinf);
88       note_p_arr_.push (note_p);
89     }
90 }
91  
92 void
93 Note_heads_engraver::do_pre_move_processing()
94 {
95   for (int i=0; i < note_p_arr_.size (); i++)
96     {
97       typeset_element (note_p_arr_[i]);
98     }
99   note_p_arr_.clear ();
100   for (int i=0; i < dot_p_arr_.size (); i++)
101     {
102       typeset_element (dot_p_arr_[i]);
103     }
104   dot_p_arr_.clear ();
105   
106   note_req_l_arr_.clear ();
107 }
108
109 void
110 Note_heads_engraver::do_post_move_processing()
111 {
112   Moment n (now_mom ());
113   while (notes_end_pq_.size () && notes_end_pq_.front () <=n)
114     notes_end_pq_.get ();
115 }
116
117
118
119 ADD_THIS_TRANSLATOR(Note_heads_engraver);
120