X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Frest-collision-engraver.cc;h=66a2c558a4200796d021295491be1ecbcd43f5e1;hb=9e781b7dc83b60a543ce218aa1a5f139f74c760f;hp=0a1af49d7a49c5315abfcaa5c91fd7a7c9ba96a5;hpb=58bcc84c9480dae1b21bc24d8396b91fe19e0131;p=lilypond.git diff --git a/lily/rest-collision-engraver.cc b/lily/rest-collision-engraver.cc index 0a1af49d7a..66a2c558a4 100644 --- a/lily/rest-collision-engraver.cc +++ b/lily/rest-collision-engraver.cc @@ -1,25 +1,44 @@ /* - rest-collision-engraver.cc -- implement Rest_collision_engraver + This file is part of LilyPond, the GNU music typesetter. - source file of the GNU LilyPond music typesetter + Copyright (C) 1997--2014 Han-Wen Nienhuys - (c) 1997--2005 Han-Wen Nienhuys + LilyPond is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + LilyPond is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with LilyPond. If not, see . */ -#include "warn.hh" +#include + +#include "duration.hh" #include "engraver.hh" -#include "rest-collision.hh" +#include "international.hh" +#include "item.hh" +#include "moment.hh" #include "note-column.hh" +#include "paper-column.hh" +#include "rest.hh" +#include "rest-collision.hh" +#include "rhythmic-head.hh" +#include "stream-event.hh" +#include "warn.hh" class Rest_collision_engraver : public Engraver { - Item *rest_collision_; - int rest_count_; - Link_array note_columns_; protected: - virtual void acknowledge_grob (Grob_info); - virtual void process_acknowledged_grobs (); - virtual void stop_translation_timestep (); + Grob *rest_collision_; + + void process_acknowledged (); + void stop_translation_timestep (); public: TRANSLATOR_DECLARATIONS (Rest_collision_engraver); }; @@ -27,33 +46,46 @@ public: Rest_collision_engraver::Rest_collision_engraver () { rest_collision_ = 0; - rest_count_ = 0; } void -Rest_collision_engraver::process_acknowledged_grobs () +Rest_collision_engraver::process_acknowledged () { - if (rest_collision_ - || note_columns_.is_empty () - || !rest_count_ - || (note_columns_.size () == rest_count_ - && rest_count_ < 2)) - return; + vsize rest_count = 0; + set columns; + Moment now = now_mom (); + + for (SCM s = get_property ("busyGrobs"); scm_is_pair (s); s = scm_cdr (s)) + { + Grob *g = unsmob_grob (scm_cdar (s)); + Moment *m = unsmob_moment (scm_caar (s)); + if (!g || !m) + continue; - rest_collision_ = make_item ("RestCollision", SCM_EOL); + if (Rhythmic_head::has_interface (g) && (*m) > now) + { + Grob *column = g->get_parent (X_AXIS); + if (!column) + { + g->warning (_ ("rhythmic head is not part of a rhythmic column")); + continue; + } - for (int i = 0; i < note_columns_.size (); i++) - Rest_collision::add_column (rest_collision_, note_columns_[i]); -} + // Only include rests that start now. Include notes that started any time. + Paper_column *paper_column = dynamic_cast (column)->get_column (); + if (!Rest::has_interface (g) || !paper_column || Paper_column::when_mom (paper_column) == now) + { + columns.insert (column); + rest_count += Note_column::has_rests (column); + } + } + } -void -Rest_collision_engraver::acknowledge_grob (Grob_info i) -{ - if (Note_column::has_interface (i.grob_)) + if (!rest_collision_ && rest_count && columns.size () > 1) { - note_columns_.push (i.grob_); - if (Note_column::has_rests (i.grob_)) - rest_count_++; + rest_collision_ = make_item ("RestCollision", SCM_EOL); + for (set::iterator i = columns.begin (); i != columns.end (); ++i) + Rest_collision::add_column (rest_collision_, *i); } } @@ -61,14 +93,20 @@ void Rest_collision_engraver::stop_translation_timestep () { rest_collision_ = 0; - note_columns_.clear (); - rest_count_ = 0; } +#include "translator.icc" + ADD_TRANSLATOR (Rest_collision_engraver, - /* descr */ "Handles collisions of rests.", - /* creats*/ "RestCollision", - /* accepts */ "", - /* acks */ "note-column-interface", - /* reads */ "", - /* write */ ""); + /* doc */ + "Handle collisions of rests.", + + /* create */ + "RestCollision ", + + /* read */ + "busyGrobs ", + + /* write */ + "" + );