X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fscript-engraver.cc;h=288d771ef24634915b5fc0cf7b74b743c4b0698a;hb=32a34dcef0c0041c6d62677487a380b5c8b85712;hp=8ebf701bbf5f7a584413aebd868c3835a364991c;hpb=3e07faa176c300184b2e41d0dcfa779360519359;p=lilypond.git diff --git a/lily/script-engraver.cc b/lily/script-engraver.cc index 8ebf701bbf..288d771ef2 100644 --- a/lily/script-engraver.cc +++ b/lily/script-engraver.cc @@ -1,242 +1,274 @@ /* - script-engraver.cc -- implement Script_engraver + This file is part of LilyPond, the GNU music typesetter. - (c) 1997--2004 Han-Wen Nienhuys + Copyright (C) 1997--2012 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 "script.hh" -#include "side-position-interface.hh" -#include "event.hh" -#include "stem.hh" -#include "rhythmic-head.hh" #include "engraver.hh" -#include "note-column.hh" -#include "context.hh" +#include "context.hh" +#include "directional-element-interface.hh" +#include "international.hh" +#include "note-column.hh" +#include "paper-column.hh" +#include "rhythmic-head.hh" +#include "script-interface.hh" +#include "side-position-interface.hh" +#include "slur.hh" +#include "staff-symbol-referencer.hh" +#include "stem.hh" +#include "stream-event.hh" #include "warn.hh" +#include "translator.icc" + struct Script_tuple { - Music *event_; - Grob * script_; - SCM description_; + Stream_event *event_; + Grob *script_; Script_tuple () { event_ = 0; script_ = 0; - description_ = SCM_EOL; } }; class Script_engraver : public Engraver { - Array scripts_; + vector scripts_; + +protected: + void stop_translation_timestep (); + void process_music (); + + DECLARE_TRANSLATOR_LISTENER (articulation); + DECLARE_ACKNOWLEDGER (rhythmic_head); + DECLARE_ACKNOWLEDGER (stem); + DECLARE_ACKNOWLEDGER (stem_tremolo); + DECLARE_ACKNOWLEDGER (note_column); + DECLARE_ACKNOWLEDGER (inline_accidental); + public: TRANSLATOR_DECLARATIONS (Script_engraver); -protected: - virtual bool try_music (Music*); - virtual void stop_translation_timestep (); - virtual void process_music (); - virtual void acknowledge_grob (Grob_info); }; -bool -Script_engraver::try_music (Music *r) +Script_engraver::Script_engraver () { - if (r->is_mus_type ("articulation-event")) - { - /* - Discard double articulations. - This is necessary for part-combining. - */ - for (int j = 0; j < scripts_.size (); j++) - if (ly_c_equal_p (scripts_[j]. event_->get_property ("articulation-type"), - r->get_property ("articulation-type") - )) - return true; - - Script_tuple t; - t.event_ =r; - scripts_.push (t); - - return true; - } - return false; } +IMPLEMENT_TRANSLATOR_LISTENER (Script_engraver, articulation); void -copy_property (Grob * g , SCM sym, SCM alist) +Script_engraver::listen_articulation (Stream_event *ev) +{ + /* Discard double articulations for part-combining. */ + for (vsize i = 0; i < scripts_.size (); i++) + if (ly_is_equal (scripts_[i].event_ + ->get_property ("articulation-type"), + ev->get_property ("articulation-type"))) + return; + + Script_tuple t; + t.event_ = ev; + scripts_.push_back (t); +} + +void +copy_property (Grob *g, SCM sym, SCM alist) { if (g->internal_get_property (sym) == SCM_EOL) { - SCM entry = scm_assoc (sym,alist); - if (ly_c_pair_p (entry)) - { - g->internal_set_property (sym, ly_cdr (entry)); - } + SCM entry = scm_assoc (sym, alist); + if (scm_is_pair (entry)) + g->set_property (sym, scm_cdr (entry)); } } - -/* - We add the properties, one by one for each Script. We could save a - little space by tacking the props onto the Script grob (i.e. make - ScriptStaccato , ScriptMarcato, etc. ) - */ -void make_script_from_event (Grob *p, - SCM * descr, Context *tg, - SCM art_type, - int index) +/* Add the properties, one by one for each Script. A little memory + could be saved by tacking the props onto the Script grob (i.e. make + ScriptStaccato , ScriptMarcato, etc. ). +*/ +void +make_script_from_event (Grob *p, Context *tg, + SCM art_type, int index) { SCM alist = tg->get_property ("scriptDefinitions"); SCM art = scm_assoc (art_type, alist); if (art == SCM_BOOL_F) { - warning (_("Don't know how to interpret articulation:")); - warning (_("Scheme encoding: ")); + /* FIXME: */ + warning (_ ("do not know how to interpret articulation:")); + warning (_ (" scheme encoding: ")); scm_write (art_type, scm_current_error_port ()); - return ; + message (""); + return; } - art = ly_cdr (art); - - *descr = art; - + art = scm_cdr (art); - copy_property (p, ly_symbol2scm ("script-stencil"), art); - copy_property (p, ly_symbol2scm ("direction"), art); - copy_property (p, ly_symbol2scm ("side-relative-direction"), art); + bool priority_found = false; - int prio =0; - SCM sprio = scm_assoc (ly_symbol2scm ("script-priority"), art); - if (ly_c_pair_p (sprio)) - prio = ly_scm2int (ly_cdr (sprio)); - - - /* - Make sure they're in order of user input by adding index i. - Don't use the direction in this priority. Smaller means closer - to the head. - */ - prio += index; + for (SCM s = art; scm_is_pair (s); s = scm_cdr (s)) + { + SCM sym = scm_caar (s); + SCM type = scm_object_property (sym, ly_symbol2scm ("backend-type?")); + if (!ly_is_procedure (type)) + continue; + + SCM val = scm_cdar (s); + + if (sym == ly_symbol2scm ("script-priority")) + { + priority_found = true; + /* Make sure they're in order of user input by adding index i. + Don't use the direction in this priority. Smaller means closer + to the head. */ + int prio = scm_to_int (val) + index; + + val = scm_from_int (prio); + } + + SCM preset = p->get_property_data (sym); + if (val == SCM_EOL + || scm_call_1 (type, preset) == SCM_BOOL_F) + p->set_property (sym, val); + } - Side_position_interface::set_axis (p, Y_AXIS); - p->set_property ("script-priority", scm_int2num (prio)); + if (!priority_found) + { + p->set_property ("script-priority", + scm_from_int (index)); + } } void Script_engraver::process_music () { - for (int i=0; i < scripts_.size (); i++) + for (vsize i = 0; i < scripts_.size (); i++) { - Music* l=scripts_[i].event_; + Stream_event *ev = scripts_[i].event_; - Grob * p = make_item ("Script"); + Grob *p = make_item ("Script", ev->self_scm ()); - make_script_from_event (p, &scripts_[i].description_, context (), - l->get_property ("articulation-type"), - i); + make_script_from_event (p, context (), + ev->get_property ("articulation-type"), + i); scripts_[i].script_ = p; - - SCM force_dir = l->get_property ("direction"); + SCM force_dir = ev->get_property ("direction"); if (is_direction (force_dir) && to_dir (force_dir)) - p->set_property ("direction", force_dir); - - if (p) - announce_grob (p, l->self_scm ()); + p->set_property ("direction", force_dir); } } void -Script_engraver::acknowledge_grob (Grob_info inf) +Script_engraver::acknowledge_stem (Grob_info info) { - if (Stem::has_interface (inf.grob_)) + for (vsize i = 0; i < scripts_.size (); i++) { - for (int i=0; i < scripts_.size (); i++) - { - Grob*e = scripts_[i].script_; - - if (to_dir (e->get_property ("side-relative-direction"))) - e->set_property ("direction-source", inf.grob_->self_scm ()); - - /* - add dep ? - */ - e->add_dependency (inf.grob_); - Side_position_interface::add_support (e, inf.grob_); - } + Grob *e = scripts_[i].script_; + + if (to_dir (e->get_property ("side-relative-direction"))) + e->set_object ("direction-source", info.grob ()->self_scm ()); + + Side_position_interface::add_support (e, info.grob ()); } - else if (Rhythmic_head::has_interface (inf.grob_)) +} + +void +Script_engraver::acknowledge_stem_tremolo (Grob_info info) +{ + for (vsize i = 0; i < scripts_.size (); i++) { - for (int i=0; i < scripts_.size (); i++) - { - Grob *e = scripts_[i].script_; - - if (Side_position_interface::get_axis (e) == X_AXIS - && !e->get_parent (Y_AXIS)) - { - e->set_parent (inf.grob_, Y_AXIS); - e->add_dependency (inf.grob_); // ?? - } - Side_position_interface::add_support (e,inf.grob_); - } + Grob *e = scripts_[i].script_; + Side_position_interface::add_support (e, info.grob ()); } - else if (Note_column::has_interface (inf.grob_)) +} + +void +Script_engraver::acknowledge_inline_accidental (Grob_info info) +{ + for (vsize i = 0; i < scripts_.size (); i++) { + Grob *e = scripts_[i].script_; + Side_position_interface::add_support (e, info.grob ()); + } +} - /* - We make note column the parent of the script. That's not - correct, but due to seconds in a chord, noteheads may be - swapped around horizontally. We don't know which note head to - put it on, so we postpone this decision to - Script_interface::before_line_breaking (). - - */ - for (int i=0; i < scripts_.size (); i++) - { - Grob *e = scripts_[i].script_; - - if (!e->get_parent (X_AXIS) && - Side_position_interface::get_axis (e) == Y_AXIS) - { - e->set_parent (inf.grob_, X_AXIS); - } - } +void +Script_engraver::acknowledge_rhythmic_head (Grob_info info) +{ + if (info.event_cause ()) + { + for (vsize i = 0; i < scripts_.size (); i++) + { + Grob *e = scripts_[i].script_; + + if (Side_position_interface::get_axis (e) == X_AXIS + && !e->get_parent (Y_AXIS)) + { + e->set_parent (info.grob (), Y_AXIS); + } + Side_position_interface::add_support (e, info.grob ()); + } } } void -Script_engraver::stop_translation_timestep () +Script_engraver::acknowledge_note_column (Grob_info info) { - for (int i=0; i < scripts_.size (); i++) + /* Make note column the parent of the script. That is not + correct, but due to seconds in a chord, noteheads may be + swapped around horizontally. + + As the note head to put it on is not known now, postpone this + decision to Script_interface::calc_direction (). */ + for (vsize i = 0; i < scripts_.size (); i++) { - if (!scripts_[i].script_) - continue; - - Grob * sc = scripts_[i].script_; - - SCM follow = scm_assoc (ly_symbol2scm ("follow-into-staff"), scripts_[i].description_); - if (ly_c_pair_p (follow) && to_boolean (ly_cdr (follow))) - { - sc->add_offset_callback (Side_position_interface::quantised_position_proc, Y_AXIS); - sc->set_property ("staff-padding", SCM_EOL); - } - typeset_grob (sc); + Grob *e = scripts_[i].script_; + + if (!e->get_parent (X_AXIS) + && Side_position_interface::get_axis (e) == Y_AXIS) + e->set_parent (info.grob (), X_AXIS); } +} + +void +Script_engraver::stop_translation_timestep () +{ scripts_.clear (); } +ADD_ACKNOWLEDGER (Script_engraver, rhythmic_head); +ADD_ACKNOWLEDGER (Script_engraver, stem); +ADD_ACKNOWLEDGER (Script_engraver, note_column); +ADD_ACKNOWLEDGER (Script_engraver, stem_tremolo); +ADD_ACKNOWLEDGER (Script_engraver, inline_accidental); + +ADD_TRANSLATOR (Script_engraver, + /* doc */ + "Handle note scripted articulations.", + /* create */ + "Script ", -Script_engraver::Script_engraver (){} + /* read */ + "scriptDefinitions ", -ENTER_DESCRIPTION (Script_engraver, -/* descr */ "Handles note scripted articulations.", -/* creats*/ "Script", -/* accepts */ "script-event articulation-event", -/* acks */ "stem-interface rhythmic-head-interface note-column-interface", -/* reads */ "scriptDefinitions", -/* write */ ""); + /* write */ + "" + );