]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/script.cc
release: 1.3.47
[lilypond.git] / lily / script.cc
index 578a8853208b72cbf353320ee99a73c73f5664e9..3e78d6acd8a4d2ecd2fff26dfd522d3c61d22db7 100644 (file)
@@ -1,88 +1,71 @@
-/*
-  script.cc -- implement Script
-
+/*   
+  script.cc --  implement Script
+  
   source file of the GNU LilyPond music typesetter
+  
+  (c) 1999--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  
+ */
 
-  (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
-*/
-
-#include "musical-request.hh"
-#include "paper-def.hh"
+#include "debug.hh"
 #include "script.hh"
-#include "stem.hh"
-#include "molecule.hh"
 #include "lookup.hh"
+#include "side-position-interface.hh"
+#include "paper-def.hh"
+#include "dimension-cache.hh"
 
 
-
-void
-Script::set_stem(Stem*st_l)
-{
-    stem_l_ = st_l;
-    add_support(st_l);
-}
-
-
-Script::Script(Script_req* rq)
-{    
-    specs_l_ = rq->scriptdef_p_;
-    inside_staff_b_ = specs_l_->inside_b();
-    stem_l_ = 0;
-    pos_i_ = 0;
-    dir_i_ =rq->dir_i_;
-}
-void
-Script::set_default_dir()
+Molecule
+Script::get_molecule(Direction d) const
 {
-    int s_i=specs_l_->rel_stem_dir_i();
-    if (s_i && stem_l_)
-       dir_i_ = stem_l_->dir_i_ * s_i;
-    else {
-       dir_i_ =specs_l_->staff_dir_i();
+  SCM s = get_elt_property ("molecule");
+  assert (gh_pair_p (s));
+
+  SCM key = gh_car  (s);
+  if (key == ly_symbol2scm ("feta"))
+    {
+      return lookup_l ()->afm_find ("scripts-" +
+                                   ly_scm2string (index_cell (gh_cdr (s), d)));
+    }
+  else if (key == ly_symbol2scm ("accordion"))
+    {
+      return lookup_l ()->accordion (gh_cdr (s), paper_l()->get_var("interline"));
     }
-}
 
-void
-Script::set_default_index()
-{
-    pos_i_ = get_position_i(specs_l_->get_atom(paper(), dir_i_).extent().y);
-}
+  else assert (false);
 
-Interval
-Script::do_width() const
-{
-    return specs_l_->get_atom(paper(), dir_i_).extent().x;
+  return Molecule ();
 }
 
+
 void
-Script::do_pre_processing()
+Script::before_line_breaking ()
 {
-    if (!dir_i_)
-       set_default_dir();
-
+  /*
+    center my self on the note head.
+   */
+  Score_element * e = parent_l(X_AXIS);
+  translate_axis (e->extent (X_AXIS).center (), X_AXIS);
 }
 
 void
-Script::do_post_processing()
+Script::after_line_breaking ()
 {
-    set_default_index();
+  Side_position_interface i (this);
+  Direction d =  i.get_direction ();
+  i.set_direction (d);
 }
 
-Molecule*
-Script::brew_molecule_p() const
+Molecule 
+Script::do_brew_molecule () const
 {
-    Real dy = paper()->internote_f();
-    
-    Molecule*out = new Molecule(specs_l_->get_atom(paper(), dir_i_));
-    out->translate(Offset(0,dy * pos_i_));
-    return out;
+  Direction dir = DOWN;
+  SCM d = get_elt_property ("direction");
+  if (isdir_b (d))
+    dir = to_dir (d);
+  
+  return get_molecule (dir);
 }
 
-IMPLEMENT_STATIC_NAME(Script);
 
-int 
-Script::compare(Script  *const&l1, Script *const&l2) 
-{
-    return l1->specs_l_->priority_i() - l2->specs_l_->priority_i();
-}
-    
+