]> git.donarmstrong.com Git - lilypond.git/blob - lily/time-signature-engraver.cc
Issue 4138: Make \time work with \tweak and \footnote
[lilypond.git] / lily / time-signature-engraver.cc
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 1997--2014 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-group.hh"
21
22 #include "item.hh"
23 #include "international.hh"
24 #include "misc.hh"
25 #include "stream-event.hh"
26 #include "time-signature.hh"
27 #include "warn.hh"
28
29 #include "translator.icc"
30
31 /**
32    generate time_signatures.
33 */
34 class Time_signature_engraver : public Engraver
35 {
36   Item *time_signature_;
37   SCM last_time_fraction_;
38   SCM time_cause_;
39
40 protected:
41   virtual void derived_mark () const;
42   void stop_translation_timestep ();
43   void process_music ();
44 public:
45   TRANSLATOR_DECLARATIONS (Time_signature_engraver);
46   DECLARE_TRANSLATOR_LISTENER (time_signature);
47 };
48
49 void
50 Time_signature_engraver::derived_mark () const
51 {
52   scm_gc_mark (last_time_fraction_);
53   scm_gc_mark (time_cause_);
54 }
55
56 Time_signature_engraver::Time_signature_engraver ()
57 {
58   time_signature_ = 0;
59   time_cause_ = SCM_EOL;
60   last_time_fraction_ = SCM_BOOL_F;
61 }
62
63 IMPLEMENT_TRANSLATOR_LISTENER (Time_signature_engraver, time_signature);
64 void
65 Time_signature_engraver::listen_time_signature (Stream_event *ev)
66 {
67   time_cause_ = ev->self_scm ();
68 }
69
70 void
71 Time_signature_engraver::process_music ()
72 {
73   SCM fr = get_property ("timeSignatureFraction");
74   if (!time_signature_
75       && last_time_fraction_ != fr
76       && scm_is_pair (fr))
77     {
78       int den = scm_to_int (scm_cdr (fr));
79       if (den != (1 << intlog2 (den)))
80         {
81           /*
82             Todo: should make typecheck?
83
84             OTOH, Tristan Keuris writes 8/20 in his Intermezzi.
85           */
86           warning (_f ("strange time signature found: %d/%d",
87                        int (scm_to_int (scm_car (fr))),
88                        den));
89         }
90
91       time_signature_ = make_item ("TimeSignature", time_cause_);
92       time_signature_->set_property ("fraction", fr);
93
94       if (last_time_fraction_ == SCM_BOOL_F)
95         time_signature_->set_property ("break-visibility",
96                                        get_property ("implicitTimeSignatureVisibility"));
97
98       last_time_fraction_ = fr;
99     }
100 }
101
102 void
103 Time_signature_engraver::stop_translation_timestep ()
104 {
105   time_signature_ = 0;
106   time_cause_ = SCM_EOL;
107 }
108
109 #include "translator.icc"
110
111 ADD_TRANSLATOR (Time_signature_engraver,
112                 /* doc */
113                 "Create a @ref{TimeSignature} whenever"
114                 " @code{timeSignatureFraction} changes.",
115
116                 /* create */
117                 "TimeSignature ",
118
119                 /* read */
120                 "implicitTimeSignatureVisibility "
121                 "timeSignatureFraction ",
122
123                 /* write */
124                 ""
125                );