2 This file is part of LilyPond, the GNU music typesetter.
4 Copyright (C) 2005--2014 Han-Wen Nienhuys <hanwen@xs4all.nl>
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.
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.
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/>.
20 #include "engraver.hh"
22 #include "axis-group-interface.hh"
26 #include "note-head.hh"
28 #include "pointer-group-interface.hh"
29 #include "side-position-interface.hh"
30 #include "stream-event.hh"
33 class Pitched_trill_engraver : public Engraver
36 TRANSLATOR_DECLARATIONS (Pitched_trill_engraver);
39 DECLARE_ACKNOWLEDGER (note_head);
40 DECLARE_ACKNOWLEDGER (dots);
41 DECLARE_ACKNOWLEDGER (stem);
42 DECLARE_ACKNOWLEDGER (flag);
43 DECLARE_ACKNOWLEDGER (trill_spanner);
44 void stop_translation_timestep ();
49 Item *trill_accidental_;
51 vector<Grob *> heads_;
53 void make_trill (Stream_event *);
56 Pitched_trill_engraver::Pitched_trill_engraver ()
60 trill_accidental_ = 0;
64 Pitched_trill_engraver::acknowledge_dots (Grob_info info)
66 heads_.push_back (info.grob ());
69 Pitched_trill_engraver::acknowledge_stem (Grob_info info)
71 heads_.push_back (info.grob ());
74 Pitched_trill_engraver::acknowledge_flag (Grob_info info)
76 heads_.push_back (info.grob ());
79 Pitched_trill_engraver::acknowledge_note_head (Grob_info info)
81 heads_.push_back (info.grob ());
85 Pitched_trill_engraver::acknowledge_trill_spanner (Grob_info info)
87 Stream_event *ev = info.event_cause ();
89 && ev->in_event_class ("trill-span-event")
90 && to_dir (ev->get_property ("span-direction")) == START
91 && Pitch::unsmob (ev->get_property ("pitch")))
96 Pitched_trill_engraver::make_trill (Stream_event *ev)
98 SCM scm_pitch = ev->get_property ("pitch");
99 Pitch *p = Pitch::unsmob (scm_pitch);
101 SCM keysig = get_property ("localAlterations");
103 SCM key = scm_cons (scm_from_int (p->get_octave ()),
104 scm_from_int (p->get_notename ()));
106 int bn = measure_number (context ());
108 SCM handle = scm_assoc (key, keysig);
109 if (handle != SCM_BOOL_F)
111 bool same_bar = (bn == robust_scm2int (scm_caddr (handle), 0));
113 = (p->get_alteration () == robust_scm2rational (scm_cadr (handle), 0));
115 if (!same_bar || (same_bar && !same_alt))
120 = (handle == SCM_BOOL_F) || p->get_alteration () == Rational (0)
121 || (ev->get_property ("force-accidental") == SCM_BOOL_T);
125 programming_error ("already have a trill head.");
129 trill_head_ = make_item ("TrillPitchHead", ev->self_scm ());
130 SCM c0scm = get_property ("middleCPosition");
132 int c0 = scm_is_number (c0scm) ? scm_to_int (c0scm) : 0;
134 trill_head_->set_property ("staff-position",
135 scm_from_int (Pitch::unsmob (scm_pitch)->steps ()
138 trill_group_ = make_item ("TrillPitchGroup", ev->self_scm ());
139 trill_group_->set_parent (trill_head_, Y_AXIS);
141 Axis_group_interface::add_element (trill_group_, trill_head_);
145 trill_accidental_ = make_item ("TrillPitchAccidental", ev->self_scm ());
147 // fixme: naming -> alterations
148 trill_accidental_->set_property ("alteration", ly_rational2scm (p->get_alteration ()));
149 Side_position_interface::add_support (trill_accidental_, trill_head_);
151 trill_head_->set_object ("accidental-grob", trill_accidental_->self_scm ());
152 trill_accidental_->set_parent (trill_head_, Y_AXIS);
153 Axis_group_interface::add_element (trill_group_, trill_accidental_);
158 Pitched_trill_engraver::stop_translation_timestep ()
161 for (vsize i = 0; i < heads_.size (); i++)
162 Side_position_interface::add_support (trill_group_, heads_[i]);
167 trill_accidental_ = 0;
170 #include "translator.icc"
172 ADD_ACKNOWLEDGER (Pitched_trill_engraver, note_head);
173 ADD_ACKNOWLEDGER (Pitched_trill_engraver, dots);
174 ADD_ACKNOWLEDGER (Pitched_trill_engraver, stem);
175 ADD_ACKNOWLEDGER (Pitched_trill_engraver, flag);
176 ADD_ACKNOWLEDGER (Pitched_trill_engraver, trill_spanner);
178 ADD_TRANSLATOR (Pitched_trill_engraver,
180 "Print the bracketed note head after a note head with trill.",
184 "TrillPitchAccidental "