]> git.donarmstrong.com Git - lilypond.git/blob - lily/grace-spacing-engraver.cc
fce1f161d08c671e5246bdcde442e4c0982a398b
[lilypond.git] / lily / grace-spacing-engraver.cc
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 2006--2012 Han-Wen <hanwen@lilypond.org>
5
6
7   LilyPond is free software: you can redistribute it and/or modify
8   it under the terms of the GNU General Public License as published by
9   the Free Software Foundation, either version 3 of the License, or
10   (at your option) any later version.
11
12   LilyPond is distributed in the hope that it will be useful,
13   but WITHOUT ANY WARRANTY; without even the implied warranty of
14   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15   GNU General Public License for more details.
16
17   You should have received a copy of the GNU General Public License
18   along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
19 */
20
21 #include "engraver.hh"
22 #include "moment.hh"
23 #include "pointer-group-interface.hh"
24 #include "spanner.hh"
25
26 #include "translator.icc"
27
28 class Grace_spacing_engraver : public Engraver
29 {
30   TRANSLATOR_DECLARATIONS (Grace_spacing_engraver);
31
32 protected:
33
34   Moment last_moment_;
35   Spanner *grace_spacing_;
36
37   void process_music ();
38   void stop_translation_timestep ();
39 };
40
41 Grace_spacing_engraver::Grace_spacing_engraver ()
42 {
43   grace_spacing_ = 0;
44 }
45
46 void
47 Grace_spacing_engraver::process_music ()
48 {
49   Moment now = now_mom ();
50   if (!last_moment_.grace_part_ and now.grace_part_)
51     {
52       grace_spacing_ = make_spanner ("GraceSpacing", SCM_EOL);
53     }
54
55   if (grace_spacing_ && (now.grace_part_ || last_moment_.grace_part_))
56     {
57       Grob *column = unsmob_grob (get_property ("currentMusicalColumn"));
58       Pointer_group_interface::add_grob (grace_spacing_,
59                                          ly_symbol2scm ("columns"),
60                                          column);
61
62       column->set_object ("grace-spacing", grace_spacing_->self_scm ());
63
64       if (!grace_spacing_->get_bound (LEFT))
65         grace_spacing_->set_bound (LEFT, column);
66       else
67         grace_spacing_->set_bound (RIGHT, column);
68     }
69 }
70
71 void
72 Grace_spacing_engraver::stop_translation_timestep ()
73 {
74   last_moment_ = now_mom ();
75
76   if (!last_moment_.grace_part_)
77     grace_spacing_ = 0;
78 }
79
80 ADD_TRANSLATOR (Grace_spacing_engraver,
81                 "Bookkeeping of shortest starting and playing notes in grace"
82                 " note runs.",
83
84                 /* create */
85                 "GraceSpacing ",
86
87                 /* read */
88                 "currentMusicalColumn ",
89
90                 /* write */
91                 ""
92                );