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