]> git.donarmstrong.com Git - lilypond.git/blob - lily/note-heads-engraver.cc
Merge branch 'lilypond/translation' of ssh://git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / lily / note-heads-engraver.cc
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 1997--2010 Han-Wen Nienhuys <hanwen@xs4all.nl>
5
6   LilyPond is free software: you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation, either version 3 of the License, or
9   (at your option) any later version.
10
11   LilyPond is distributed in the hope that it will be useful,
12   but WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   GNU General Public License for more details.
15
16   You should have received a copy of the GNU General Public License
17   along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #include "engraver.hh"
21
22 #include <cctype>
23 using namespace std;
24
25 #include "duration.hh"
26 #include "item.hh"
27 #include "output-def.hh"
28 #include "pitch.hh"
29 #include "rhythmic-head.hh"
30 #include "staff-symbol-referencer.hh"
31 #include "stream-event.hh"
32 #include "warn.hh"
33
34 #include "translator.icc"
35
36 class Note_heads_engraver : public Engraver
37 {
38   vector<Item*> notes_;
39   vector<Stream_event*> note_evs_;
40
41 public:
42   TRANSLATOR_DECLARATIONS (Note_heads_engraver);
43
44 protected:
45   DECLARE_TRANSLATOR_LISTENER (note);
46   void process_music ();
47   void stop_translation_timestep ();
48 };
49
50 Note_heads_engraver::Note_heads_engraver ()
51 {
52 }
53
54 IMPLEMENT_TRANSLATOR_LISTENER (Note_heads_engraver, note);
55 void
56 Note_heads_engraver::listen_note (Stream_event *ev)
57 {
58   note_evs_.push_back (ev);
59 }
60
61 void
62 Note_heads_engraver::process_music ()
63 {
64   SCM c0 = get_property ("middleCPosition");
65   SCM layout_proc = get_property("staffLineLayoutFunction");
66
67   for (vsize i = 0; i < note_evs_.size (); i++)
68     {
69       Stream_event *ev = note_evs_[i];
70       Item *note = make_item ("NoteHead", ev->self_scm ());
71
72       Pitch *pit = unsmob_pitch (ev->get_property ("pitch"));
73
74 #if 0 /* TODO: should have a mechanism to switch off these warnings. */
75
76       if (!pit)
77         ev->origin ()->warning (_ ("NoteEvent without pitch"));
78 #endif
79
80       int pos;
81       if (pit == 0)
82         pos = 0;
83       else if (ly_is_procedure (layout_proc)){
84         SCM pitch = ev->get_property("pitch");
85         pos = scm_to_int(scm_call_1 (layout_proc, pitch));
86       }
87       else
88         pos = pit->steps ();
89
90       if (scm_is_number (c0))
91         pos += scm_to_int(c0);
92
93       note->set_property ("staff-position", scm_from_int (pos));
94
95       /*
96         Shape note heads change on step of the scale.
97       */
98       SCM shape_vector = get_property ("shapeNoteStyles");
99       if (scm_is_vector (shape_vector))
100         {
101           SCM scm_tonic = get_property ("tonic");
102           Pitch tonic (0, 0, 0);
103           if (unsmob_pitch (scm_tonic))
104             tonic = *unsmob_pitch (scm_tonic);
105
106           unsigned int delta = (pit->get_notename () - tonic.get_notename () + 7) % 7;
107
108           SCM style = SCM_EOL;
109           if (scm_c_vector_length (shape_vector) > delta
110               && scm_is_symbol (scm_vector_ref (shape_vector, scm_from_int (delta))))
111             style = scm_vector_ref (shape_vector, scm_from_int (delta));
112           if (scm_is_symbol (style))
113             note->set_property ("style", style);
114         }
115
116       notes_.push_back (note);
117     }
118 }
119
120 void
121 Note_heads_engraver::stop_translation_timestep ()
122 {
123   notes_.clear ();
124   note_evs_.clear ();
125 }
126
127 ADD_TRANSLATOR (Note_heads_engraver,
128                 /* doc */
129                 "Generate note heads.",
130
131                 /* create */
132                 "NoteHead ",
133
134                 /* read */
135                 "middleCPosition "
136                 "staffLineLayoutFunction ",
137
138                 /* write */
139                 ""
140                 );