X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fglissando-engraver.cc;h=26b869dd51f73afc6bf5cf65bd6a060000bda046;hb=941dff9d2a67080e0dd8474f1e70f0c72ace6424;hp=3a88ef888cda5a8d30c3bd782e7f3fb0701f582b;hpb=f0e8911e5a86748a9c70afcee42b6a3618dbef10;p=lilypond.git diff --git a/lily/glissando-engraver.cc b/lily/glissando-engraver.cc index 3a88ef888c..26b869dd51 100644 --- a/lily/glissando-engraver.cc +++ b/lily/glissando-engraver.cc @@ -1,14 +1,26 @@ /* - note-head-line-engraver.cc -- implement Note_head_line_engraver + This file is part of LilyPond, the GNU music typesetter. - source file of the GNU LilyPond music typesetter + Copyright (C) 2000--2011 Jan Nieuwenhuizen - (c) 2000--2007 Jan Nieuwenhuizen + 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 "engraver.hh" #include "international.hh" +#include "pointer-group-interface.hh" #include "rhythmic-head.hh" #include "spanner.hh" #include "stream-event.hh" @@ -24,21 +36,28 @@ public: protected: DECLARE_TRANSLATOR_LISTENER (glissando); - DECLARE_ACKNOWLEDGER (rhythmic_head); + DECLARE_ACKNOWLEDGER (note_column); virtual void finalize (); void stop_translation_timestep (); void process_music (); + private: - Spanner *line_; - Spanner *last_line_; + vector lines_; + vector kill_me_; + bool start_glissandi; + bool stop_glissandi; + Stream_event *event_; + vector note_column_1; + vector note_column_2; }; Glissando_engraver::Glissando_engraver () { - last_line_ = line_ = 0; event_ = 0; + start_glissandi = false; + stop_glissandi = false; } IMPLEMENT_TRANSLATOR_LISTENER (Glissando_engraver, glissando); @@ -52,44 +71,87 @@ void Glissando_engraver::process_music () { if (event_) - line_ = make_spanner ("Glissando", event_->self_scm ()); + start_glissandi = true; } void -Glissando_engraver::acknowledge_rhythmic_head (Grob_info info) +Glissando_engraver::acknowledge_note_column (Grob_info info) { Grob *g = info.grob (); - if (line_) - line_->set_bound (LEFT, g); - - if (last_line_) + if (stop_glissandi) { - last_line_->set_bound (RIGHT, g); - announce_end_grob (last_line_, g->self_scm ()); + extract_grob_set (g, "note-heads", note_heads); + int glissando_index = 0; + for (vsize i=0; i < note_column_1.size (); i++) + { + if (note_column_2[i] >= note_heads.size ()) + { + kill_me_.push_back (lines_[i]); + announce_end_grob (lines_[i], SCM_EOL); + } + else + { + lines_[i]->set_bound (RIGHT, note_heads[note_column_2[i]]); + lines_[i]->set_property ("glissando-index", scm_from_int (glissando_index)); + glissando_index++; + announce_end_grob (lines_[i], note_heads[note_column_2[i]]->self_scm ()); + } + } + lines_.clear (); + note_column_1.clear (); + note_column_2.clear (); + stop_glissandi = false; } + + if (start_glissandi) + { + extract_grob_set (g, "note-heads", note_heads); + SCM map = get_property ("glissandoMap"); + if (map == SCM_EOL) + for (vsize i = 0; i < note_heads.size (); i++) + { + note_column_1.push_back (i); + note_column_2.push_back (i); + } + else + for (SCM m = map; scm_is_pair (m); m = scm_cdr (m)) + { + SCM candidate = scm_car (m); + if (!scm_is_pair (candidate)) + continue; + int n1 = robust_scm2int (scm_car (candidate), -1); + int n2 = robust_scm2int (scm_cdr (candidate), -1); + if (n1 < 0 || n2 < 0 || n1 >= note_heads.size ()) + continue; + note_column_1.push_back (vsize (n1)); + note_column_2.push_back (vsize (n2)); + } + for (vsize i=0; i < note_column_1.size (); i++) + { + lines_.push_back (make_spanner ("Glissando", event_->self_scm ())); + lines_.back ()->set_bound (LEFT, note_heads[note_column_1[i]]); + } + } } void Glissando_engraver::stop_translation_timestep () { - if (last_line_ && last_line_->get_bound (RIGHT)) - { - last_line_ = 0; - } - if (line_) + + if (start_glissandi) { - if (last_line_) + if (stop_glissandi) programming_error ("overwriting glissando"); - last_line_ = line_; + stop_glissandi = true; + start_glissandi = false; } - line_ = 0; event_ = 0; } void Glissando_engraver::finalize () { - if (line_) + if (!lines_.empty ()) { string msg = _ ("unterminated glissando"); @@ -98,18 +160,25 @@ Glissando_engraver::finalize () else warning (msg); - line_->suicide (); - line_ = 0; + for (vsize i=0; i < lines_.size (); i++) + lines_[i]->suicide (); } + + for (vsize i=0; i < kill_me_.size (); i++) + kill_me_[i]->suicide (); } -ADD_ACKNOWLEDGER (Glissando_engraver, rhythmic_head); +ADD_ACKNOWLEDGER (Glissando_engraver, note_column); ADD_TRANSLATOR (Glissando_engraver, - /* doc */ "", + /* doc */ + "Engrave glissandi.", + /* create */ - "Glissando", + "Glissando ", /* read */ - "", + "glissandoMap ", - /* write */ ""); + /* write */ + "" + );