]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/lookup.cc
release: 1.1.30
[lilypond.git] / lily / lookup.cc
index 35d9774c14eb38a363c3121057d29069db3e126a..dcbafb39755c466843a26141766fe99a64929e56 100644 (file)
@@ -3,12 +3,11 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c)  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 
   Jan Nieuwenhuizen <janneke@gnu.org>
 
   TODO
-      Read spacing info from AFMs
       Glissando
 */
 
 #include "lookup.hh"
 #include "debug.hh"
 #include "dimensions.hh"
-#include "symtable.hh"
 #include "scalar.hh"
 #include "paper-def.hh"
 #include "string-convert.hh"
 #include "file-path.hh"
 #include "main.hh"
 #include "lily-guile.hh"
+#include "all-fonts.hh"
+#include "afm.hh"
+#include "scope.hh"
+#include "molecule.hh"
+#include "atom.hh"
+
+SCM
+array_to_list (SCM *a , int l)
+{
+  SCM list = SCM_EOL;
+  for (int i= l; i--;  )
+    {
+      list =  gh_cons (a[i], list);
+    }
+  return list;
+}
 
 
 Lookup::Lookup ()
 {
   paper_l_ = 0;
-  symtables_p_ = new Symtables;
-  afm_p_ =0;
+  afm_l_ = 0;  
 }
 
 Lookup::Lookup (Lookup const& s)
 {
-  font_ = s.font_;
-  font_path_ = s.font_path_;
-  paper_l_ = s.paper_l_;
-  symtables_p_ = new Symtables (*s.symtables_p_);
-  afm_p_ = 0;
-}
-
-Lookup::Lookup (Symtables const& s)
-{
-  font_ = s.font_;
-  font_path_ = s.font_path_;
+  font_name_ = s.font_name_;
   paper_l_ = 0;
-  symtables_p_ = new Symtables (s);
-  afm_p_ = 0;
+  afm_l_ = 0;  
 }
 
-Lookup::~Lookup ()
+
+Molecule
+Lookup::ledger_line (Interval xwid) const
 {
-  delete afm_p_;
-  delete symtables_p_;
+  Molecule end (afm_find ("noteheads-ledgerending"));
+  Interval ed = end.dim_[X_AXIS];
+  xwid = Interval (xwid[LEFT] - ed[LEFT],
+                  xwid[RIGHT] - ed[RIGHT]);
+  Molecule mid = filledbox (Box (xwid, end.dim_[Y_AXIS]));
+  Molecule l (mid);
+
+  Molecule e2 = end;
+  Molecule e1 = end;
+  e1.translate_axis (xwid[RIGHT], X_AXIS);
+  e2.translate_axis (xwid[LEFT], X_AXIS);
+
+  l.add_molecule (e1);
+  l.add_molecule (e2);
+  return l;
 }
 
+
 Molecule
 Lookup::accidental (int j, bool cautionary) const
 {
-  Molecule m(afm_find (String ("accidentals") + String ("-") + to_str (j)));
+  Molecule m(afm_find (String ("accidentals-") + to_str (j)));
   if (cautionary) 
     {
-      m.add_at_edge(X_AXIS, LEFT, 
-                    Molecule(afm_find (String ("accidentals") + String ("-("))))
-;
-      m.add_at_edge(X_AXIS, RIGHT, 
-                    Molecule(afm_find (String ("accidentals") + String ("-)"))))
-;
+      Molecule open = afm_find (String ("accidentals-("));
+      Molecule close = afm_find (String ("accidentals-)"));
+      m.add_at_edge(X_AXIS, LEFT, Molecule(open), 0);
+      m.add_at_edge(X_AXIS, RIGHT, Molecule(close), 0);
     }
   return m;
 }
 
-void
-Lookup::add (String s, Symtable*p)
-{
-  symtables_p_->add (s, p);
-}
 
