]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/script.cc
($(outdir)/%.pdf): add DVIPS_FLAGS. This will
[lilypond.git] / lily / script.cc
index ebceea43abc3d8cd95eaaa0e8b1ff7e011b79159..619f4e420baaea8ee5218b7783a89665b1cbfa6d 100644 (file)
 /*   
-     script.cc --  implement Script
+  script.cc --  implement Script_interface
   
   source file of the GNU LilyPond music typesetter
   
-  (c) 1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1999--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
   
  */
 
-/*
-
-  TODO: Quantisation support (staccato dots between stafflines)
-
-*/
-#include "debug.hh"
+#include "directional-element-interface.hh"
+#include "warn.hh"
 #include "script.hh"
-#include "lookup.hh"
-#include "staff-side.hh"
+#include "font-interface.hh"
+#include "side-position-interface.hh"
 #include "paper-def.hh"
-#include "dimension-cache.hh"
+#include "item.hh"
+#include "stencil.hh"
+#include "lookup.hh"
+#include "stem.hh"
+#include "note-column.hh"
 
-Script::Script ()
+Stencil
+Script_interface::get_stencil (Grob * me, Direction d)
 {
-  staff_side_l_ =0;
-}
+  SCM s = me->get_grob_property ("script-stencil");
+  assert (gh_pair_p (s));
 
-void
-Script::do_substitute_element_pointer (Score_element*o, Score_element*n)
-{
-  if (o == staff_side_l_)
-    staff_side_l_ = dynamic_cast<Staff_side_item*>(n);
-}
+  SCM key = ly_car (s);
+  if (key == ly_symbol2scm ("feta"))
+    {
+      SCM name_entry = ly_cdr (s);
 
+      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);
 
+  return Stencil ();
+}
 
-Molecule
-Script::get_molecule(Direction d) const
+MAKE_SCHEME_CALLBACK (Script_interface,before_line_breaking,1);
+SCM
+Script_interface::before_line_breaking (SCM smob)
 {
-  SCM s = get_elt_property ("molecule");
-  assert (s != SCM_UNDEFINED);
+  Grob * me = unsmob_grob (smob);
 
-  SCM key = SCM_CAR (s);
-  if (key == ly_symbol ("feta"))
+  Direction d = Side_position_interface::get_direction (me);
+
+  if (!d)
     {
-      return lookup_l ()->afm_find ("scripts-" +
-                                   ly_scm2string (index_cell (gh_cdr (s), d)));
+      /*
+       we should not have `arbitrary' directions. 
+      */
+      programming_error ("Script direction not yet known!");
+      d = DOWN;
     }
-  else if (key == ly_symbol ("accordion"))
+  
+  set_grob_direction (me, d);
+
+  if (Grob * par = me->get_parent (X_AXIS))
     {
-      return lookup_l ()->accordion (s, paper_l()->get_var("interline"));
+      Grob * stem = Note_column::get_stem (par);
+      if (stem && Stem::first_head (stem))
+       {
+         me->set_parent (Stem::first_head (stem), X_AXIS);
+       }
     }
-
-  else assert (false);
-
-  return Molecule ();
+  
+  return SCM_UNSPECIFIED;
 }
 
 
-void
-Script::do_pre_processing ()
-{
-  /*
-    center my self on the note head.
-   */
-  Graphical_element * e = staff_side_l_->parent_l(X_AXIS);
-  translate_axis (e->extent (X_AXIS).center (), X_AXIS);
-}
+MAKE_SCHEME_CALLBACK (Script_interface,print,1);
 
-void
-Script::do_post_processing ()
+SCM
+Script_interface::print (SCM smob)
 {
-  Direction d =  staff_side_l_->get_direction ();
-  Molecule m (get_molecule(d));
-
-  /*
-    UGH UGH UGH
-   */
-  if (staff_side_l_->get_elt_property ("no-staff-support") == SCM_UNDEFINED) 
-    translate_axis (- m.dim_[Y_AXIS][Direction (-d)], Y_AXIS);
-}
+  Grob *me= unsmob_grob (smob);
 
-void
-Script::set_staff_side (Staff_side_item*g)
-{
-  staff_side_l_ = g;
-  add_dependency (g);
-  set_parent (g, Y_AXIS);
+  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 ();
 }
 
-Molecule*
-Script::do_brew_molecule_p () const
+
+
+struct Text_script
 {
-  return new Molecule (get_molecule (staff_side_l_->get_direction ()));
-}
+    static bool has_interface (Grob*);
+};
 
-void
-Script::do_print () const
+struct Skript
 {
+    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");