]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/script.cc
patch::: 1.3.8.uu1
[lilypond.git] / lily / script.cc
index 2a31133c331d121f75c33fc3c024eba0e1191ec5..a0636017532ea5dd9ebf9b56f0ba65e7f1506e90 100644 (file)
-#include "musicalrequest.hh"
-#include "paper-def.hh"
+/*   
+     script.cc --  implement Script
+  
+  source file of the GNU LilyPond music typesetter
+  
+  (c) 1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  
+ */
+
+/*
+
+  TODO: Quantisation support (staccato dots between stafflines)
+
+*/
+#include "debug.hh"
 #include "script.hh"
-#include "stem.hh"
-#include "molecule.hh"
 #include "lookup.hh"
+#include "staff-side.hh"
+#include "paper-def.hh"
+#include "dimension-cache.hh"
 
 
-
-void
-Script::set_stem(Stem*st_l)
+Molecule
+Script::get_molecule(Direction d) const
 {
-    stem_l_ = st_l;
-    add_dependency(st_l);
-}
+  SCM s = get_elt_property ("molecule");
+  assert (s != SCM_UNDEFINED);
+
+  SCM key = SCM_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 (s, paper_l()->get_var("interline"));
+    }
 
-void
-Script::set_support(Item*i)
-{
-    support.push(i);
-    add_dependency(i);
-}
+  else assert (false);
 
-Script::Script(Script_req* rq, int staflen)
-{    
-    staffsize =staflen;
-    specs_l_ = rq->scriptdef_p_;
-    stem_l_ = 0;
-    pos = 0;
-    symdir=1;
-    dir =rq->dir_i_;
+  return Molecule ();
 }
 
-void
-Script::set_symdir()
-{
-    if (specs_l_->invertsym)
-       symdir = (dir < 0) ? -1:1;
-}
 
 void
-Script::set_default_dir()
-{
-    if (specs_l_->stemdir) {
-       if (!stem_l_)
-           dir = 1;
-       else
-           dir = stem_l_->dir * specs_l_->stemdir;
-    }
-}
-
-Interval
-Script::support_height() const return r;
+Script::do_pre_processing ()
 {
-    for (int i=0; i < support.size(); i++)
-       r.unite(support[i]->height());
+  /*
+    center my self on the note head.
+   */
+  Graphical_element * e = parent_l(X_AXIS);
+  translate_axis (e->extent (X_AXIS).center (), X_AXIS);
 }
 
 void
-Script::set_default_index()
+Script::do_post_processing ()
 {
-    Real inter_f= paper()->internote();
-    Interval dy = symbol().dim.y;
-    
-    int d = specs_l_->staffdir;
-    Real y  ;
-    if (!d) {
-       Interval v= support_height();
-       y = v[dir]  -dy[-dir] + 2*dir*inter_f;
-    } else {
-       y  = (d > 0) ? staffsize + 2: -2; // ug
-       y *=inter_f;
-       Interval v= support_height();
-
-       if (d > 0) {
-           y = y >? v.max();
-       } else if (d < 0) {
-           y = y <? v.min();
-       }
-    }
-    
-    if (stem_l_) {
-       Interval v= stem_l_->height();
-
-       if (d > 0 || (!d && dir > 0)) {
-           y = y >? v.max();
-       }else if (d < 0 || (!d && dir < 0)) {
-           y = y <? v.min();
-       }
-    }
-    
-    pos = int(rint(Real(y)/inter_f));
+  Direction d =  Side_position_interface (this).get_direction ();
+  Molecule m (get_molecule(d));
+
+  /*
+    UGH UGH UGH
+   */
+#if 0
+  if (staff_side_l_->get_elt_property ("no-staff-support") == SCM_UNDEFINED) 
+    translate_axis (- m.dim_[Y_AXIS][Direction (-d)], Y_AXIS);
+#endif
 }
 
-Interval
-Script::width() const
-{
-    return symbol().dim.x;
-}
 
-Symbol
-Script::symbol()const
+Molecule*
+Script::do_brew_molecule_p () const
 {
-    String preidx_str = (symdir < 0) ?"-" :"";
-    return paper()->lookup_p_->script(preidx_str + specs_l_->symidx);
+  Direction dir = DOWN;
+  SCM d = get_elt_property ("direction");
+  if (isdir_b (d))
+    dir = to_dir (d);
+  
+  return new Molecule (get_molecule (dir));
 }
 
-void
-Script::do_pre_processing()
-{
-    set_default_dir();
-    set_symdir();
-}
 
-void
-Script::do_post_processing()
-{
-    set_default_index();
-}
 
-Molecule*
-Script::brew_molecule_p() const
-{
-    Real dy = paper()->internote();
-    
-    Molecule*out = new Molecule(Atom(symbol()));
-    out->translate(Offset(0,dy * pos));
-    return out;
-}