X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Ffootnote-engraver.cc;h=fa488b06d42dd0b7ff8389f58f348186273e2e06;hb=220298a9a1dcd1c318a38d79aa3a5ea694a17270;hp=830fdfe97227c6b06412bd4ab66d8a73f69891c0;hpb=a01dce03cbf3fa0d219ba2d5cfbd008be7341a9d;p=lilypond.git diff --git a/lily/footnote-engraver.cc b/lily/footnote-engraver.cc index 830fdfe972..fa488b06d4 100644 --- a/lily/footnote-engraver.cc +++ b/lily/footnote-engraver.cc @@ -1,7 +1,7 @@ /* This file is part of LilyPond, the GNU music typesetter. - Copyright (C) 2011--2012 Mike Solomon + Copyright (C) 2011--2014 Mike Solomon LilyPond is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -33,57 +33,34 @@ class Footnote_engraver : public Engraver { TRANSLATOR_DECLARATIONS (Footnote_engraver); - DECLARE_TRANSLATOR_LISTENER (footnote); DECLARE_ACKNOWLEDGER (grob); DECLARE_END_ACKNOWLEDGER (grob); - vector events_; + vector > annotated_spanners_; - void stop_translation_timestep (); void finalize (); - virtual void derived_mark () const; - void footnotify (Grob *, Stream_event *); + void footnotify (Grob *, SCM); }; -IMPLEMENT_TRANSLATOR_LISTENER (Footnote_engraver, footnote); -void -Footnote_engraver::listen_footnote (Stream_event *ev) -{ - events_.push_back (ev); -} - -void -Footnote_engraver::stop_translation_timestep () -{ - events_.clear (); -} - void Footnote_engraver::finalize () { annotated_spanners_.clear (); } -void -Footnote_engraver::derived_mark () const -{ - for (vsize i = 0; i < events_.size (); ++i) - scm_gc_mark (events_[i]->self_scm ()); -} - Footnote_engraver::Footnote_engraver () { } void -Footnote_engraver::footnotify (Grob *g, Stream_event *event) +Footnote_engraver::footnotify (Grob *g, SCM cause) { Spanner *s = dynamic_cast(g); if (s) { - Spanner *b = make_spanner ("FootnoteSpanner", event->self_scm ()); + Spanner *b = make_spanner ("FootnoteSpanner", cause); b->set_parent (s, Y_AXIS); b->set_parent (s, X_AXIS); Grob *bound = unsmob_grob (get_property ("currentMusicalColumn")); @@ -92,7 +69,7 @@ Footnote_engraver::footnotify (Grob *g, Stream_event *event) } else { - Grob *b = make_item ("FootnoteItem", event->self_scm ()); + Grob *b = make_item ("FootnoteItem", cause); b->set_parent (g, Y_AXIS); b->set_parent (g, X_AXIS); } @@ -105,42 +82,18 @@ Footnote_engraver::acknowledge_grob (Grob_info info) if (mus) { - if (!mus->is_mus_type ("footnote-event")) { - mus->origin ()->programming_error (_ ("Must be footnote-event.")); - return; - } - Stream_event *ev = mus->to_event (context ()); - footnotify (info.grob (), ev); - ev->unprotect (); - return; - } + if (!mus->is_mus_type ("footnote-event")) + { + mus->origin ()->programming_error (_ ("Must be footnote-event.")); + return; + } - // The following performance hog should eventually be removed: - // instead of adding a -\footnote ... \default articulation at the - // end of a note, you can perfectly well use \footnote ... before - // the note. This is just for the sake of automatic convert-ly - // rules. + footnotify (info.grob (), mus->to_event ()->unprotect ()); - Stream_event *cause = info.event_cause (); + // This grob has exhausted its footnote + info.grob ()->set_property ("footnote-music", SCM_EOL); - SCM arts = cause ? cause->get_property ("articulations") : SCM_EOL; - for (SCM s = arts; scm_is_pair (s); s = scm_cdr (s)) - { - Stream_event *e = unsmob_stream_event (scm_car (s)); - if (e->in_event_class ("footnote-event")) - footnotify (info.grob (), e); - } - - // In contrast, the following code is only called when actual - // footnote events have been listened to. It should not affect - // performance. - - for (vsize i = 0; i < events_.size (); i++) - { - SCM name = events_[i]->get_property ("symbol"); - if (!scm_is_symbol (name) - || info.grob ()->name () == ly_symbol2string (name)) - footnotify (info.grob (), events_[i]); + return; } }