X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fkey-performer.cc;h=fa76c883a47989f98e01c5778c386040ea451125;hb=47db9a3883d726ca53e2133a3b2298f78dd6a32e;hp=ee0afda9eb0b7c9ebec9f547e5ec95a8f3d71943;hpb=f2c2c5c43858f323e4708f83fd97e0f38017c275;p=lilypond.git diff --git a/lily/key-performer.cc b/lily/key-performer.cc index ee0afda9eb..fa76c883a4 100644 --- a/lily/key-performer.cc +++ b/lily/key-performer.cc @@ -1,16 +1,30 @@ /* - key-performer.cc -- implement Key_performer + This file is part of LilyPond, the GNU music typesetter. - source file of the GNU LilyPond music typesetter + Copyright (C) 1997--2015 Jan Nieuwenhuizen - (c) 1997--2005 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 "music-sequence.hh" #include "audio-item.hh" +#include "music-sequence.hh" #include "performer.hh" +#include "stream-event.hh" #include "warn.hh" +#include "translator.icc" + class Key_performer : public Performer { public: @@ -18,12 +32,12 @@ public: ~Key_performer (); protected: - virtual bool try_music (Music *ev); - virtual void create_audio_elements (); - PRECOMPUTED_VIRTUAL void stop_translation_timestep (); + void process_music (); + void stop_translation_timestep (); + DECLARE_TRANSLATOR_LISTENER (key_change); private: - Music *key_ev_; + Stream_event *key_ev_; Audio_key *audio_; }; @@ -38,7 +52,7 @@ Key_performer::~Key_performer () } void -Key_performer::create_audio_elements () +Key_performer::process_music () { if (key_ev_) { @@ -48,27 +62,27 @@ Key_performer::create_audio_elements () SCM acc = scm_call_1 (proc, pitchlist); Pitch key_do (0, - scm_to_int (scm_caar (pitchlist)), - scm_to_int (scm_cdar (pitchlist))); + scm_to_int (scm_caar (pitchlist)), + ly_scm2rational (scm_cdar (pitchlist))); - Pitch c_do (0, 0, 0); + Pitch c_do; SCM c_pitchlist - = ly_transpose_key_alist (pitchlist, - pitch_interval (key_do, c_do).smobbed_copy ()); + = ly_transpose_key_alist (pitchlist, + pitch_interval (key_do, c_do).smobbed_copy ()); /* MIDI keys are too limited for lilypond scales. - We check for minor scale and assume major otherwise. */ + We check for minor scale and assume major otherwise. */ SCM third = scm_assoc (scm_from_int (2), - c_pitchlist); + c_pitchlist); bool minor = (scm_is_pair (third) - && scm_is_integer (scm_cdr (third)) - && scm_to_int (scm_cdr (third)) == FLAT); - + && scm_is_number (scm_cdr (third)) + && ly_scm2rational (scm_cdr (third)) == FLAT_ALTERATION); + audio_ = new Audio_key (scm_to_int (acc), - !minor); - + !minor); + Audio_element_info info (audio_, key_ev_); announce_element (info); key_ev_ = 0; @@ -80,25 +94,28 @@ Key_performer::stop_translation_timestep () { if (audio_) { - play_element (audio_); audio_ = 0; } } -bool -Key_performer::try_music (Music *ev) +IMPLEMENT_TRANSLATOR_LISTENER (Key_performer, key_change); +void +Key_performer::listen_key_change (Stream_event *ev) { if (!key_ev_) - { - key_ev_ = ev; - } - - return true; + key_ev_ = ev; } -#include "translator.icc" - ADD_TRANSLATOR (Key_performer, - "", "", - "key-change-event", - "", ""); + /* doc */ + "", + + /* create */ + "", + + /* read */ + "", + + /* write */ + "" + );