Nitpick: ly:spanner-bound grob name slur -> spanner.
[lilypond.git] / lily / grob-pq-engraver.cc
blobeee3d7d7076e2201b511102e035138da01d7195b
1 /*
2 grob-pq-engraver.cc -- implement Grob_pq_engraver
4 source file of the GNU LilyPond music typesetter
6 (c) 2001--2009 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
9 #include "context.hh"
10 #include "engraver.hh"
11 #include "grob.hh"
12 #include "warn.hh"
14 struct Grob_pq_entry
16 Grob *grob_;
17 Moment end_;
20 bool
21 operator< (Grob_pq_entry const &a, Grob_pq_entry const &b)
23 return a.end_ < b.end_;
26 class Grob_pq_engraver : public Engraver
28 public:
29 TRANSLATOR_DECLARATIONS (Grob_pq_engraver);
30 protected:
31 virtual void initialize ();
32 DECLARE_ACKNOWLEDGER (grob);
33 void start_translation_timestep ();
34 void stop_translation_timestep ();
35 void process_acknowledged ();
37 vector<Grob_pq_entry> started_now_;
40 Grob_pq_engraver::Grob_pq_engraver ()
44 void
45 Grob_pq_engraver::initialize ()
47 context ()->set_property ("busyGrobs", SCM_EOL);
50 LY_DEFINE (ly_grob_pq_less_p, "ly:grob-pq<?",
51 2, 0, 0, (SCM a, SCM b),
52 "Compare two grob priority queue entries."
53 " This is an internal function.")
55 if (Moment::compare (*unsmob_moment (scm_car (a)),
56 *unsmob_moment (scm_car (b))) < 0)
57 return SCM_BOOL_T;
58 else
59 return SCM_BOOL_F;
62 void
63 Grob_pq_engraver::acknowledge_grob (Grob_info gi)
65 Stream_event *ev = gi.event_cause ();
67 if (ev
68 && !gi.grob ()->internal_has_interface (ly_symbol2scm ("multi-measure-interface")))
70 Moment n = now_mom ();
71 Moment l = get_event_length (ev, n);
73 if (!l.to_bool ())
74 return;
76 Moment end = n + l;
78 Grob_pq_entry e;
79 e.grob_ = gi.grob ();
80 e.end_ = end;
82 started_now_.push_back (e);
86 void
87 Grob_pq_engraver::process_acknowledged ()
89 vector_sort (started_now_, less<Grob_pq_entry> ());
90 SCM lst = SCM_EOL;
91 SCM *tail = &lst;
92 for (vsize i = 0; i < started_now_.size (); i++)
94 *tail = scm_acons (started_now_[i].end_.smobbed_copy (),
95 started_now_[i].grob_->self_scm (),
96 SCM_EOL);
97 tail = SCM_CDRLOC (*tail);
100 SCM busy = get_property ("busyGrobs");
101 busy = scm_merge_x (lst, busy, ly_grob_pq_less_p_proc);
102 context ()->set_property ("busyGrobs", busy);
104 started_now_.clear ();
107 void
108 Grob_pq_engraver::stop_translation_timestep ()
110 Moment now = now_mom ();
111 SCM start_busy = get_property ("busyGrobs");
112 SCM busy = start_busy;
113 while (scm_is_pair (busy) && *unsmob_moment (scm_caar (busy)) == now)
114 busy = scm_cdr (busy);
118 void
119 Grob_pq_engraver::start_translation_timestep ()
121 Moment now = now_mom ();
123 SCM start_busy = get_property ("busyGrobs");
124 SCM busy = start_busy;
125 while (scm_is_pair (busy) && *unsmob_moment (scm_caar (busy)) < now)
128 The grob-pq-engraver is not water tight, and stuff like
129 tupletSpannerDuration confuses it.
131 busy = scm_cdr (busy);
134 if (start_busy != busy)
135 context ()->set_property ("busyGrobs", busy);
138 #include "translator.icc"
139 ADD_ACKNOWLEDGER (Grob_pq_engraver, grob);
140 ADD_TRANSLATOR (Grob_pq_engraver,
141 /* doc */
142 "Administrate when certain grobs (e.g., note heads) stop"
143 " playing.",
145 /* create */
148 /* read */
149 "busyGrobs ",
151 /* write */
152 "busyGrobs "