2 This file is part of LilyPond, the GNU music typesetter.
4 Copyright (C) 2001--2010 Han-Wen Nienhuys <hanwen@xs4all.nl>
6 LilyPond is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
11 LilyPond is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with LilyPond. If not, see <http://www.gnu.org/licenses/>.
21 #include "engraver.hh"
32 operator< (Grob_pq_entry
const &a
, Grob_pq_entry
const &b
)
34 return a
.end_
< b
.end_
;
37 class Grob_pq_engraver
: public Engraver
40 TRANSLATOR_DECLARATIONS (Grob_pq_engraver
);
42 virtual void initialize ();
43 DECLARE_ACKNOWLEDGER (grob
);
44 void start_translation_timestep ();
45 void stop_translation_timestep ();
46 void process_acknowledged ();
48 vector
<Grob_pq_entry
> started_now_
;
51 Grob_pq_engraver::Grob_pq_engraver ()
56 Grob_pq_engraver::initialize ()
58 context ()->set_property ("busyGrobs", SCM_EOL
);
61 LY_DEFINE (ly_grob_pq_less_p
, "ly:grob-pq<?",
62 2, 0, 0, (SCM a
, SCM b
),
63 "Compare two grob priority queue entries."
64 " This is an internal function.")
66 if (Moment::compare (*unsmob_moment (scm_car (a
)),
67 *unsmob_moment (scm_car (b
))) < 0)
74 Grob_pq_engraver::acknowledge_grob (Grob_info gi
)
76 Stream_event
*ev
= gi
.event_cause ();
79 && !gi
.grob ()->internal_has_interface (ly_symbol2scm ("multi-measure-interface")))
81 Moment n
= now_mom ();
82 Moment l
= get_event_length (ev
, n
);
93 started_now_
.push_back (e
);
98 Grob_pq_engraver::process_acknowledged ()
100 vector_sort (started_now_
, less
<Grob_pq_entry
> ());
103 for (vsize i
= 0; i
< started_now_
.size (); i
++)
105 *tail
= scm_acons (started_now_
[i
].end_
.smobbed_copy (),
106 started_now_
[i
].grob_
->self_scm (),
108 tail
= SCM_CDRLOC (*tail
);
111 SCM busy
= get_property ("busyGrobs");
112 busy
= scm_merge_x (lst
, busy
, ly_grob_pq_less_p_proc
);
113 context ()->set_property ("busyGrobs", busy
);
115 started_now_
.clear ();
119 Grob_pq_engraver::stop_translation_timestep ()
121 Moment now
= now_mom ();
122 SCM start_busy
= get_property ("busyGrobs");
123 SCM busy
= start_busy
;
124 while (scm_is_pair (busy
) && *unsmob_moment (scm_caar (busy
)) == now
)
125 busy
= scm_cdr (busy
);
130 Grob_pq_engraver::start_translation_timestep ()
132 Moment now
= now_mom ();
134 SCM start_busy
= get_property ("busyGrobs");
135 SCM busy
= start_busy
;
136 while (scm_is_pair (busy
) && *unsmob_moment (scm_caar (busy
)) < now
)
139 The grob-pq-engraver is not water tight, and stuff like
140 tupletSpannerDuration confuses it.
142 busy
= scm_cdr (busy
);
145 if (start_busy
!= busy
)
146 context ()->set_property ("busyGrobs", busy
);
149 #include "translator.icc"
150 ADD_ACKNOWLEDGER (Grob_pq_engraver
, grob
);
151 ADD_TRANSLATOR (Grob_pq_engraver
,
153 "Administrate when certain grobs (e.g., note heads) stop"