]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/script.cc
($(outdir)/%.pdf): add DVIPS_FLAGS. This will
[lilypond.git] / lily / script.cc
index 8a35f2ed894861b31c518a31a7fd7e9f5e8907c9..619f4e420baaea8ee5218b7783a89665b1cbfa6d 100644 (file)
-/*
-  script.cc -- implement Script
-
-  source file of the LilyPond music typesetter
-
-  (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
-*/
-
-#include "musical-request.hh"
-#include "paper-def.hh"
+/*   
+  script.cc --  implement Script_interface
+  
+  source file of the GNU LilyPond music typesetter
+  
+  (c) 1999--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  
+ */
+
+#include "directional-element-interface.hh"
+#include "warn.hh"
 #include "script.hh"
-#include "stem.hh"
-#include "molecule.hh"
+#include "font-interface.hh"
+#include "side-position-interface.hh"
+#include "paper-def.hh"
+#include "item.hh"
+#include "stencil.hh"
 #include "lookup.hh"
+#include "stem.hh"
+#include "note-column.hh"
 
-
-
-void
-Script::set_stem(Stem*st_l)
+Stencil
+Script_interface::get_stencil (Grob * me, Direction d)
 {
-    stem_l_ = st_l;
-    add_support(st_l);
-}
+  SCM s = me->get_grob_property ("script-stencil");
+  assert (gh_pair_p (s));
 
+  SCM key = ly_car (s);
+  if (key == ly_symbol2scm ("feta"))
+    {
+      SCM name_entry = ly_cdr (s);
 
-Script::Script(Script_req* rq)
-    :Staff_side(this)
-{    
-    specs_l_ = rq->scriptdef_p_;
-    inside_staff_b_ = specs_l_->inside_staff_b_;
-    stem_l_ = 0;
-    pos_i_ = 0;
-    symdir_i_=1;
-    dir_i_ =rq->dir_i_;
-}
+      SCM str = (gh_pair_p (name_entry)) ? index_get_cell (name_entry, d) :  name_entry;
+      return Font_interface::get_default_font (me)->find_by_name ("scripts-" +
+                                                                 ly_scm2string (str));
+    }
+ else if (key == ly_symbol2scm ("accordion"))
+    {
+      return Lookup::accordion (ly_cdr (s), 1.0, Font_interface::get_default_font (me));
+    }
+  else
+    assert (false);
 
-void
-Script::set_symdir()
-{
-    if (specs_l_->invertsym_b_)
-       symdir_i_ = (dir_i_ < 0) ? -1:1;
+  return Stencil ();
 }
 
-void
-Script::set_default_dir()
+MAKE_SCHEME_CALLBACK (Script_interface,before_line_breaking,1);
+SCM
+Script_interface::before_line_breaking (SCM smob)
 {
-    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_;
+  Grob * me = unsmob_grob (smob);
+
+  Direction d = Side_position_interface::get_direction (me);
+
+  if (!d)
+    {
+      /*
+       we should not have `arbitrary' directions. 
+      */
+      programming_error ("Script direction not yet known!");
+      d = DOWN;
     }
+  
+  set_grob_direction (me, d);
+
+  if (Grob * par = me->get_parent (X_AXIS))
+    {
+      Grob * stem = Note_column::get_stem (par);
+      if (stem && Stem::first_head (stem))
+       {
+         me->set_parent (Stem::first_head (stem), X_AXIS);
+       }
+    }
+  
+  return SCM_UNSPECIFIED;
 }
 
-void
-Script::set_default_index()
-{
-    pos_i_ = get_position_i();
-}
 
-Interval
-Script::do_width() const
-{
-    return symbol().dim.x;
-}
+MAKE_SCHEME_CALLBACK (Script_interface,print,1);
 
-Symbol
-Script::symbol()const
+SCM
+Script_interface::print (SCM smob)
 {
-    String preidx_str = (symdir_i_ < 0) ?"-" :"";
-    return paper()->lookup_l()->script(preidx_str + specs_l_->symidx);
-}
+  Grob *me= unsmob_grob (smob);
 
-void
-Script::do_pre_processing()
-{
-    if (!dir_i_)
-       set_default_dir();
-    set_symdir();
+  Direction dir = Side_position_interface::get_direction (me);
+  if (!dir)
+    {
+      programming_error ("Script direction not known, but stencil wanted.");
+      dir= DOWN;
+    }
+  
+  return get_stencil (me, dir).smobbed_copy ();
 }
 
-void
-Script::do_post_processing()
-{
-    set_default_index();
-}
 
-Molecule*
-Script::brew_molecule_p() const
+
+struct Text_script
 {
-    Real dy = paper()->internote();
-    
-    Molecule*out = new Molecule(Atom(symbol()));
-    out->translate(Offset(0,dy * pos_i_));
-    return out;
-}
-IMPLEMENT_STATIC_NAME(Script);
+    static bool has_interface (Grob*);
+};
 
-int 
-Script::compare(Script  *const&l1, Script *const&l2) 
+struct Skript
 {
-    return l1->specs_l_->priority_i_ - l2->specs_l_->priority_i_;
-}
-    
+    static bool has_interface (Grob*);
+};
+
+ADD_INTERFACE (Text_script,"text-script-interface",
+  "Any text script",
+  "script-priority");
+
+ADD_INTERFACE (Script_interface, "script-interface",
+  "",
+  "script-priority script-stencil");
+