-Atom
+
+Molecule
 Lookup::afm_find (String s, bool warn) const
 {
-  if (!afm_p_)
+  if (!afm_l_)      
     {
-      *mlog << "[" << font_path_;
-      ( (Lookup*)this)->afm_p_ = new Adobe_font_metric (read_afm (font_path_));
-      *mlog << "]" << flush ;
-      DOUT << this->afm_p_->str ();
+      Lookup * me =     (Lookup*)(this);
+      me->afm_l_ = all_fonts_global_p->find_afm (font_name_);
+      if (!me->afm_l_)
+       {
+         warning (_f("Can't open `%s'\n", font_name_));
+         warning (_f("Search path %s\n", global_path.str ().ch_C()));
+         error (_f("Aborting"));
+       }
     }
-  Adobe_font_char_metric m = afm_p_->find_char (s, warn);
-
-  Atom a;
-  if (m.code () < 0)
-    return a;
-  
-  a.dim_ = m.B_;
-  a.dim_[X_AXIS] *= 1 / 1000.0;
-  a.dim_[Y_AXIS] *= 1 / 1000.0;
-  Array<Real> arr;
-  arr.push (m.code ());
-  a.lambda_ =  (lambda_scm ("char", arr));
-  a.str_ = "afm_find: " + s;
-  a.font_ = font_;
-  return a;
+  Adobe_font_char_metric cm = afm_l_->find_char (s, warn);
+  Molecule m;
+  if (cm.code () < 0)
+    return m;
+    
+  Atom at (gh_list (ly_symbol ("char"),
+                   gh_int2scm (cm.code ()),
+                   SCM_UNDEFINED));
+  at.font_ = ly_symbol (font_name_.ch_C());
+  m.dim_ = cm.dimensions();
+  m.add_atom (&at);
+  return m;
 }
 
-Atom
+Molecule
 Lookup::ball (int j) const
 {
   if (j > 2)
     j = 2;
 
-  return afm_find (String ("balls") + String ("-") + to_str (j));
+  return afm_find (String ("noteheads-") + to_str (j));
+}
+
+Molecule
+Lookup::simple_bar (String type, Real h) const
+{
+  SCM thick = ly_symbol ("barthick_" + type);
+  Real w = 0.1 PT;
+  if (paper_l_->scope_p_->elem_b (thick))
+    {
+      w = paper_l_->get_realvar (thick);
+    }
+
+  return filledbox (Box (Interval(0,w), Interval(-h/2, h/2)));
 }
 
-Atom
+  
+Molecule
 Lookup::bar (String str, Real h) const
 {
-  Array<Real> arr;
-  arr.push (h);
-  Atom a = (*symtables_p_) ("bars")->lookup (str);
-  a.lambda_ =  (lambda_scm (a.str_, arr));
-  a.str_ = "bar";
-  a.dim_.y () = Interval (-h/2, h/2);
-  a.font_ = font_;
-  return a;
+  if (str == "[")
+    return staff_bracket (h);
+  else if (str == "{")
+    return staff_brace (h);
+  
+  Real kern = paper_l_->get_var ("bar_kern");
+  Real thinkern = paper_l_->get_var ("bar_thinkern");  
+  Molecule thin = simple_bar ("thin", h);
+  Molecule thick = simple_bar ("thick", h);
+  Molecule colon = afm_find ("dots-repeatcolon");  
+
+  Molecule m;
+  
+  if (str == "")
+    {
+      return fill (Box (Interval(0, 0), Interval (-h/2, h/2)));
+    }
+  else if (str == "|")
+    {
+      return thin;
+    }
+  else if (str == "|.")
+    {
+      m.add_at_edge (X_AXIS, LEFT, thick, 0);      
+      m.add_at_edge (X_AXIS, LEFT, thin, kern);
+    }
+  else if (str == ".|")
+    {
+      m.add_at_edge (X_AXIS, RIGHT, thick, 0);
+      m.add_at_edge (X_AXIS, RIGHT, thin, kern);
+    }
+  else if (str == ":|")
+    {
+      m.add_at_edge (X_AXIS, LEFT, thick, 0);
+      m.add_at_edge (X_AXIS, LEFT, thin, kern);
+      m.add_at_edge (X_AXIS, LEFT, colon, kern);      
+    }
+  else if (str == "|:")
+    {
+      m.add_at_edge (X_AXIS, RIGHT, thick, 0);
+      m.add_at_edge (X_AXIS, RIGHT, thin, kern);
+      m.add_at_edge (X_AXIS, RIGHT, colon, kern);      
+    }
+  else if (str == ":|:")
+    {
+      m.add_at_edge (X_AXIS, LEFT, thick, thinkern);
+      m.add_at_edge (X_AXIS, LEFT, colon, kern);      
+      m.add_at_edge (X_AXIS, RIGHT, thick, kern);
+      m.add_at_edge (X_AXIS, RIGHT, colon, kern);      
+    }
+  else if (str == ".|.")
+    {
+      m.add_at_edge (X_AXIS, LEFT, thick, thinkern);
+      m.add_at_edge (X_AXIS, RIGHT, thick, kern);      
+    }
+  else if (str == "||")
+    {
+      m.add_at_edge (X_AXIS, RIGHT, thin, 0);
+      m.add_at_edge (X_AXIS, RIGHT, thin, thinkern);      
+    }
+
+  return m;
 }
 
