* lily/ledger-line-engraver.cc: new file.
[lilypond.git] / lily / tie-engraver.cc
blob8c418564753480dbbd6ed64c5e7ed9c08ebce8e9
1 /*
2 new-tie-engraver.cc -- implement Tie_engraver
4 source file of the GNU LilyPond music typesetter
6 (c) 1998--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8 */
10 #include "event.hh"
11 #include "tie.hh"
12 #include "context.hh"
14 #include "spanner.hh"
15 #include "tie-column.hh"
16 #include "engraver.hh"
17 #include "item.hh"
18 #include "grob-pitch-tuple.hh"
19 #include "warn.hh"
20 #include "note-head.hh"
21 #include "staff-symbol-referencer.hh"
23 /**
24 Manufacture ties. Acknowledge noteheads, and put them into a
25 priority queue. If we have a TieEvent, connect the notes that finish
26 just at this time, and note that start at this time.
28 TODO: Remove the dependency on musical info. We should tie on the
29 basis of position and duration-log of the heads (not of the events).
31 class Tie_engraver : public Engraver
33 Music *event_;
34 Music *last_event_;
35 Link_array<Grob> now_heads_;
36 Link_array<Grob> heads_to_tie_;
37 Link_array<Grob> ties_;
39 Spanner * tie_column_;
41 protected:
42 virtual void stop_translation_timestep ();
43 virtual void start_translation_timestep ();
44 virtual void acknowledge_grob (Grob_info);
45 virtual bool try_music (Music*);
46 virtual void process_music ();
47 void typeset_tie (Grob*);
48 public:
49 TRANSLATOR_DECLARATIONS (Tie_engraver);
54 Tie_engraver::Tie_engraver ()
56 event_ = 0;
57 last_event_ = 0;
58 tie_column_ = 0;
62 bool
63 Tie_engraver::try_music (Music *mus)
65 if (mus->is_mus_type ("tie-event"))
67 event_ = mus;
70 return true;
73 void
74 Tie_engraver::process_music ()
76 if (event_)
77 context ()->set_property ("tieMelismaBusy", SCM_BOOL_T);
80 void
81 Tie_engraver::acknowledge_grob (Grob_info i)
83 if (Note_head::has_interface (i.grob_))
85 Grob * h = i.grob_;
86 now_heads_.push (h);
87 for (int i = heads_to_tie_.size (); i--;)
89 Grob *th = heads_to_tie_[i];
90 Music * right_mus = unsmob_music (h->get_property ("cause"));
91 Music * left_mus = unsmob_music (th->get_property ("cause"));
94 maybe should check positions too.
96 if (right_mus && left_mus
97 && ly_c_equal_p (right_mus->get_property ("pitch"),
98 left_mus->get_property ("pitch")))
100 Grob * p = make_spanner ("Tie", last_event_->self_scm ());
101 Tie::set_interface (p); // cannot remove yet!
103 Tie::set_head (p, LEFT, th);
104 Tie::set_head (p, RIGHT, h);
106 ties_.push (p);
110 if (ties_.size () && ! tie_column_)
112 tie_column_ = make_spanner ("TieColumn", SCM_EOL);
116 if (tie_column_)
117 for (int i = ties_.size (); i--;)
118 Tie_column::add_tie (tie_column_,ties_ [i]);
122 void
123 Tie_engraver::start_translation_timestep ()
125 context ()->set_property ("tieMelismaBusy",
126 ly_bool2scm (heads_to_tie_.size ()));
130 void
131 Tie_engraver::stop_translation_timestep ()
133 if (ties_.size ())
135 heads_to_tie_.clear ();
136 for (int i=0; i< ties_.size (); i++)
138 typeset_tie (ties_[i]);
141 ties_.clear ();
142 last_event_ = 0;
143 tie_column_ =0;
146 if (event_)
148 heads_to_tie_ = now_heads_;
149 last_event_ = event_;
151 event_ = 0;
152 now_heads_.clear ();
155 void
156 Tie_engraver::typeset_tie (Grob *her)
158 if (! (Tie::head (her,LEFT) && Tie::head (her,RIGHT)))
159 warning (_ ("lonely tie"));
161 Direction d = LEFT;
162 Drul_array<Grob *> new_head_drul;
163 new_head_drul[LEFT] = Tie::head (her,LEFT);
164 new_head_drul[RIGHT] = Tie::head (her,RIGHT);
165 do {
166 if (!Tie::head (her,d))
167 new_head_drul[d] = Tie::head (her, (Direction)-d);
168 } while (flip (&d) != LEFT);
170 index_set_cell (her->get_property ("head-pair"), LEFT, new_head_drul[LEFT]->self_scm ());
171 index_set_cell (her->get_property ("head-pair"), RIGHT, new_head_drul[RIGHT]->self_scm ());
176 ENTER_DESCRIPTION (Tie_engraver,
177 /* descr */ "Generate ties between noteheads of equal pitch.",
178 /* creats*/ "Tie TieColumn",
179 /* accepts */ "tie-event",
180 /* acks */ "rhythmic-head-interface",
181 /* reads */ "tieMelismaBusy",
182 /* write */ "");