]> git.donarmstrong.com Git - lilypond.git/blob - lily/note-heads-engraver.cc
(get_simple_trans_list):
[lilypond.git] / lily / note-heads-engraver.cc
1 /*
2   head-grav.cc -- part of GNU LilyPond
3
4   (c)  1997--2003 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 "event.hh"
11 #include "dots.hh"
12 #include "dot-column.hh"
13 #include "staff-symbol-referencer.hh"
14 #include "item.hh"
15 #include "engraver.hh"
16 #include "warn.hh"
17
18 /**
19   make balls and rests
20  */
21
22 class Note_heads_engraver : public Engraver
23 {
24   Link_array<Item> notes_;
25   
26   Link_array<Item> dots_;
27   Link_array<Music> note_reqs_;
28
29 public:
30   TRANSLATOR_DECLARATIONS(Note_heads_engraver);
31
32 protected:
33   virtual bool try_music (Music *req) ;
34   virtual void process_music ();
35
36   virtual void stop_translation_timestep ();
37 };
38
39 Note_heads_engraver::Note_heads_engraver()
40 {
41 }
42
43 bool
44 Note_heads_engraver::try_music (Music *m) 
45 {
46   if (m->is_mus_type ("note-event"))
47     {
48       note_reqs_.push (m);
49       return true;
50     }
51   else if (m->is_mus_type ("busy-playing-event"))
52     return note_reqs_.size ();
53   
54   return false;
55 }
56
57
58 void
59 Note_heads_engraver::process_music ()
60 {
61   for (int i=0; i < note_reqs_.size (); i++)
62     {
63       Item *note = new Item (get_property ("NoteHead"));
64
65       Music * req = note_reqs_[i];
66       
67       Duration dur = *unsmob_duration (req->get_mus_property ("duration"));
68
69       note->set_grob_property ("duration-log", gh_int2scm (dur.duration_log ()));
70
71       if (dur.dot_count ())
72         {
73           Item * d = new Item (get_property ("Dots"));
74           Rhythmic_head::set_dots (note, d);
75           
76           if (dur.dot_count ()
77               != gh_scm2int (d->get_grob_property ("dot-count")))
78             d->set_grob_property ("dot-count", gh_int2scm (dur.dot_count ()));
79
80           d->set_parent (note, Y_AXIS);
81           announce_grob (d, SCM_EOL);
82           dots_.push (d);
83         }
84
85       Pitch *pit =unsmob_pitch (req->get_mus_property ("pitch"));
86
87       int pos = pit->steps ();
88       SCM c0 = get_property ("centralCPosition");
89       if (gh_number_p (c0))
90         pos += gh_scm2int (c0);
91
92       note->set_grob_property ("staff-position",   gh_int2scm (pos));
93       announce_grob (note,req->self_scm());
94       notes_.push (note);
95     }
96 }
97
98 void
99 Note_heads_engraver::stop_translation_timestep ()
100 {
101   for (int i=0; i < notes_.size (); i++)
102     {
103       typeset_grob (notes_[i]);
104     }
105
106   notes_.clear ();
107   for (int i=0; i < dots_.size (); i++)
108     {
109       typeset_grob (dots_[i]);
110     }
111   dots_.clear ();
112   note_reqs_.clear ();
113 }
114
115
116
117 ENTER_DESCRIPTION(Note_heads_engraver,
118 /* descr */       "Generate noteheads.",
119 /* creats*/       "NoteHead Dots",
120 /* accepts */     "note-event busy-playing-event ligature-event abort-event",
121 /* acks  */      "",
122 /* reads */       "centralCPosition",
123 /* write */       "");