]> git.donarmstrong.com Git - lilypond.git/blob - lily/note-heads-engraver.cc
Issue 4550 (2/2) Avoid "using namespace std;" in included files
[lilypond.git] / lily / note-heads-engraver.cc
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 1997--2015 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
24 #include "duration.hh"
25 #include "item.hh"
26 #include "output-def.hh"
27 #include "pitch.hh"
28 #include "rhythmic-head.hh"
29 #include "staff-symbol-referencer.hh"
30 #include "stream-event.hh"
31 #include "warn.hh"
32
33 #include "translator.icc"
34
35 using std::vector;
36
37 class Note_heads_engraver : public Engraver
38 {
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         {
85           SCM pitch = ev->get_property ("pitch");
86           pos = scm_to_int (scm_call_1 (layout_proc, pitch));
87         }
88       else
89         pos = pit->steps ();
90
91       if (scm_is_number (c0))
92         pos += scm_to_int (c0);
93
94       note->set_property ("staff-position", scm_from_int (pos));
95
96       /*
97         Shape note heads change on step of the scale.
98       */
99       SCM shape_vector = get_property ("shapeNoteStyles");
100       if (scm_is_vector (shape_vector))
101         {
102           SCM scm_tonic = get_property ("tonic");
103           Pitch tonic;
104           if (unsmob<Pitch> (scm_tonic))
105             tonic = *unsmob<Pitch> (scm_tonic);
106
107           unsigned int delta = (pit->get_notename () - tonic.get_notename () + 7) % 7;
108
109           SCM style = SCM_EOL;
110           if (scm_c_vector_length (shape_vector) > delta
111               && scm_is_symbol (scm_vector_ref (shape_vector, scm_from_int (delta))))
112             style = scm_vector_ref (shape_vector, scm_from_int (delta));
113           if (scm_is_symbol (style))
114             note->set_property ("style", style);
115         }
116     }
117 }
118
119 void
120 Note_heads_engraver::stop_translation_timestep ()
121 {
122   note_evs_.clear ();
123 }
124
125 ADD_TRANSLATOR (Note_heads_engraver,
126                 /* doc */
127                 "Generate note heads.",
128
129                 /* create */
130                 "NoteHead ",
131
132                 /* read */
133                 "middleCPosition "
134                 "staffLineLayoutFunction ",
135
136                 /* write */
137                 ""
138                );