]> git.donarmstrong.com Git - lilypond.git/blob - lily/tie-engraver.cc
* lily/lyric-phrasing-engraver.cc: move from
[lilypond.git] / lily / tie-engraver.cc
1 /*   
2   new-tie-engraver.cc --  implement Tie_engraver
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 1998--2003 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #include "event.hh"
11 #include "tie.hh"
12 #include "translator-group.hh"
13 #include "spanner.hh"
14 #include "tie-column.hh"
15 #include "engraver.hh"
16 #include "item.hh"
17 #include "grob-pitch-tuple.hh"
18 #include "warn.hh"
19 #include "note-head.hh"
20 #include "staff-symbol-referencer.hh"
21
22 /**
23    Manufacture ties.  Acknowledge noteheads, and put them into a
24    priority queue. If we have a TieEvent, connect the notes that finish
25    just at this time, and note that start at this time.
26
27    TODO: Remove the dependency on musical info. We should tie on the
28    basis of position and duration-log of the heads (not of the events).
29
30    TODO: support sparseTies.
31
32    TODO: melismata will fuck up now:
33
34    < { c8 ~ c8 }
35      { c16 c c c  } >
36
37    melisma is after the 2nd 8th note, but will now be signaled as
38    lasting till the 3rd 16th.
39 */
40 class Tie_engraver : public Engraver
41 {
42   Music *event_;
43   Music *last_event_;
44   Link_array<Grob> now_heads_;
45   Link_array<Grob> heads_to_tie_;
46   Link_array<Grob> ties_;
47   
48   Spanner * tie_column_;
49   
50 protected:
51   virtual void stop_translation_timestep ();
52   virtual void start_translation_timestep ();
53   virtual void acknowledge_grob (Grob_info);
54   virtual bool try_music (Music*);
55   virtual void process_music ();
56   virtual void process_acknowledged_grobs ();
57   void typeset_tie (Grob*);
58 public:
59   TRANSLATOR_DECLARATIONS(Tie_engraver);
60 };
61
62
63
64 Tie_engraver::Tie_engraver ()
65 {
66   event_ = 0;
67   last_event_  = 0;
68   tie_column_ = 0;
69 }
70
71
72 bool
73 Tie_engraver::try_music (Music *mus)
74 {
75   if (mus->is_mus_type ("tie-event"))
76     {
77       event_ = mus;
78     }
79   
80   return true;
81 }
82
83 void
84 Tie_engraver::process_music ()
85 {
86   if (event_)
87     daddy_trans_->set_property ("tieMelismaBusy", SCM_BOOL_T);
88 }
89
90 void
91 Tie_engraver::acknowledge_grob (Grob_info i)
92 {
93   if (Note_head::has_interface (i.grob_))
94     {
95       Grob * h  = i.grob_;
96       now_heads_.push (h);
97       for  (int i = heads_to_tie_.size (); i--;)
98         {
99           Grob *th =  heads_to_tie_[i];
100           Music * right_mus = unsmob_music (h->get_grob_property ("cause"));
101           Music * left_mus = unsmob_music (th->get_grob_property ("cause"));
102
103           /*
104             maybe should check positions too.
105            */
106           if (right_mus && left_mus
107               && gh_equal_p (right_mus->get_mus_property ("pitch"),
108                              left_mus->get_mus_property ("pitch")))
109             {
110               Grob * p = new Spanner (get_property ("Tie"));
111               Tie::set_interface (p); // cannot remove yet!
112           
113               Tie::set_head (p, LEFT, th);
114               Tie::set_head (p, RIGHT, h);
115           
116               ties_.push (p);
117               announce_grob(p, last_event_->self_scm());
118             }
119         }
120     }
121 }
122
123 void
124 Tie_engraver::process_acknowledged_grobs ()
125 {
126   if (ties_.size () > 1 && !tie_column_)
127     {
128       tie_column_ = new Spanner (get_property ("TieColumn"));
129       
130       for (int i = ties_.size (); i--;)
131         Tie_column::add_tie (tie_column_,ties_ [i]);
132
133       announce_grob(tie_column_, SCM_EOL);
134     }
135 }
136
137 void
138 Tie_engraver::start_translation_timestep ()
139 {
140   daddy_trans_->set_property ("tieMelismaBusy",
141                               gh_bool2scm (heads_to_tie_.size ()));
142       
143 }
144
145 void
146 Tie_engraver::stop_translation_timestep ()
147 {
148   if (ties_.size ())
149     {
150       heads_to_tie_.clear ();
151       for (int i=0; i<  ties_.size (); i++)
152         {
153           typeset_tie (ties_[i]);
154         }
155
156       ties_.clear();
157       last_event_ = 0;
158       if (tie_column_)
159         {
160           typeset_grob (tie_column_);
161           tie_column_ =0;
162         }
163     }
164   
165   if (event_)
166     {
167       heads_to_tie_ = now_heads_;
168       last_event_ = event_;
169     }
170   event_ = 0;
171   now_heads_.clear ();
172 }
173
174 void
175 Tie_engraver::typeset_tie (Grob *her)
176 {
177   if (! (Tie::head (her,LEFT) && Tie::head (her,RIGHT)))
178     warning (_ ("lonely tie"));
179
180   Direction d = LEFT;
181   Drul_array<Grob *> new_head_drul;
182   new_head_drul[LEFT] = Tie::head (her,LEFT);
183   new_head_drul[RIGHT] = Tie::head (her,RIGHT);  
184   do {
185     if (!Tie::head (her,d))
186       new_head_drul[d] = Tie::head (her, (Direction)-d);
187   } while (flip (&d) != LEFT);
188
189   index_set_cell (her->get_grob_property ("heads"), LEFT, new_head_drul[LEFT]->self_scm ());
190   index_set_cell (her->get_grob_property ("heads"), RIGHT, new_head_drul[RIGHT]->self_scm ());
191
192   typeset_grob (her);
193 }
194
195
196 ENTER_DESCRIPTION(Tie_engraver,
197 /* descr */       "Generate ties between noteheads of equal pitch.",
198 /* creats*/       "Tie TieColumn",
199 /* accepts */     "tie-event",
200 /* acks  */      "rhythmic-head-interface",
201 /* reads */       "tieMelismaBusy",
202 /* write */       "");