-Atom 
+Molecule 
 Lookup::beam (Real slope, Real width, Real thick) const
 {
   Real height = slope * width; 
   Real min_y = (0 <? height) - thick/2;
   Real max_y = (0 >? height) + thick/2;
 
-  Array<Real> arr;
-  arr.push (width);
-  arr.push (slope);
-  arr.push (thick);
-
-  Atom a;
-  a.lambda_ =  (lambda_scm ("beam", arr));
-  a.str_ = "beam";
-  a.dim_[X_AXIS] = Interval (0, width);
-  a.dim_[Y_AXIS] = Interval (min_y, max_y);
-  return a;
+  
+  Molecule m;
+  Atom at
+     (gh_list (ly_symbol ("beam"),
+                               gh_double2scm (width),
+                               gh_double2scm (slope),
+                               gh_double2scm (thick),
+                               SCM_UNDEFINED));
+
+  m.dim_[X_AXIS] = Interval (0, width);
+  m.dim_[Y_AXIS] = Interval (min_y, max_y);
+  m.add_atom (&at);
+  return m;
 }
 
-Atom
+Molecule
 Lookup::clef (String st) const
 {
-  return afm_find (String ("clefs") + String ("-") + st);
+  return afm_find (String ("clefs-" + st));
 }
 
 SCM
 offset2scm (Offset o)
 {
-  return gh_list (gh_double2scm (o[X_AXIS]), gh_double2scm(o[Y_AXIS]), SCM_UNDEFINED);
+  return gh_list (gh_double2scm (o[X_AXIS]), gh_double2scm(o[Y_AXIS]),
+                 SCM_UNDEFINED);
 }
 
-Atom
+Molecule
 Lookup::dashed_slur (Array<Offset> controls, Real thick, Real dash) const
 {
   assert (controls.size () == 8);
@@ -168,10 +252,11 @@ Lookup::dashed_slur (Array<Offset> controls, Real thick, Real dash) const
   Real dx = d[X_AXIS];
   Real dy = d[Y_AXIS];
 
-  Atom a;
-  a.font_ = font_;
-  a.dim_[X_AXIS] = Interval (0, dx);
-  a.dim_[Y_AXIS] = Interval (0 <? dy,  0 >? dy);
+  Molecule m;
+
+
+  m.dim_[X_AXIS] = Interval (0, dx);
+  m.dim_[Y_AXIS] = Interval (0 <? dy, 0 >? dy);
 
   SCM sc[4];
   for (int i=0; i<  4; i++)
@@ -179,104 +264,107 @@ Lookup::dashed_slur (Array<Offset> controls, Real thick, Real dash) const
       sc[i] =  offset2scm (controls[i]);
     }
 
