X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Frelative-octave-check.cc;h=37acb14551860406ef368e6b9452c366c8a3c050;hb=eac874ad80855c7f8372c7893394fd63371a7be1;hp=f751dc1e241f327b228ca0b74be6daf7e2bb01eb;hpb=276413150fbc1eb23354c0bde8bab655b26a937e;p=lilypond.git diff --git a/lily/relative-octave-check.cc b/lily/relative-octave-check.cc index f751dc1e24..37acb14551 100644 --- a/lily/relative-octave-check.cc +++ b/lily/relative-octave-check.cc @@ -1,21 +1,39 @@ /* - relative-octave-check.cc -- implement Relative_octave_check + This file is part of LilyPond, the GNU music typesetter. - source file of the GNU LilyPond music typesetter + Copyright (C) 2005--2010 Han-Wen Nienhuys - (c) 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. -#include "relative-octave-check.hh" + You should have received a copy of the GNU General Public License + along with LilyPond. If not, see . +*/ #include "input.hh" -#include "pitch.hh" +#include "international.hh" +#include "music.hh" -Pitch -Relative_octave_check::to_relative_octave (Pitch p) +class Relative_octave_check { - Pitch * check_p = unsmob_pitch (get_property ("pitch")); +public: + DECLARE_SCHEME_CALLBACK (relative_callback, (SCM, SCM)); +}; + +MAKE_SCHEME_CALLBACK (Relative_octave_check, relative_callback, 2) + SCM +Relative_octave_check::relative_callback (SCM music, SCM last_pitch) +{ + Pitch p = *unsmob_pitch (last_pitch); + Music *m = unsmob_music (music); + Pitch *check_p = unsmob_pitch (m->get_property ("pitch")); int delta_oct = 0; if (check_p) @@ -28,23 +46,16 @@ Relative_octave_check::to_relative_octave (Pitch p) if (result != *check_p) { - String s = _("Failed octave check, got: "); + string s = _ ("Failed octave check, got: "); s += result.to_string (); - - origin ()->warning (s); - + + m->origin ()->warning (s); + delta_oct = check_p->get_octave () - result.get_octave (); } } - - return Pitch (p.get_octave () + delta_oct, - p.get_notename (), p.get_alteration ()); -} - -Relative_octave_check::Relative_octave_check (SCM x) - : Music (x) -{ + return Pitch (p.get_octave () + delta_oct, + p.get_notename (), + p.get_alteration ()).smobbed_copy (); } - -ADD_MUSIC (Relative_octave_check);