]> git.donarmstrong.com Git - lilypond.git/blob - lily/note-heads-engraver.cc
ae238425cd33725d1068d92ff38b246442213dd9
[lilypond.git] / lily / note-heads-engraver.cc
1 /*
2   head-grav.cc -- part of GNU LilyPond
3
4   (c)  1997--2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
5 */
6 #include <ctype.h>
7
8 #include "rhythmic-head.hh"
9 #include "paper-def.hh"
10 #include "musical-request.hh"
11 #include "dots.hh"
12 #include "dot-column.hh"
13 #include "staff-symbol-referencer.hh"
14 #include "item.hh"
15 #include "score-engraver.hh"
16 #include "warn.hh"
17
18 /**
19   make balls and rests
20  */
21 class Note_heads_engraver : public Engraver
22 {
23   Link_array<Item> note_p_arr_;
24   
25   Link_array<Item> dot_p_arr_;
26   Link_array<Note_req> note_req_l_arr_;
27   Moment note_end_mom_;
28 public:
29   TRANSLATOR_DECLARATIONS(Note_heads_engraver);
30
31 protected:
32   virtual void start_translation_timestep ();
33   virtual bool try_music (Music *req_l) ;
34   virtual void process_music ();
35
36   virtual void stop_translation_timestep ();
37 };
38
39 bool
40 Note_heads_engraver::try_music (Music *m) 
41 {
42   if (Note_req * n =dynamic_cast <Note_req *> (m))
43     {
44       note_req_l_arr_.push (n);
45       note_end_mom_  = note_end_mom_ >? now_mom () + m->length_mom ();
46       
47       return true;
48     }
49   else if (dynamic_cast<Busy_playing_req*> (m))
50     {
51       return now_mom () < note_end_mom_;
52     }
53   return false;
54   
55 }
56
57
58 void
59 Note_heads_engraver::process_music ()
60 {
61   for (int i=0; i < note_req_l_arr_.size (); i++)
62     {
63       Item *note_p  = new Item (get_property ("NoteHead"));
64       
65       Staff_symbol_referencer::set_interface (note_p);
66
67
68       
69       Music * req = note_req_l_arr_[i];
70       
71       Duration dur = *unsmob_duration (req->get_mus_property ("duration"));
72
73       note_p->set_grob_property ("duration-log", gh_int2scm (dur.duration_log ()));
74
75       if (dur.dot_count ())
76         {
77           Item * d = new Item (get_property ("Dots"));
78           Rhythmic_head::set_dots (note_p, d);
79           
80           if (dur.dot_count ()
81               != gh_scm2int (d->get_grob_property ("dot-count")))
82             d->set_grob_property ("dot-count", gh_int2scm (dur.dot_count ()));
83
84           d->set_parent (note_p, Y_AXIS);
85           announce_grob (d,0);
86           dot_p_arr_.push (d);
87         }
88
89       Pitch *pit =unsmob_pitch (req->get_mus_property ("pitch"));
90
91       int pos = pit->steps ();
92       SCM c0 = get_property ("centralCPosition");
93       if (gh_number_p (c0))
94         pos += gh_scm2int (c0);
95
96       note_p->set_grob_property ("staff-position",   gh_int2scm (pos));
97       if (to_boolean (get_property ("easyPlay")))
98         {
99           char s[2] = "a";
100           s[0] = (pit->notename_i_ + 2)%7 + 'a';
101
102           s[0] = toupper (s[0]);
103           note_p->set_grob_property ("note-character", ly_str02scm (s));
104         }
105       
106       announce_grob (note_p,req);
107       note_p_arr_.push (note_p);
108     }
109 }
110  
111 void
112 Note_heads_engraver::stop_translation_timestep ()
113 {
114   for (int i=0; i < note_p_arr_.size (); i++)
115     {
116       typeset_grob (note_p_arr_[i]);
117     }
118   note_p_arr_.clear ();
119   for (int i=0; i < dot_p_arr_.size (); i++)
120     {
121       typeset_grob (dot_p_arr_[i]);
122     }
123   dot_p_arr_.clear ();
124   
125   note_req_l_arr_.clear ();
126 }
127
128 void
129 Note_heads_engraver::start_translation_timestep ()
130 {
131   
132   
133 }
134
135 Note_heads_engraver::Note_heads_engraver()
136 {}
137
138 ENTER_DESCRIPTION(Note_heads_engraver,
139 /* descr */       "Generate one or more noteheads from Music of type Note_req.",
140 /* creats*/       "NoteHead Dots",
141 /* acks  */       "",
142 /* reads */       "",
143 /* write */       "");