-  // (lambda (o) (dashed-slur o thick dash '(stuff))
-  a.lambda_ = 
-    ly_append (ly_lambda_o (),
-    gh_list (ly_append (ly_func_o ("dashed-slur"),
-    gh_cons (gh_double2scm (thick), 
-    gh_cons (gh_double2scm (dash),
-    gh_list (ly_quote_scm (gh_list (sc[1], sc[2], sc[3], sc[0], SCM_UNDEFINED)), SCM_UNDEFINED)))), SCM_UNDEFINED));
-
-  a.str_ = "dashed_slur";
-  return a;
+  Atom at
+     (gh_list (ly_symbol ("dashed-slur"),
+                               gh_double2scm (thick), 
+                               gh_double2scm (dash),
+                               ly_quote_scm (array_to_list (sc, 4)),
+                               SCM_UNDEFINED));
+  
+  
+  m.add_atom (&at);
+  return m;
 }
 
-Atom
+Molecule
 Lookup::dots () const
 {
-  return afm_find (String ("dots") + String ("-") + String ("dot"));
+  return afm_find (String ("dots-dot"));
 }
 
-Atom
-Lookup::dynamic (String st) const
-{
-  return (*symtables_p_) ("dynamics")->lookup (st);
-}
 
-Atom
+
+Molecule
 Lookup::fill (Box b) const
 {
-  Atom a;
-  a.dim_ = b;
-  return a;
+  Molecule m;
+  m.dim_ = b;
+  return m;
 }
 
-Atom
+Molecule
 Lookup::flag (int j, Direction d) const
 {
   char c = (d == UP) ? 'u' : 'd';
-  Atom a = afm_find (String ("flags") + String ("-") + to_str (c) + to_str (j));
-  return a;
+  return  afm_find (String ("flags-") + to_str (c) + to_str (j));
 }
 
-void
-Lookup::print () const
-{
-#ifndef NPRINT
-  DOUT << "Lookup {\n";
-  symtables_p_->print ();
-  DOUT << "}\n";
-#endif
-}
-
-Atom
+Molecule
 Lookup::rest (int j, bool o) const
 {
-   return afm_find (String ("rests")
-                   + String ("-") + to_str (j) + (o ? "o" : ""));
+  return afm_find (String ("rests-") + to_str (j) + (o ? "o" : ""));
 }
 
-Atom
+Molecule
 Lookup::rule_symbol (Real height, Real width) const
 {
-  Atom a = (*symtables_p_) ("param")->lookup ("rule");
-  Array<Real> arr;
-  arr.push (height);
-  arr.push (width);
-  a.lambda_ = (lambda_scm (a.str_, arr));
-  a.str_ = "rule_symbol";
-  a.dim_.x () = Interval (0, width);
-  a.dim_.y () = Interval (0, height);
-  return a;
+  Atom at  (gh_list (ly_symbol ("rulesym"),
+                                        gh_double2scm (height),
+                                        gh_double2scm (width),
+                                        SCM_UNDEFINED));
+
+  Molecule m;
+  m.dim_.x () = Interval (0, width);
+  m.dim_.y () = Interval (0, height);
+  
+  m.add_atom (&at);
+
+  return m;
 }
 
-Atom
+Molecule
 Lookup::script (String str) const
 {
-  return afm_find (String ("scripts") + String ("-") + str);
+  return afm_find (String ("scripts-") + str);
 }
 
