2 key-engraver.cc -- implement Key_engraver
4 source file of the GNU LilyPond music typesetter
6 (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
13 #include "bar-line.hh"
14 #include "staff-symbol-referencer.hh"
16 #include "engraver.hh"
18 #include "protected-scm.hh"
22 TODO: The representation of key sigs is all fucked.
26 Make the key signature.
28 class Key_engraver : public Engraver
30 void create_key (bool);
31 void read_ev (Music const * r);
36 TRANSLATOR_DECLARATIONS (Key_engraver);
39 virtual void initialize ();
40 virtual void finalize ();
41 virtual bool try_music (Music *ev);
42 virtual void stop_translation_timestep ();
43 virtual void start_translation_timestep ();
44 virtual void process_music ();
45 virtual void acknowledge_grob (Grob_info);
50 Key_engraver::finalize ()
55 Key_engraver::Key_engraver ()
63 Key_engraver::create_key (bool def)
67 item_ = make_item ("KeySignature", key_ev_ ? key_ev_->self_scm () : SCM_EOL);
69 item_->set_property ("c0-position",
70 get_property ("middleCPosition"));
72 if (to_boolean (get_property ("printKeyCancellation")))
73 item_->set_property ("old-accidentals", get_property ("lastKeySignature"));
74 item_->set_property ("new-accidentals", get_property ("keySignature"));
79 SCM vis = get_property ("explicitKeySignatureVisibility");
80 if (ly_c_procedure_p (vis))
81 item_->set_property ("break-visibility",vis);
87 Key_engraver::try_music (Music * ev)
89 if (ev->is_mus_type ("key-change-event"))
91 /* do this only once, just to be on the safe side. */
104 Key_engraver::acknowledge_grob (Grob_info info)
106 if (Clef::has_interface (info.grob_))
108 SCM c = get_property ("createKeyOnClefChange");
114 else if (Bar_line::has_interface (info.grob_)
115 && ly_c_pair_p (get_property ("keySignature")))
123 Key_engraver::process_music ()
126 get_property ("lastKeySignature") != get_property ("keySignature"))
132 Key_engraver::stop_translation_timestep ()
135 context ()->set_property ("lastKeySignature", get_property ("keySignature"));
140 Key_engraver::read_ev (Music const * r)
142 SCM p = r->get_property ("pitch-alist");
143 if (!ly_c_pair_p (p))
146 SCM n = scm_list_copy (p);
148 for (SCM s = get_property ("keyAccidentalOrder");
149 ly_c_pair_p (s); s = ly_cdr (s))
151 if (ly_c_pair_p (scm_member (ly_car (s), n)))
153 accs = scm_cons (ly_car (s), accs);
154 n = scm_delete_x (ly_car (s), n);
158 for (SCM s = n ; ly_c_pair_p (s); s = ly_cdr (s))
159 if (ly_scm2int (ly_cdar (s)))
160 accs = scm_cons (ly_car (s), accs);
162 context ()->set_property ("keySignature", accs);
163 context ()->set_property ("tonic" ,
164 r->get_property ("tonic"));
169 Key_engraver::start_translation_timestep ()
176 Key_engraver::initialize ()
178 context ()->set_property ("keySignature", SCM_EOL);
179 context ()->set_property ("lastKeySignature", SCM_EOL);
182 context ()->set_property ("tonic", p.smobbed_copy ());
187 ENTER_DESCRIPTION (Key_engraver,
189 /* creats*/ "KeySignature",
190 /* accepts */ "key-change-event",
191 /* acks */ "bar-line-interface clef-interface",
192 /* reads */ "keySignature printKeyCancellation lastKeySignature explicitKeySignatureVisibility createKeyOnClefChange keyAccidentalOrder keySignature",
193 /* write */ "lastKeySignature tonic keySignature");