]> git.donarmstrong.com Git - lilypond.git/blob - lily/melody-engraver.cc
Web-ja: update introduction
[lilypond.git] / lily / melody-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 "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   void acknowledge_stem (Grob_info);
33   void acknowledge_slur (Grob_info);
34   TRANSLATOR_DECLARATIONS (Melody_engraver);
35   void stop_translation_timestep ();
36   void process_acknowledged ();
37   void process_music ();
38 };
39
40 Melody_engraver::Melody_engraver (Context *c)
41   : Engraver (c)
42 {
43   stem_ = 0;
44   melody_item_ = 0;
45 }
46
47 void
48 Melody_engraver::process_music ()
49 {
50   if (scm_is_string (get_property ("whichBar")))
51     melody_item_ = 0;
52 }
53
54 /*
55   Used to be in stop_translation_timestep, but grobs can't
56   be created here.
57 */
58 void
59 Melody_engraver::process_acknowledged ()
60 {
61   if (stem_
62       && !is_direction (stem_->get_property_data ("neutral-direction")))
63     {
64       extract_grob_set (stem_, "rests", rests);
65       if (rests.size ())
66         melody_item_ = 0;
67       else
68         {
69           if (!melody_item_)
70             melody_item_ = make_item ("MelodyItem", stem_->self_scm ());
71
72           Melody_spanner::add_stem (melody_item_, stem_);
73         }
74     }
75 }
76
77 void
78 Melody_engraver::stop_translation_timestep ()
79 {
80   stem_ = 0;
81 }
82
83 void
84 Melody_engraver::acknowledge_slur (Grob_info /* info */)
85 {
86   melody_item_ = 0;
87 }
88
89 void
90 Melody_engraver::acknowledge_stem (Grob_info info)
91 {
92   stem_ = info.grob ();
93 }
94
95 #include "translator.icc"
96
97
98 void
99 Melody_engraver::boot ()
100 {
101   ADD_ACKNOWLEDGER (Melody_engraver, stem);
102   ADD_ACKNOWLEDGER (Melody_engraver, slur);
103 }
104
105 ADD_TRANSLATOR (Melody_engraver,
106                 /* doc */
107                 "Create information for context dependent typesetting"
108                 " decisions.",
109
110                 /* create */
111                 "MelodyItem ",
112
113                 /* read */
114                 "",
115
116                 /* write */
117                 ""
118                );
119