-Atom
-Lookup::special_time_signature (String s, Array<int> arr) const
+Molecule
+Lookup::special_time_signature (String s, int n, int d) const
 {
   // First guess: s contains only the signature style
-  assert (arr.size () >1);
-  String symbolname = "timesig-" + s + to_str (arr[0]) + "/" + to_str (arr[1]);
+  String symbolname = "timesig-" + s + to_str (n) + "/" + to_str (d);
   
-  Atom a = afm_find (symbolname, false);
-  if (!a.empty ()) 
-    return a;
+  Molecule m = afm_find (symbolname, false);
+  if (!m.dim_[X_AXIS].empty_b ()) 
+    return m;
 
   // Second guess: s contains the full signature name
-  a = afm_find ("timesig-"+s, false);
-  if (!a.empty ()) 
-    return a;
+  m = afm_find ("timesig-"+s, false);
+  if (!m.dim_[X_AXIS].empty_b ()) 
+    return m;
 
   // Resort to default layout with numbers
-  return time_signature (arr);
+  return time_signature (n,d);
 }
 
-Atom
+Molecule
+Lookup::filledbox (Box b ) const
+{
+  Molecule m;
+  
+  Atom at  (gh_list (ly_symbol ("filledbox"),
+                                        gh_double2scm (-b[X_AXIS][LEFT]),
+                                        gh_double2scm (b[X_AXIS][RIGHT]),                     
+                                        gh_double2scm (-b[Y_AXIS][DOWN]),
+                                        gh_double2scm (b[Y_AXIS][UP]),                
+                                        SCM_UNDEFINED));
+
+  m.dim_ = b;
+  m.add_atom (&at);
+  return m;
+}
+
+Molecule
 Lookup::stem (Real y1, Real y2) const
 {
   if (y1 > y2)
@@ -285,82 +373,52 @@ Lookup::stem (Real y1, Real y2) const
       y1 = y2;
       y2 = t;
     }
-  Atom a;
-
-  a.dim_.x () = Interval (0,0);
-  a.dim_.y () = Interval (y1,y2);
-
-  Array<Real> arr;
-
   Real stem_width = paper_l_->get_var ("stemthickness");
-  arr.push (-stem_width /2);
-  arr.push (stem_width);
-  arr.push (y2);
-  arr.push (-y1);
-
-  a.lambda_ = (lambda_scm ("stem", arr));
-  a.str_ = "stem";
-  a.font_ = font_;
-  return a;
+  return filledbox (Box (Interval (-stem_width/2,stem_width/2),
+                        Interval (y1, y2)));
 }
 
-Atom
-Lookup::streepje (int type) const
-{
-  if (type > 2)
-    type = 2;
 
-  return  afm_find ("balls" + String ("-") +to_str (type) + "l");
-}
+static Dict_initialiser<char const*> cmr_init[] = {
+  {"bold", "cmbx"},
+  {"dynamic", "feta-din"},
+  {"finger", "feta-nummer"},
+  {"typewriter", "cmtt"},
+  {"italic", "cmti"},
+  {"roman", "cmr"},
+  {"large", "cmbx"},
+  {"Large", "cmbx"},
+  {"mark", "feta-nummer"},
+  {"number", "feta-nummer"},
+  {"volta", "feta-nummer"},
+  {0,0}
+};
 
-Dictionary<String> cmr_dict;
-Dictionary<Adobe_font_metric*> afm_p_dict;
+static Dictionary<char const *> cmr_dict (cmr_init);
 
