2 note-heads-engraver.cc -- part of GNU LilyPond
4 (c) 1997--2007 Han-Wen Nienhuys <hanwen@xs4all.nl>
12 #include "duration.hh"
14 #include "output-def.hh"
16 #include "rhythmic-head.hh"
17 #include "staff-symbol-referencer.hh"
18 #include "stream-event.hh"
21 #include "translator.icc"
23 class Note_heads_engraver : public Engraver
26 vector<Stream_event*> note_evs_;
29 TRANSLATOR_DECLARATIONS (Note_heads_engraver);
32 DECLARE_TRANSLATOR_LISTENER (note);
33 void process_music ();
34 void stop_translation_timestep ();
37 Note_heads_engraver::Note_heads_engraver ()
41 IMPLEMENT_TRANSLATOR_LISTENER (Note_heads_engraver, note);
43 Note_heads_engraver::listen_note (Stream_event *ev)
45 note_evs_.push_back (ev);
49 Note_heads_engraver::process_music ()
51 SCM c0 = get_property ("middleCPosition");
52 SCM layout_proc = get_property("staffLineLayoutFunction");
54 for (vsize i = 0; i < note_evs_.size (); i++)
56 Stream_event *ev = note_evs_[i];
57 Item *note = make_item ("NoteHead", ev->self_scm ());
59 Pitch *pit = unsmob_pitch (ev->get_property ("pitch"));
61 #if 0 /* TODO: should have a mechanism to switch off these warnings. */
64 ev->origin ()->warning (_ ("NoteEvent without pitch"));
70 else if (ly_is_procedure (layout_proc)){
71 SCM pitch = ev->get_property("pitch");
72 pos = scm_to_int(scm_call_1 (layout_proc, pitch));
77 if (scm_is_number (c0))
78 pos += scm_to_int(c0);
80 note->set_property ("staff-position", scm_from_int (pos));
83 Shape note heads change on step of the scale.
85 SCM shape_vector = get_property ("shapeNoteStyles");
86 if (scm_is_vector (shape_vector))
88 SCM scm_tonic = get_property ("tonic");
89 Pitch tonic (0, 0, 0);
90 if (unsmob_pitch (scm_tonic))
91 tonic = *unsmob_pitch (scm_tonic);
93 unsigned int delta = (pit->get_notename () - tonic.get_notename () + 7) % 7;
96 if (scm_c_vector_length (shape_vector) > delta
97 && scm_is_symbol (scm_vector_ref (shape_vector, scm_from_int (delta))))
98 style = scm_vector_ref (shape_vector, scm_from_int (delta));
99 if (scm_is_symbol (style))
100 note->set_property ("style", style);
103 notes_.push_back (note);
108 Note_heads_engraver::stop_translation_timestep ()
114 ADD_TRANSLATOR (Note_heads_engraver,
116 "Generate note heads.",
123 "staffLineLayoutFunction ",