X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fcustos-engraver.cc;h=00044094a6ad6ea65a1b41656972a655465396ab;hb=223ad8f5799657a5b628d862dd927f4197486b02;hp=5ebb39c6cabf3ba749425033fd5e39e6eb6362df;hpb=2c22efe5a46a37065b10c3f51c5d7db00d07d318;p=lilypond.git diff --git a/lily/custos-engraver.cc b/lily/custos-engraver.cc index 5ebb39c6ca..00044094a6 100644 --- a/lily/custos-engraver.cc +++ b/lily/custos-engraver.cc @@ -1,19 +1,31 @@ /* - custos-engraver.cc -- implement Custos_engraver + This file is part of LilyPond, the GNU music typesetter. - source file of the GNU LilyPond music typesetter + Copyright (C) 2000--2010 Juergen Reuter , + Han-Wen Nienhuys - (c) 2000--2005 Juergen Reuter , - 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 "engraver.hh" #include "bar-line.hh" #include "item.hh" #include "note-head.hh" +#include "pitch.hh" #include "staff-symbol-referencer.hh" +#include "stream-event.hh" #include "warn.hh" -#include "pitch.hh" #include "translator.icc" @@ -37,8 +49,8 @@ public: private: Item *create_custos (); bool custos_permitted_; - Link_array custodes_; - Array pitches_; + vector custodes_; + vector pitches_; }; Custos_engraver::Custos_engraver () @@ -64,17 +76,16 @@ Custos_engraver::start_translation_timestep () } void -Custos_engraver::acknowledge_bar (Grob_info info) +Custos_engraver::acknowledge_bar (Grob_info /* info */) { - (void) info; custos_permitted_ = true; } void Custos_engraver::acknowledge_note_head (Grob_info info) { - Music *m = info.music_cause (); - if (m && m->is_mus_type ("note-event")) + Stream_event *ev = info.event_cause (); + if (ev && ev->in_event_class ("note-event")) { /* @@ -85,7 +96,7 @@ Custos_engraver::acknowledge_note_head (Grob_info info) don't look at the staff-position, since we can't be sure whether Clef_engraver already applied a vertical shift. */ - pitches_.push (*unsmob_pitch (m->get_property ("pitch"))); + pitches_.push_back (*unsmob_pitch (ev->get_property ("pitch"))); } } @@ -97,7 +108,7 @@ Custos_engraver::process_acknowledged () if (custos_permitted_) { - for (int i = pitches_.size (); i--;) + for (vsize i = pitches_.size (); i--;) { Item *c = create_custos (); @@ -119,7 +130,7 @@ Custos_engraver::create_custos () { Item *custos = make_item ("Custos", SCM_EOL); - custodes_.push (custos); + custodes_.push_back (custos); return custos; } @@ -127,10 +138,8 @@ Custos_engraver::create_custos () void Custos_engraver::finalize () { - for (int i = custodes_.size (); i--;) - { - custodes_[i]->suicide (); - } + for (vsize i = custodes_.size (); i--;) + custodes_[i]->suicide (); custodes_.clear (); } @@ -138,8 +147,15 @@ ADD_ACKNOWLEDGER (Custos_engraver, bar); ADD_ACKNOWLEDGER (Custos_engraver, note_head); ADD_TRANSLATOR (Custos_engraver, - /* doc */ "", - /* create */ "Custos", - /* accept */ "", - /* read */ "", - /* write */ ""); + /* doc */ + "Engrave custodes.", + + /* create */ + "Custos ", + + /* read */ + "", + + /* write */ + "" + );