-Atom
+Molecule
 Lookup::text (String style, String text) const
 {
-  Array<Scalar> arr;
-
-  arr.push (text);
-  Atom a =  (*symtables_p_) ("style")->lookup (style);
-  a.lambda_ = lambda_scm (a.str_, arr);
-  Real font_w = a.dim_.x ().length ();
-  Real font_h = a.dim_.y ().length ();
+  Molecule m;
+  
 
-// urg
-//  if (!cmr_dict.length_i ())
-  if (!cmr_dict.elem_b ("roman"))
+  Real font_h = paper_l_->get_var ("font_normal");
+  if (paper_l_->scope_p_->elem_b ("font_" + style))
     {
-      //brrrr
-      cmr_dict.elem ("bold") = "cmbx";
-      cmr_dict.elem ("dynamic") = "feta-din";
-      cmr_dict.elem ("finger") = "feta-nummer";
-      cmr_dict.elem ("italic") = "cmti";
-      cmr_dict.elem ("roman") = "cmr";
+      font_h = paper_l_->get_var ("font_" + style);
     }
-
-  if (!afm_p_dict.elem_b (style))
+   
+  if (cmr_dict.elem_b (style))
     {
-      Adobe_font_metric* afm_p = 0;
-      String cmr_str = cmr_dict.elem (style) + to_str ((int) font_h) + ".afm";
-      String font_path = global_path.find (cmr_str);
-      if (!font_path.length_i ())
-        {
-         warning (_f("can't open file: `%s'", cmr_str.ch_C ()));
-         warning (_f("guessing dimensions for font style: `%s'", style.ch_C ()));
-       }
-      else
-        {
-         *mlog << "[" << font_path;
-         afm_p = new Adobe_font_metric (read_afm (font_path));
-         DOUT << afm_p->str ();
-         *mlog << "]" << flush ;
-       }
-      afm_p_dict.elem (style) = afm_p;
+      style = String (cmr_dict [style]) + to_str  ((int)font_h); // ugh
     }
+
   Real w = 0;
-  Adobe_font_metric* afm_p = afm_p_dict.elem (style);
+  Interval ydims (0,0);
+
+  Font_metric* afm_l = all_fonts_global_p->find_font (style);
   DOUT << "\nChars: ";
+  
   for (int i = 0; i < text.length_i (); i++) 
     {
       if (text[i]=='\\')
@@ -368,112 +426,114 @@ Lookup::text (String style, String text) const
          ;
       else
        {
-         if (afm_p)
-           {
-             Adobe_font_char_metric m = afm_p->char_metrics_[(int)text[i]];
-             w += m.B_.x ().length ();
-             DOUT << to_str (m.B_.x ().length ()) << " ";
-           }
-         else
-             w += font_w;
+         Character_metric *c = afm_l->get_char (text[i],false);
+         w += c->dimensions()[X_AXIS].length ();
+         ydims.unite (c->dimensions()[Y_AXIS]);
        }
     }
+
   DOUT << "\n" << to_str (w) << "\n";
-  a.dim_.x () = Interval (0, w);
-  a.str_ = "text";
-  a.font_ = font_;
-  return a;
-}
+  m.dim_.x () = Interval (0, w);
+  m.dim_.y () = ydims;
+  Atom at  (gh_list (ly_symbol ("text"),
+                    gh_str02scm (text.ch_C()),
+                    SCM_UNDEFINED));
+  at.font_ = ly_symbol (style);
   
-
-Atom
-Lookup::time_signature (Array<int> a) const
-{
-  Atom s ((*symtables_p_) ("param")->lookup ("time_signature"));
-  s.lambda_ =  (lambda_scm (s.str_, a));
-
-  return s;
+  m.add_atom (&at);
+  return m;
 }
+  
 
 /*
-  should be handled via Tex_ code and Lookup::bar ()
  */
-Atom
-Lookup::vbrace (Real &y) const
+Molecule
+Lookup::time_signature (int num, int den) const
 {
-  Atom a = (*symtables_p_) ("param")->lookup ( "brace");
-  Interval ydims = a.dim_[Y_AXIS];
-  Real min_y = ydims[LEFT];
-  Real max_y = ydims[RIGHT];
-  Real step = 1.0 PT;
-  if (y < min_y)
+  String sty = "number";
+  Molecule n (text (sty, to_str (num)));
+  Molecule d (text (sty, to_str (den)));
+  n.do_center (X_AXIS);
+  d.do_center (X_AXIS);
+  Molecule m;
+  if (den)
     {
-      warning (_ ("piano brace") 
-              + " " + _ ("too small") +  " (" + print_dimen (y) + ")");
-      y = min_y;
+      m.add_at_edge (Y_AXIS, UP, n, 0.0);
+      m.add_at_edge (Y_AXIS, DOWN, d, 0.0);
     }
-  if (y > max_y)
+  else
     {
-      warning (_ ("piano brace")
-              + " " + _ ("too big") + " (" + print_dimen (y) + ")");
-      y = max_y;
+      m = n;
+      m.do_center (Y_AXIS);
     }
+  return m;
+}
 
