2 grob-pq-engraver.cc -- implement Grob_pq_engraver
4 source file of the GNU LilyPond music typesetter
6 (c) 2001--2007 Han-Wen Nienhuys <hanwen@xs4all.nl>
10 #include "engraver.hh"
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
29 TRANSLATOR_DECLARATIONS (Grob_pq_engraver
);
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 ()
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)
63 Grob_pq_engraver::acknowledge_grob (Grob_info gi
)
65 Stream_event
*ev
= gi
.event_cause ();
68 && !gi
.grob ()->internal_has_interface (ly_symbol2scm ("multi-measure-interface")))
70 Moment n
= now_mom ();
71 Moment l
= get_event_length (ev
, n
);
82 started_now_
.push_back (e
);
87 Grob_pq_engraver::process_acknowledged ()
89 vector_sort (started_now_
, less
<Grob_pq_entry
> ());
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 (),
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 ();
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
);
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
,
142 "Administrate when certain grobs (e.g., note heads) stop"