]> git.donarmstrong.com Git - lilypond.git/blob - lily/melody-engraver.cc
Imported Upstream version 2.16.0
[lilypond.git] / lily / melody-engraver.cc
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 1997--2012 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 "item.hh"
23 #include "melody-spanner.hh"
24 #include "pointer-group-interface.hh"
25
26 class Melody_engraver : public Engraver
27 {
28   Grob *melody_item_;
29   Grob *stem_;
30 protected:
31
32   DECLARE_ACKNOWLEDGER (stem);
33   DECLARE_ACKNOWLEDGER (slur);
34   TRANSLATOR_DECLARATIONS (Melody_engraver);
35   void stop_translation_timestep ();
36   void process_music ();
37 };
38
39 Melody_engraver::Melody_engraver ()
40 {
41   stem_ = 0;
42   melody_item_ = 0;
43 }
44
45 void
46 Melody_engraver::process_music ()
47 {
48   if (scm_is_string (get_property ("whichBar")))
49     melody_item_ = 0;
50 }
51
52 void
53 Melody_engraver::stop_translation_timestep ()
54 {
55   if (stem_
56       && !is_direction (stem_->get_property_data ("neutral-direction")))
57     {
58       extract_grob_set (stem_, "rests", rests);
59       if (rests.size ())
60         melody_item_ = 0;
61       else
62         {
63           if (!melody_item_)
64             melody_item_ = make_item ("MelodyItem", stem_->self_scm ());
65
66           Melody_spanner::add_stem (melody_item_, stem_);
67         }
68     }
69   stem_ = 0;
70 }
71
72 void
73 Melody_engraver::acknowledge_slur (Grob_info /* info */)
74 {
75   melody_item_ = 0;
76 }
77
78 void
79 Melody_engraver::acknowledge_stem (Grob_info info)
80 {
81   stem_ = info.grob ();
82 }
83
84 #include "translator.icc"
85
86 ADD_ACKNOWLEDGER (Melody_engraver, stem);
87 ADD_ACKNOWLEDGER (Melody_engraver, slur);
88
89 ADD_TRANSLATOR (Melody_engraver,
90                 /* doc */
91                 "Create information for context dependent typesetting"
92                 " decisions.",
93
94                 /* create */
95                 "MelodyItem ",
96
97                 /* read */
98                 "",
99
100                 /* write */
101                 ""
102                );
103