+Molecule
+Lookup::staff_brace (Real y) const
+{
+  Molecule m;
   
-  int idx = int (rint ( (y- min_y)/step)) + 1;
+  Atom at  (gh_list (ly_symbol ("pianobrace"),
+                      gh_double2scm (y),
+                      SCM_UNDEFINED
+                      ));
   
-  Array<Real> arr;
-  arr.push (idx);
-  a.lambda_ = (lambda_scm (a.str_, arr));
-  a.str_ = "brace";
-  a.dim_[Y_AXIS] = Interval (-y/2,y/2);
-  a.font_ = font_;
-  return a;
+  m.dim_[Y_AXIS] = Interval (-y/2,y/2);
+  m.dim_[X_AXIS] = Interval (0,0);
+  m.add_atom (&at);
+  return m;
 }
 
-Atom
+Molecule
 Lookup::hairpin (Real width, bool decresc, bool continued) const
 {
-  Atom a;  
+  Molecule m;   
   Real height = paper_l_->staffheight_f () / 6;
-  String ps;
-  ps += to_str (width) + " " 
-    + to_str (height) + " " 
-    + to_str (continued ? height/2 : 0) + 
-    + " draw_"  + String (decresc ? "de" : "") + "cresc\n";
-  a.str_ = ps;
-  a.dim_.x () = Interval (0, width);
-  a.dim_.y () = Interval (-2*height, 2*height);
-  a.font_ = font_;
-  return a;
+
+  String hairpin = String (decresc ? "de" : "") + "crescendo";
+  Atom at  (gh_list (ly_symbol (hairpin),
+                      gh_double2scm (width),
+                      gh_double2scm (height),
+                      gh_double2scm (continued ? height/2 : 0.0),
+                      SCM_UNDEFINED));
+  m.dim_.x () = Interval (0, width);
+  m.dim_.y () = Interval (-2*height, 2*height);
+
+  m.add_atom (&at);
+  return m;
 }
 
-Atom
+Molecule
 Lookup::plet (Real dy , Real dx, Direction dir) const
 {
-  String ps;
-    
-  ps += String_convert::double_str (dx) + " " 
-    + String_convert::double_str (dy) + " "
-    + String_convert::int_str ( (int)dir) +
-    " draw_plet ";
-
-  Atom a;
-  a.str_ = ps;
-  return a;
+  Molecule m;
+  SCM thick = ly_symbol ("tuplet_thick");
+  Real t = 0.1 PT;
+  if (paper_l_->scope_p_->elem_b (thick))
+    {
+      t = paper_l_->get_realvar (thick);
+    }
+  
+  Atom at  (gh_list(ly_symbol ("tuplet"),
+                     gh_double2scm (dx),
+                     gh_double2scm (dy),
+                     gh_double2scm (t),
+                     gh_int2scm (dir),
+                     SCM_UNDEFINED));
+m.add_atom (&at);
+
+  return m;
 }
 
