]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/script.cc
($(outdir)/%.pdf): add DVIPS_FLAGS. This will
[lilypond.git] / lily / script.cc
index 576a9fdb9b90af120233af7b074b818fcad6dc9e..619f4e420baaea8ee5218b7783a89665b1cbfa6d 100644 (file)
-/*
-  script.cc -- implement Script
-
+/*   
+  script.cc --  implement Script_interface
+  
   source file of the GNU LilyPond music typesetter
+  
+  (c) 1999--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  
+ */
 
-  (c)  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
-*/
-#include "script-def.hh"
-#include "musical-request.hh"
-#include "paper-def.hh"
+#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::do_print () const
+Stencil
+Script_interface::get_stencil (Grob * me, Direction d)
 {
-#ifndef NPRINT
-  specs_p_->print ();
-#endif
-}
+  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)
-{
-  Staff_side::do_substitute_element_pointer (o,n);
-  if (o == stem_l_)
+  SCM key = ly_car (s);
+  if (key == ly_symbol2scm ("feta"))
     {
-      stem_l_ = dynamic_cast<Stem *> (n);
+      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 ();
 }
 
-void
-Script::set_stem (Stem*st_l)
+MAKE_SCHEME_CALLBACK (Script_interface,before_line_breaking,1);
+SCM
+Script_interface::before_line_breaking (SCM smob)
 {
-  stem_l_ = st_l;
-  add_support (st_l);
-}
+  Grob * me = unsmob_grob (smob);
 
+  Direction d = Side_position_interface::get_direction (me);
 
-Script::Script ()
-{
-  axis_ = Y_AXIS;
-  specs_p_ = 0;
-  stem_l_ = 0;
-  dir_ =  CENTER;
-}
+  if (!d)
+    {
+      /*
+       we should not have `arbitrary' directions. 
+      */
+      programming_error ("Script direction not yet known!");
+      d = DOWN;
+    }
+  
+  set_grob_direction (me, d);
 
-void
-Script::set_default_dir ()
-{
-  int s_i=specs_p_->rel_stem_dir ();
-  if (s_i)
+  if (Grob * par = me->get_parent (X_AXIS))
     {
-      if (stem_l_)
-       dir_ = Direction (stem_l_->dir_ * s_i);
-      else
+      Grob * stem = Note_column::get_stem (par);
+      if (stem && Stem::first_head (stem))
        {
-         specs_p_->warning (_ ("script needs stem direction"));
-         dir_ = DOWN;
+         me->set_parent (Stem::first_head (stem), X_AXIS);
        }
     }
-  else
-    {
-      dir_ =specs_p_->staff_dir ();
-    }
-  assert (dir_);
+  
+  return SCM_UNSPECIFIED;
 }
 
 
-Interval
-Script::do_width () const
-{
-  return specs_p_->get_molecule (paper_l (), dir_).extent ().x ();
-}
-
-void
-Script::do_pre_processing ()
-{
-  Staff_side::do_pre_processing ();
-  if (axis_ == Y_AXIS && !dir_)
-    set_default_dir ();
-}
+MAKE_SCHEME_CALLBACK (Script_interface,print,1);
 
-Interval
-Script::symbol_height () const
+SCM
+Script_interface::print (SCM smob)
 {
-  return specs_p_->get_molecule (paper_l (), dir_).extent ().y ();
-}
+  Grob *me= unsmob_grob (smob);
 
-
-Molecule*
-Script::do_brew_molecule_p () const
-{
-  Real dx =0.;
-
-  Molecule*mol_p = new Molecule (specs_p_->get_molecule (paper_l (), dir_));
-  /*
-    ugh, staccato dots are not centred between stafflines (how?)?
-  */
-  Real correct =0.0;
-  if (axis_ == Y_AXIS){
-    dx =  paper_l ()->note_width ()/2;
-    correct = - (Real)dir_ * 2.0 * paper_l ()->rule_thickness ();
-    mol_p->translate_axis (dx, X_AXIS);        // FIXME! ugh
-  }
+  Direction dir = Side_position_interface::get_direction (me);
+  if (!dir)
+    {
+      programming_error ("Script direction not known, but stencil wanted.");
+      dir= DOWN;
+    }
   
-  mol_p->translate_axis (coordinate_offset_f_ + correct, axis_);
-
-  return mol_p;
+  return get_stencil (me, dir).smobbed_copy ();
 }
 
 
 
-
-int
-Script::compare (Script  *const&l1, Script *const&l2)
+struct Text_script
 {
-  return l1->specs_p_->priority_i() - l2->specs_p_->priority_i ();
-}
+    static bool has_interface (Grob*);
+};
 
-Script::~Script ()
-{
-  delete specs_p_;
-}
-Script::Script (Script const&s)
-  : Item (s), Staff_side(s)
+struct Skript
 {
-  specs_p_ = s.specs_p_ ? s.specs_p_->clone (): 0;
-  stem_l_ =s.stem_l_;
-}
-  
+    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");
+