]> git.donarmstrong.com Git - lilypond.git/blob - lily/note-heads-engraver.cc
* scm/define-grobs.scm (all-grob-descriptions): use callback to
[lilypond.git] / lily / note-heads-engraver.cc
1 /*
2   note-heads-engraver.cc -- part of GNU LilyPond
3
4   (c) 1997--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
5 */
6
7 #include "engraver.hh"
8
9 #include <cctype>
10 using namespace std;
11
12 #include "dots.hh"
13 #include "dot-column.hh"
14 #include "duration.hh"
15 #include "item.hh"
16 #include "output-def.hh"
17 #include "pitch.hh"
18 #include "rhythmic-head.hh"
19 #include "staff-symbol-referencer.hh"
20 #include "stream-event.hh"
21 #include "warn.hh"
22
23 #include "translator.icc"
24
25 class Note_heads_engraver : public Engraver
26 {
27   vector<Item*> notes_;
28   vector<Item*> dots_;
29   vector<Stream_event*> note_evs_;
30
31 public:
32   TRANSLATOR_DECLARATIONS (Note_heads_engraver);
33
34 protected:
35   DECLARE_TRANSLATOR_LISTENER (note);
36   void process_music ();
37   void stop_translation_timestep ();
38 };
39
40 Note_heads_engraver::Note_heads_engraver ()
41 {
42 }
43
44 IMPLEMENT_TRANSLATOR_LISTENER (Note_heads_engraver, note);
45 void
46 Note_heads_engraver::listen_note (Stream_event *ev)
47 {
48   note_evs_.push_back (ev);
49 }
50
51 void
52 Note_heads_engraver::process_music ()
53 {
54   for (vsize i = 0; i < note_evs_.size (); i++)
55     {
56       Stream_event *ev = note_evs_[i];
57       Item *note = make_item ("NoteHead", ev->self_scm ());
58
59       Pitch *pit = unsmob_pitch (ev->get_property ("pitch"));
60
61 #if 0 /* TODO: should have a mechanism to switch off these warnings. */
62
63       if (!pit)
64         ev->origin ()->warning (_ ("NoteEvent without pitch"));
65 #endif
66
67       int pos = pit ? pit->steps () : 0;
68       SCM c0 = get_property ("middleCPosition");
69       if (scm_is_number (c0))
70         pos += scm_to_int (c0);
71
72       note->set_property ("staff-position", scm_from_int (pos));
73
74       /*
75         Shape note heads change on step of the scale.
76       */
77       SCM shape_vector = get_property ("shapeNoteStyles");
78       if (scm_is_vector (shape_vector))
79         {
80           SCM scm_tonic = get_property ("tonic");
81           Pitch tonic (0, 0, 0);
82           if (unsmob_pitch (scm_tonic))
83             tonic = *unsmob_pitch (scm_tonic);
84
85           unsigned int delta = (pit->get_notename () - tonic.get_notename () + 7) % 7;
86
87           SCM style = SCM_EOL;
88           if (scm_c_vector_length (shape_vector) > delta
89               && scm_is_symbol (scm_vector_ref (shape_vector, scm_from_int (delta))))
90             style = scm_vector_ref (shape_vector, scm_from_int (delta));
91           if (scm_is_symbol (style))
92             note->set_property ("style", style);
93         }
94
95       notes_.push_back (note);
96     }
97 }
98
99 void
100 Note_heads_engraver::stop_translation_timestep ()
101 {
102   notes_.clear ();
103   dots_.clear ();
104   note_evs_.clear ();
105 }
106
107 ADD_TRANSLATOR (Note_heads_engraver,
108                 /* doc */ "Generate noteheads.",
109                 /* create */
110                 "NoteHead "
111                 "Dots",
112                 /* accept */
113                 "note-event",
114                 /* read */ "middleCPosition",
115                 /* write */ "");