2 tie-engraver.cc -- implement Tie_engraver
4 source file of the GNU LilyPond music typesetter
6 (c) 1998--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
11 #include "protected-scm.hh"
13 #include "tie-column.hh"
14 #include "engraver.hh"
16 #include "grob-pitch-tuple.hh"
18 #include "note-head.hh"
19 #include "staff-symbol-referencer.hh"
22 Manufacture ties. Acknowledge noteheads, and put them into a
23 priority queue. If we have a TieEvent, connect the notes that finish
24 just at this time, and note that start at this time.
26 TODO: Remove the dependency on musical info. We should tie on the
27 basis of position and duration-log of the heads (not of the events).
30 struct Head_event_tuple
38 Head_event_tuple (Grob *h, Music *m, SCM def)
42 tie_definition_ = def;
46 class Tie_engraver : public Engraver
49 Link_array<Grob> now_heads_;
50 Array<Head_event_tuple> heads_to_tie_;
51 Link_array<Grob> ties_;
56 virtual void stop_translation_timestep ();
57 virtual void derived_mark () const;
58 virtual void start_translation_timestep ();
59 virtual void acknowledge_grob (Grob_info);
60 virtual bool try_music (Music *);
61 virtual void process_music ();
62 void typeset_tie (Grob *);
64 TRANSLATOR_DECLARATIONS (Tie_engraver);
68 Tie_engraver::derived_mark () const
70 Engraver::derived_mark ();
71 for (int i = 0; i < heads_to_tie_.size (); i++)
72 scm_gc_mark (heads_to_tie_[i].tie_definition_);
75 Tie_engraver::Tie_engraver ()
82 Tie_engraver::try_music (Music *mus)
84 if (mus->is_mus_type ("tie-event"))
93 Tie_engraver::process_music ()
97 context ()->set_property ("tieMelismaBusy", SCM_BOOL_T);
102 Tie_engraver::acknowledge_grob (Grob_info i)
104 if (Note_head::has_interface (i.grob_))
108 for (int i = heads_to_tie_.size (); i--;)
110 Grob *th = heads_to_tie_[i].head_;
111 Music *right_mus = unsmob_music (h->get_property ("cause"));
112 Music *left_mus = unsmob_music (th->get_property ("cause"));
115 maybe should check positions too.
117 if (right_mus && left_mus
118 && ly_c_equal_p (right_mus->get_property ("pitch"),
119 left_mus->get_property ("pitch")))
121 Grob *p = new Spanner (heads_to_tie_[i].tie_definition_,
122 context ()->get_grob_key ("Tie"));
123 announce_grob (p, heads_to_tie_[i].event_->self_scm ());
124 Tie::set_interface (p); // cannot remove yet!
126 Tie::set_head (p, LEFT, th);
127 Tie::set_head (p, RIGHT, h);
130 heads_to_tie_.del (i);
134 if (ties_.size () && ! tie_column_)
136 tie_column_ = make_spanner ("TieColumn", ties_[0]->self_scm ());
140 for (int i = ties_.size (); i--;)
141 Tie_column::add_tie (tie_column_, ties_[i]);
146 Tie_engraver::start_translation_timestep ()
148 context ()->set_property ("tieMelismaBusy",
149 ly_bool2scm (heads_to_tie_.size ()));
153 Tie_engraver::stop_translation_timestep ()
157 if (!to_boolean (get_property ("tieWaitForNote")))
159 heads_to_tie_.clear ();
162 for (int i = 0; i < ties_.size (); i++)
164 typeset_tie (ties_[i]);
174 = updated_grob_properties (context (), ly_symbol2scm ("Tie"));
176 if (!to_boolean (get_property ("tieWaitForNote")))
177 heads_to_tie_.clear ();
179 for (int i = 0; i < now_heads_.size (); i++)
181 heads_to_tie_.push (Head_event_tuple (now_heads_[i], event_,
191 Tie_engraver::typeset_tie (Grob *her)
193 if (! (Tie::head (her, LEFT) && Tie::head (her, RIGHT)))
194 warning (_ ("lonely tie"));
197 Drul_array<Grob *> new_head_drul;
198 new_head_drul[LEFT] = Tie::head (her, LEFT);
199 new_head_drul[RIGHT] = Tie::head (her, RIGHT);
202 if (!Tie::head (her, d))
203 new_head_drul[d] = Tie::head (her, (Direction) - d);
205 while (flip (&d) != LEFT);
207 index_set_cell (her->get_property ("head-pair"), LEFT, new_head_drul[LEFT]->self_scm ());
208 index_set_cell (her->get_property ("head-pair"), RIGHT, new_head_drul[RIGHT]->self_scm ());
211 ADD_TRANSLATOR (Tie_engraver,
212 /* descr */ "Generate ties between noteheads of equal pitch.",
213 /* creats*/ "Tie TieColumn",
214 /* accepts */ "tie-event",
215 /* acks */ "rhythmic-head-interface",
216 /* reads */ "tieMelismaBusy",