]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/script-engraver.cc
Web: Fix URL for Shady Lane Publishing
[lilypond.git] / lily / script-engraver.cc
index 435e312729ed365241da483aa725374fca0c64c1..dee15b9cd14c79345021a925b4a9b6adfa752fac 100644 (file)
 /*
-  script-reg.cc -- implement Script_engraver
+  This file is part of LilyPond, the GNU music typesetter.
 
-  (c)  1997--1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  Copyright (C) 1997--2011 Han-Wen Nienhuys <hanwen@xs4all.nl>
+
+  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 <http://www.gnu.org/licenses/>.
 */
 
-#include "script-engraver.hh"
-#include "script.hh"
-#include "musical-request.hh"
+#include "engraver.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 "staff-sym.hh"
-#include "general-script-def.hh"
-#include "text-def.hh"
+#include "stream-event.hh"
+#include "warn.hh"
 
+#include "translator.icc"
 
-Script_engraver::Script_engraver()
+struct Script_tuple
 {
-  do_post_move_processing();
+  Stream_event *event_;
+  Grob *script_;
+  Script_tuple ()
+  {
+    event_ = 0;
+    script_ = 0;
+  }
+};
+
+class Script_engraver : public Engraver
+{
+  vector<Script_tuple> 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);
+
+public:
+  TRANSLATOR_DECLARATIONS (Script_engraver);
+};
+
+Script_engraver::Script_engraver ()
+{
+}
+
+IMPLEMENT_TRANSLATOR_LISTENER (Script_engraver, articulation);
+void
+Script_engraver::listen_articulation (Stream_event *ev)
+{
+  /* Discard double articulations for part-combining.  */
+  int script_count = scripts_.size ();
+  for (int i = 0; i < script_count; 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);
 }
 
-bool
-Script_engraver::do_try_request (Request *r_l)
+void
+copy_property (Grob *g, SCM sym, SCM alist)
 {
-  if (!r_l->access_Musical_req () || ! r_l->access_Musical_req ()->access_Musical_script_req ())
-    return false ;
-  
-  for (int i=0; i < script_req_l_arr_.size(); i++) 
+  if (g->internal_get_property (sym) == SCM_EOL)
     {
-      if (r_l->equal_b (script_req_l_arr_[i]))
-       return true;
+      SCM entry = scm_assoc (sym, alist);
+      if (scm_is_pair (entry))
+        g->set_property (sym, scm_cdr (entry));
     }
-  script_req_l_arr_.push (r_l->access_Script_req ());
-  
-  return true;
 }
 
+/* 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
-Script_engraver::do_process_requests()
+make_script_from_event (Grob *p, Context *tg,
+                        SCM art_type, int index)
 {
-  if (script_p_arr_.size ())
-    return ;
-  
-  for (int i=0; i < script_req_l_arr_.size(); i++)
+  SCM alist = tg->get_property ("scriptDefinitions");
+  SCM art = scm_assoc (art_type, alist);
+
+  if (art == SCM_BOOL_F)
     {
-      Script_req* l=script_req_l_arr_[i];
-      Script *p =new Script;
-      p->dir_ = l->dir_;
-      p->specs_p_ = l->scriptdef_p_->clone ();
-      script_p_arr_.push (p);
-      announce_element (Score_element_info (p, l));
+      /* FIXME: */
+      warning (_ ("do not know how to interpret articulation:"));
+      warning (_ (" scheme encoding: "));
+      scm_write (art_type, scm_current_error_port ());
+      message ("");
+      return;
+    }
+
+  art = scm_cdr (art);
+
+  bool priority_found = false;
+
+  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);
+    }
+
+  if (!priority_found)
+    {
+      p->set_property ("script-priority",
+                       scm_from_int (index));
     }
 }
 
 void
-Script_engraver::do_pre_move_processing()
+Script_engraver::process_music ()
 {
-  Staff_symbol* s_l = get_staff_info().staff_sym_l_;
-  for (int i=0; i < script_p_arr_.size(); i++) 
+  for (vsize i = 0; i < scripts_.size (); i++)
     {
-      Script*script_p = script_p_arr_[i];
-      if (!script_p->specs_p_->inside_b())
-       script_p->add_support (s_l);
-
-      if (script_p->specs_p_->is_type_b (Text_def::static_name ()))
-       {
-         Text_def * td_l = (Text_def*)script_p->specs_p_;
-         Scalar style = get_property ("textstyle");
-         if (style.to_bool ())
-           {
-             td_l->style_str_= style;
-           }
-       }
-      typeset_element (script_p);
+      Stream_event *ev = scripts_[i].event_;
+
+      Grob *p = make_item ("Script", ev->self_scm ());
+
+      make_script_from_event (p, context (),
+                              ev->get_property ("articulation-type"),
+                              i);
+
+      scripts_[i].script_ = p;
+
+      SCM force_dir = ev->get_property ("direction");
+      if (is_direction (force_dir) && to_dir (force_dir))
+        p->set_property ("direction", force_dir);
     }
-  script_p_arr_.clear();
 }
 
 void
-Script_engraver::do_post_move_processing()
+Script_engraver::acknowledge_stem (Grob_info info)
 {
-  script_req_l_arr_.clear();
+  int script_count = scripts_.size ();
+  for (int i = 0; i < script_count; i++)
+    {
+      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 ());
+    }
 }
 
+void
+Script_engraver::acknowledge_stem_tremolo (Grob_info info)
+{
+  int script_count = scripts_.size ();
+  for (int i = 0; i < script_count; i++)
+    {
+      Grob *e = scripts_[i].script_;
+      Side_position_interface::add_support (e, info.grob ());
+    }
+}
+
+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::acknowledge_note_column (Grob_info info)
+{
+  /* 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++)
+    {
+      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_TRANSLATOR (Script_engraver,
+                /* doc */
+                "Handle note scripted articulations.",
+
+                /* create */
+                "Script ",
+
+                /* read */
+                "scriptDefinitions ",
 
-IMPLEMENT_IS_TYPE_B1(Script_engraver,Engraver);
-ADD_THIS_TRANSLATOR(Script_engraver);
+                /* write */
+                ""
+               );