-Atom
+/*
+  Make a smooth curve along the points 
+ */
+Molecule
 Lookup::slur (Array<Offset> controls) const
 {
-  assert (controls.size () == 8);
-
-  String ps;
-  
-  Real dx = controls[3].x () - controls[0].x ();
-  Real dy = controls[3].y () - controls[0].y ();
-  Atom a;
+  Offset  delta_off = controls[3]- controls[0];
+  Molecule m; 
 
   SCM scontrols [8];
   int indices[] = {5,6,7,4,1,2,3,0};
@@ -482,50 +542,63 @@ Lookup::slur (Array<Offset> controls) const
     scontrols[i] = offset2scm (controls[indices[i]]);
 
 
-  a.lambda_ =
-    gh_append2 (ly_lambda_o (),
-               gh_list (gh_append2 (ly_func_o ("slur"),
-                                    gh_list (ly_quote_scm (gh_list (scontrols[0],
-                                                                    scontrols[1],
-                                                                    scontrols[2],
-                                                                    scontrols[3],
-                                                                    scontrols[4],
-                                                                    scontrols[5],
-                                                                    scontrols[6],
-                                                                    scontrols[7],
-                                                                    SCM_UNDEFINED)),
-                                             SCM_UNDEFINED)
-                                    ),
-                        SCM_UNDEFINED)
-               );
-
-
-  a.str_ = "slur";
-
-  a.dim_[X_AXIS] = Interval (0, dx);
-  a.dim_[Y_AXIS] = Interval (0 <? dy,  0 >? dy);
-  a.font_ = font_;
-  return a;
+  Atom at  (gh_list (ly_symbol ("bezier-sandwich"),
+                     ly_quote_scm (array_to_list (scontrols, 8)),
+                     SCM_UNDEFINED));
+
+  m.dim_[X_AXIS] = Interval (0, delta_off[X_AXIS]);
+  m.dim_[Y_AXIS] = Interval (0 <? delta_off[Y_AXIS], 0 >? delta_off[Y_AXIS]);
+  m.add_atom (&at);
+  return m;
+}
+
+Molecule
+Lookup::staff_bracket (Real y) const
+{
+  Molecule m; 
+  Atom at  ( gh_list (ly_symbol ("bracket"),
+                       gh_double2scm (y),
+                       SCM_UNDEFINED));
+  m.add_atom (&at);                             
+  m.dim_[Y_AXIS] = Interval (-y/2,y/2);
+  m.dim_[X_AXIS] = Interval (0,4 PT);
+
+  m.translate_axis (- 4. / 3. * m.dim_[X_AXIS].length (), X_AXIS);
+  return m;
 }
 
-Atom
-Lookup::vbracket (Real &y) const
+Molecule
+Lookup::volta (Real w, bool last_b) const
 {
-  Atom a;
-  Real min_y = paper_l_->staffheight_f ();
-  if (y < min_y)
+  Molecule m; 
+  SCM thick = ly_symbol ("volta_thick");
+  Real t = 0.1 PT;
+  if (paper_l_->scope_p_->elem_b (thick))
     {
-      warning (_ ("bracket")
-              + " " + _ ("too small") +  " (" + print_dimen (y) + ")");
-      //      y = min_y;
+      t = paper_l_->get_realvar (thick);
     }
-  Array<Real> arr;
-  arr.push (y);
-  a.lambda_ =  (lambda_scm ("bracket", arr));
-  a.str_ = "vbracket";
-  a.dim_[Y_AXIS] = Interval (-y/2,y/2);
-  a.dim_[X_AXIS] = Interval (0,4 PT);
-  return a;
+  Atom at  (gh_list (ly_symbol ("volta"),
+                      gh_double2scm (w),
+                      gh_double2scm (t),
+                      gh_int2scm (last_b),
+                      SCM_UNDEFINED));
+
+  Real interline_f = paper_l_->interline_f ();
+
+  m.dim_[Y_AXIS] = Interval (-interline_f, interline_f);
+  m.dim_[X_AXIS] = Interval (0, w);
+
+  m.add_atom (&at);
+  return m;
 }
 
 
+Molecule
+Lookup::special_ball (int j, String kind_of_ball) const
+{
+  if (j > 2)
+    j = 2;
+
+  return afm_find (String ("noteheads-") + kind_of_ball);
+}
+