X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Ftab-note-heads-engraver.cc;h=4294a2e5fe5279ff19a4df3e2031d8a77598de93;hb=a767abf023c5449fcecce36ace9196901e7374a2;hp=9e8062a42fc93efd9b3cff0732466f34366cd4f8;hpb=d765f3af45be51f15da55cf570a4b172200e1035;p=lilypond.git diff --git a/lily/tab-note-heads-engraver.cc b/lily/tab-note-heads-engraver.cc index 9e8062a42f..4294a2e5fe 100644 --- a/lily/tab-note-heads-engraver.cc +++ b/lily/tab-note-heads-engraver.cc @@ -1,179 +1,173 @@ /* - head-grav.cc -- part of GNU LilyPond + This file is part of LilyPond, the GNU music typesetter. - (c) 1997--2002 Han-Wen Nienhuys + Copyright (C) 2002--2015 Han-Wen Nienhuys, Jean-Baptiste Lamy , + + 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 -#include -#include "rhythmic-head.hh" -#include "paper-def.hh" -#include "musical-request.hh" -#include "dots.hh" -#include "dot-column.hh" -#include "staff-symbol-referencer.hh" +#include +#include + +#include "engraver.hh" + +using namespace std; + +#include "articulations.hh" +#include "duration.hh" #include "item.hh" -#include "score-engraver.hh" +#include "output-def.hh" +#include "pitch.hh" +#include "rhythmic-head.hh" +#include "stream-event.hh" #include "warn.hh" +#include "context.hh" + +#include "translator.icc" /** - make (guitar-like) tablature note - */ + make (guitar-like) tablature note +*/ class Tab_note_heads_engraver : public Engraver { - Link_array notes_; - - Link_array dots_; - Link_array note_reqs_; - Link_array tabstring_reqs_; + vector note_events_; + vector tabstring_events_; + vector fingering_events_; + public: - TRANSLATOR_DECLARATIONS(Tab_note_heads_engraver); + TRANSLATOR_DECLARATIONS (Tab_note_heads_engraver); protected: - virtual void start_translation_timestep (); - virtual bool try_music (Music *req) ; - virtual void process_music (); + void listen_note (Stream_event *); + void listen_string_number (Stream_event *); + void listen_fingering (Stream_event *); + void process_music (); - virtual void stop_translation_timestep (); + void stop_translation_timestep (); }; +Tab_note_heads_engraver::Tab_note_heads_engraver () +{ +} -Tab_note_heads_engraver::Tab_note_heads_engraver() +void +Tab_note_heads_engraver::listen_note (Stream_event *ev) { + note_events_.push_back (ev); } -bool -Tab_note_heads_engraver::try_music (Music *m) +void +Tab_note_heads_engraver::listen_string_number (Stream_event *ev) { - if (Note_req * n =dynamic_cast (m)) - { - note_reqs_.push (n); - return true; - } - else if (String_number_req * ts = dynamic_cast (m)) - { - while(tabstring_reqs_.size () < note_reqs_.size ()-1) - tabstring_reqs_.push(0); - tabstring_reqs_.push(ts); - return true; - } - else if (dynamic_cast (m)) - { - return note_reqs_.size (); - } - - return false; + tabstring_events_.push_back (ev); } +void +Tab_note_heads_engraver::listen_fingering (Stream_event *ev) +{ + fingering_events_.push_back (ev); +} void Tab_note_heads_engraver::process_music () { - for (int i=0; i < note_reqs_.size (); i++) - { - SCM stringTunings = get_property ("stringTunings"); - int number_of_strings = ((int) gh_length(stringTunings)); - bool high_string_one = to_boolean(get_property ("highStringOne")); - - Item * note = new Item (get_property ("TabNoteHead")); - - Music * req = note_reqs_[i]; - - Music * tabstring_req = 0; - if(tabstring_reqs_.size()>i) - tabstring_req = tabstring_reqs_[i]; - // printf("%d %d\n",tabstring_reqs_.size(),i); - // size_t lenp; - int tab_string; - bool string_found; - if (tabstring_req) { - //char* tab_string_as_string = gh_scm2newstr(tabstring_req->get_mus_property ("text"), &lenp); - //tab_string = atoi(tab_string_as_string); - tab_string = gh_scm2int(tabstring_req->get_mus_property ("string-number")); - string_found = true; - } - else { - tab_string = high_string_one ? 1 : number_of_strings; - string_found = false; - } - - Duration dur = *unsmob_duration (req->get_mus_property ("duration")); - - note->set_grob_property ("duration-log", gh_int2scm (dur.duration_log ())); - - if (dur.dot_count ()) - { - Item * d = new Item (get_property ("Dots")); - Rhythmic_head::set_dots (note, d); - - if (dur.dot_count () - != gh_scm2int (d->get_grob_property ("dot-count"))) - d->set_grob_property ("dot-count", gh_int2scm (dur.dot_count ())); - - d->set_parent (note, Y_AXIS); - announce_grob (d, SCM_EOL); - dots_.push (d); - } - - - SCM scm_pitch = req->get_mus_property ("pitch"); - SCM proc = get_property ("tablatureFormat"); - SCM min_fret_scm = get_property ("minimumFret"); - int min_fret = gh_number_p(min_fret_scm) ? gh_scm2int(min_fret_scm) : 0; - - while(!string_found) { - int fret = unsmob_pitch(scm_pitch)->semitone_pitch() - - gh_scm2int(gh_list_ref(stringTunings,gh_int2scm(tab_string-1))); - if(fretself_scm (), + tab_notes, + scm_list_2 (tab_strings, + defined_fingers)); + SCM note_entry = SCM_EOL; + SCM string_number = SCM_EOL; + SCM fret = SCM_EOL; + SCM fret_label = SCM_EOL; + SCM fret_procedure = get_property ("tablatureFormat"); + SCM staff_line_procedure = get_property ("tabStaffLineLayoutFunction"); + SCM staff_position = SCM_EOL; + vsize fret_count = (vsize) scm_ilength (string_fret_finger); + bool length_changed = (note_events_.size () != fret_count); + vsize index; + + if (!scm_is_null (string_fret_finger)) + for (vsize i = 0; i < fret_count; i++) + { + note_entry = scm_list_ref (string_fret_finger, scm_from_int (i)); + string_number = scm_car (note_entry); + if (scm_is_true (string_number)) + { + fret = scm_cadr (note_entry); + fret_label = scm_call_3 (fret_procedure, + context ()->self_scm (), + string_number, + fret); + index = length_changed ? 0 : i; + Item *note = make_item ("TabNoteHead", note_events_[index]->self_scm ()); + note->set_property ("text", fret_label); + staff_position = scm_call_2 (staff_line_procedure, + context ()->self_scm (), + string_number); + note->set_property ("staff-position", staff_position); + } } - - SCM text = gh_call3 (proc, gh_int2scm (tab_string), stringTunings, scm_pitch); - - int pos = 2 * tab_string - number_of_strings - 1; // No tab-note between the string !!! - if(to_boolean(get_property("stringOneTopmost"))) - pos = -pos; - - note->set_grob_property ("text", text); - - note->set_grob_property ("staff-position", gh_int2scm (pos)); - announce_grob (note, req->self_scm()); - notes_.push (note); - } } void Tab_note_heads_engraver::stop_translation_timestep () { - for (int i=0; i < notes_.size (); i++) - { - typeset_grob (notes_[i]); - } - - notes_.clear (); - for (int i=0; i < dots_.size (); i++) - { - typeset_grob (dots_[i]); - } - dots_.clear (); - - note_reqs_.clear (); - - tabstring_reqs_.clear (); + note_events_.clear (); + tabstring_events_.clear (); + fingering_events_.clear (); } void -Tab_note_heads_engraver::start_translation_timestep () +Tab_note_heads_engraver::boot () { + ADD_LISTENER (Tab_note_heads_engraver, note); + ADD_LISTENER (Tab_note_heads_engraver, string_number); + ADD_LISTENER (Tab_note_heads_engraver, fingering); } - -ENTER_DESCRIPTION(Tab_note_heads_engraver, -/* descr */ "Generate one or more tablature noteheads from Music of type Note_req.", -/* creats*/ "TabNoteHead Dots", -/* acks */ "", -/* reads */ "centralCPosition stringTunings minimumFret tablatureFormat highStringOne stringOneTopmost", -/* write */ ""); +ADD_TRANSLATOR (Tab_note_heads_engraver, + /* doc */ + "Generate one or more tablature note heads from event of type" + " @code{NoteEvent}.", + + /* create */ + "TabNoteHead ", + + /* read */ + "defaultStrings " + "fretLabels " + "highStringOne " + "middleCPosition " + "minimumFret " + "noteToFretFunction " + "stringOneTopmost " + "stringTunings " + "tablatureFormat " + "tabStaffLineLayoutFunction ", + + /* write */ + "" + );