]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/lookup.cc
release: 1.1.64
[lilypond.git] / lily / lookup.cc
index 6cdf8356048a416e8105f717123e8bcfec2df9fc..d82c1f55baec45046d2ef0b9fa204b0910561038 100644 (file)
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
+  (c)  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+
+  Jan Nieuwenhuizen <janneke@gnu.org>
 
   TODO
-  This doth suck. We should have PS output, and read spacing info from TFMs
-  
-  Glissando, bracket
-  
+      Glissando
 */
-
+#include <math.h>
+#include <ctype.h>
 #include "lookup.hh"
 #include "debug.hh"
-#include "symtable.hh"
-#include "dimen.hh"
-#include "tex.hh"
+#include "dimensions.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"
+#include "lily-guile.hh"
+
+
+Lookup::Lookup ()
+{
+  afm_l_ = 0;  
+}
 
-Lookup::Lookup()
+Lookup::Lookup (Lookup const& s)
 {
-    paper_l_ = 0;
-    texsetting = "\\unknowntexsetting";
-    symtables_ = new Symtables;
+  font_name_ = s.font_name_;
+  afm_l_ = 0;  
 }
 
-Lookup::Lookup (Lookup const &s)
+
+/*
+  build a ledger line for small pieces.
+ */
+Molecule
+Lookup::ledger_line (Interval xwid) const
 {
-    paper_l_ = s.paper_l_;
-    texsetting = s.texsetting;
-    symtables_ = new Symtables (*s.symtables_);
+  Drul_array<Molecule> endings;
+  endings[LEFT] = afm_find ("noteheads-ledgerending");
+  Molecule * e = &endings[LEFT];
+  endings[RIGHT] = *e;
+  
+  Real thick = e->dim_[Y_AXIS].length();
+  Real len = e->dim_[X_AXIS].length () - thick;
+
+  Molecule total;
+  Direction d = LEFT;
+  do {
+    endings[d].translate_axis (xwid[d] - endings[d].dim_[X_AXIS][d], X_AXIS);
+    total.add_molecule (endings[d]);    
+  } while ((flip(&d)) != LEFT);
+
+  Real xpos = xwid [LEFT] + len;
+
+  while (xpos + len + thick /2 <= xwid[RIGHT])
+    {
+      e->translate_axis (len, X_AXIS);
+      total.add_molecule (*e);
+      xpos += len;
+    }
+
+  return total;
 }
-Lookup::~Lookup()
+
+
+Molecule
+Lookup::accidental (int j, bool cautionary) const
 {
-    delete symtables_;
+  Molecule m(afm_find (String ("accidentals-") + to_str (j)));
+  if (cautionary) 
+    {
+      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)
+
+
+Molecule
+Lookup::afm_find (String s, bool warn) const
 {
-    symtables_->add (s, p);
+  if (!afm_l_)      
+    {
+      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 cm = afm_l_->find_char (s, warn);
+  Molecule m;
+  if (cm.code () < 0)
+    {
+      /*
+       don't want people relying on this kind of dimension. 
+       */
+      m.set_empty (false);
+      return m;
+    }
+  
+  Atom at (gh_list (char_scm_sym,
+                   gh_int2scm (cm.code ()),
+                   SCM_UNDEFINED));
+  at.font_ = ly_symbol (font_name_.ch_C());
+  at.magn_ = gh_int2scm (0);
+  
+  m.dim_ = cm.dimensions();
+  m.add_atom (&at);
+  return m;
 }
 
-void
-Lookup::print()const
+Molecule
+Lookup::notehead (int j, String type) const
 {
-    #ifndef NPRINT
-    DOUT << "Lookup: " << texsetting << " {\n";
-    symtables_->print();
-    DOUT << "}\n";
-    #endif
+  if (j > 2)
+    j = 2;
+
+  return afm_find (String ("noteheads-") + to_str (j) + type);
 }
 
-Symbol
-Lookup::text (String style, String text, int dir) const
+Molecule
+Lookup::simple_bar (String type, Real h, Paper_def* paper_l) const
 {
-    Array<String> a;
-    a.push (text);
-    Symbol tsym =  (*symtables_)("style")->lookup (style);
-    a[0] = substitute_args (tsym.tex,a);
-
-    Symbol s = (*symtables_)("align")->lookup (dir);
-    s.tex = substitute_args (s.tex,a);
-    s.dim = tsym.dim;
-    return s;
+  SCM thick = ly_symbol ("barthick_" + type);
+  Real w = 0.0;
+  
+  if (paper_l->scope_p_->elem_b (thick))
+    {
+      w = paper_l->get_realvar (thick);
+    }
+  else
+    {
+      programming_error ("No bar thickness set ! ");
+      w = 1 PT;
+    }
+  return filledbox (Box (Interval(0,w), Interval(-h/2, h/2)));
 }
 
+  
+Molecule
+Lookup::bar (String str, Real h, Paper_def *paper_l) const
+{
+  if (str == "bracket")
+    return staff_bracket (h);
+  else if (str == "brace")
+    {
+      Real staffht  = paper_l->get_var ("staffheight");
+      return staff_brace (h,staffht);
+    }
+  Real kern = paper_l->get_var ("bar_kern");
+  Real thinkern = paper_l->get_var ("bar_thinkern");
+
+  Molecule thin = simple_bar ("thin", h, paper_l);
+  Molecule thick = simple_bar ("thick", h, paper_l);
+  Molecule colon = afm_find ("dots-repeatcolon", paper_l);  
+
+  Molecule m;
+  
+  if (str == "")
+    {
+      return fill (Box (Interval(0, 0), Interval (-h/2, h/2)));
+    }
+  if (str == "scorepostbreak")
+    {
+      return simple_bar ("score", h, paper_l);
+    }
+  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;
+}
 
-Symbol
-Lookup::ball (int j) const
+Molecule 
+Lookup::beam (Real slope, Real width, Real thick) const
 {
-    if (j > 4)
-       j = 4;
+  Real height = slope * width; 
+  Real min_y = (0 <? height) - thick/2;
+  Real max_y = (0 >? height) + thick/2;
 
-    Symtable * st = (*symtables_)("balls");
-    return st->lookup (String (j));
+  
+  Molecule m;
+  Atom at
+     (gh_list (beam_scm_sym,
+                               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;
 }
 
-Symbol
-Lookup::rest (int j, bool o) const
+Molecule
+Lookup::clef (String st) const
 {
-    return (*symtables_)("rests")->lookup (String (j) + (o ? "o" : ""));
+  return afm_find (String ("clefs-" + st));
 }
 
-Symbol
-Lookup::fill (Box b) const
+SCM
+offset2scm (Offset o)
 {
-    Symbol s ((*symtables_)("param")->lookup ("fill"));
-    s.dim = b;
-    return s;
+  return gh_list (gh_double2scm (o[X_AXIS]), gh_double2scm(o[Y_AXIS]),
+                 SCM_UNDEFINED);
+}
+
+Molecule
+Lookup::dashed_slur (Array<Offset> controls, Real thick, Real dash) const
+{
+  assert (controls.size () == 8);
+  Offset d = controls[3] - controls[0];
+  
+  Real dx = d[X_AXIS];
+  Real dy = d[Y_AXIS];
+
+  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++)
+    {
+      sc[i] =  offset2scm (controls[i]);
+    }
+
+  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;
 }
 
-Symbol
-Lookup::accidental (int j) const
+Molecule
+Lookup::dots () const
 {
-    return (*symtables_)("accidentals")->lookup (String (j));
+  return afm_find (String ("dots-dot"));
 }
 
 
-Symbol
-Lookup::bar (String s, Real h) const
+
+Molecule
+Lookup::fill (Box b) const
 {
-    Array<String> a;
-    a.push (print_dimen (h));
-    Symbol ret=(*symtables_)("bars")->lookup (s);;
-    ret.tex = substitute_args (ret.tex, a);
-    ret.dim.y() = Interval (0, h);
-    return ret;
+  Molecule m;
+  m.dim_ = b;
+  return m;
 }
 
-Symbol
-Lookup::script (String s) const
+Molecule
+Lookup::rest (int j, bool o, String style) const
 {
-    return (*symtables_)("scripts")->lookup (s);
+  return afm_find (String ("rests-") + to_str (j) + (o ? "o" : "") + style);
 }
 
-Symbol
-Lookup::dynamic (String s) const
+
+Molecule
+Lookup::special_time_signature (String s, int n, int d, Paper_def*pap) const
 {
-    return (*symtables_)("dynamics")->lookup (s);
+  // First guess: s contains only the signature style
+  String symbolname = "timesig-" + s + to_str (n) + "/" + to_str (d);
+  
+  Molecule m = afm_find (symbolname, false);
+  if (!m.empty_b()) 
+    return m;
+
+  // Second guess: s contains the full signature name
+  m = afm_find ("timesig-"+s, false);
+  if (!m.empty_b ()) 
+    return m;
+
+  // Resort to default layout with numbers
+  return time_signature (n,d,pap);
 }
 
-Symbol
-Lookup::clef (String s) const
+Molecule
+Lookup::filledbox (Box b ) const
 {
-    return (*symtables_)("clefs")->lookup (s);
+  Molecule m;
+  
+  Atom at  (gh_list (filledbox_scm_sym,
+                    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;
 }
-Symbol
-Lookup::dots (int j) const
+
+
+
+/**
+   Magnification steps.  These are powers of 1.2. The numbers are
+ taken from Knuth's plain.tex: */
+
+
+/**
+   TODO: THIS IS UGLY.  Since the user has direct access to TeX
+   strings, we try some halfbaked attempt to detect TeX trickery.
+
+*/
+Molecule
+Lookup::text (String style, String text, Paper_def *paper_l) const
 {
-    if (j>3) {
-       j = 3;
-       warning ("max 3 dots"); // todo
+  Molecule m;
+  if (style.empty_b ())
+    style = "roman";
+  
+  int font_mag = 0;
+  Real font_h = paper_l->get_var ("font_normal");
+  if (paper_l->scope_p_->elem_b ("font_" + style))
+    {
+      font_h = paper_l->get_var ("font_" + style);
+    }
+
+
+  Real realmag = 1.0;
+  if (paper_l->scope_p_->elem_b ("magnification_" + style))
+    {
+      font_mag = (int)paper_l->get_var ("magnification_" + style);
+      realmag = pow (1.2, font_mag);
+    }
+
+  /*
+    UGH.
+  */
+  SCM l = gh_eval_str (("(style-to-cmr \"" + style + "\")").ch_C());
+  if (l != SCM_BOOL_F)
+    {
+      style = ly_scm2string (SCM_CDR(l)) +to_str  ((int)font_h);
+    }
+
+  Real w = 0;
+  Interval ydims (0,0);
+
+  Font_metric* afm_l = all_fonts_global_p->find_font (style);
+  DOUT << "\nChars: ";
+
+
+  int brace_count =0;
+  for (int i = 0; i < text.length_i (); i++) 
+    {
+      
+      if (text[i]=='\\') 
+       {
+         for (i++; (i < text.length_i ()) && isalpha(text[i]); i++)
+           ;
+         i--; // Compensate for the increment in the outer loop!
+       }
+      else
+       {
+         if (text[i] == '{')
+           brace_count ++;
+         else if (text[i] == '}')
+           brace_count --;
+          Character_metric *c = afm_l->get_char ((unsigned char)text[i],false);
+
+         w += c->dimensions()[X_AXIS].length ();
+         ydims.unite (c->dimensions()[Y_AXIS]);
+       }
     }
-    return (*symtables_)("dots")->lookup (j);
+
+  if(brace_count)
+    {
+      warning (_f ("Non-matching braces in text `%s', adding braces.", text.ch_C()));
+
+      if (brace_count < 0)
+       {
+         text = to_str ('{', -brace_count) + text;
+       }
+      else 
+       {
+         text = text + to_str ('}', brace_count);
+       }
+    }
+
+  ydims *= realmag;
+  m.dim_.x () = Interval (0, w*realmag);
+  m.dim_.y () = ydims;
+
+  
+  Atom at  (gh_list (text_scm_sym,
+                    gh_str02scm (text.ch_C()),
+                    SCM_UNDEFINED));
+  at.font_ = ly_symbol (style);
+  at.magn_ = gh_int2scm (font_mag);
+  
+  m.add_atom (&at);
+  return m;
+}
+  
+
+Molecule
+Lookup::time_signature (int num, int den, Paper_def *paper_l) const
+{
+  String sty = "number";
+  Molecule n (text (sty, to_str (num), paper_l));
+  Molecule d (text (sty, to_str (den), paper_l));
+  n.align_to (X_AXIS, CENTER);
+  d.align_to (X_AXIS, CENTER);
+  Molecule m;
+  if (den)
+    {
+      m.add_at_edge (Y_AXIS, UP, n, 0.0);
+      m.add_at_edge (Y_AXIS, DOWN, d, 0.0);
+    }
+  else
+    {
+      m = n;
+      m.align_to (Y_AXIS, CENTER);
+    }
+  return m;
 }
 
-Symbol
-Lookup::flag (int j) const
+Molecule
+Lookup::staff_brace (Real y, int staff_size) const
 {
-    return (*symtables_)("flags")->lookup (j);
+  Molecule m;
+  /*
+  (define (pianobrace y staffht)
+    (let* ((step 1.0)
+          (minht (* 2 staffht))
+          (maxht (* 7 minht))
+          )
+      (string-append
+       (select-font (string-append "feta-braces" (number->string (inexact->exact staffht))) 0)
+       (char (max 0 (/  (- (min y (- maxht step)) minht) step))))
+      )
+    )
+  */
+
+  Real step  = 1.0;
+  int minht  = 2 * staff_size;
+  int maxht = 7 *  minht;
+  int idx = int (((maxht - step) <? y - minht) / step);
+  idx = idx >? 0;
+  
+  SCM f =  ly_symbol (String ("feta-braces" + to_str (staff_size)));
+  SCM e =gh_list (char_scm_sym, gh_int2scm (idx), SCM_UNDEFINED);
+  Atom at  (e);
+  at.font_ = f;
+  
+  m.dim_[Y_AXIS] = Interval (-y/2,y/2);
+  m.dim_[X_AXIS] = Interval (0,0);
+  m.add_atom (&at);
+  return m;
 }
 
-Symbol
-Lookup::streepjes (int i) const
+Molecule
+Lookup::hairpin (Real width, Real height, Real thick, bool decresc, bool continued) const
 {
-    assert (i);
-    
-    int arg;
-    String idx;
-    
-    if (i < 0) {
-       idx = "botlines";
-       arg = -i;
-    } else {
-       arg = i;
-       idx = "toplines";
-    }
-    Symbol ret = (*symtables_)("streepjes")->lookup (idx);
-    
-    Array<String> a;
-    a.push (arg);
-    ret.tex = substitute_args (ret.tex, a);
-
-    return ret;
+  Molecule m;   
+
+  String hairpin = String (decresc ? "de" : "") + "crescendo";
+  Atom at  (gh_list (ly_symbol (hairpin),
+                    gh_double2scm (thick),
+                    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;
 }
 
-Symbol
-Lookup::hairpin (Real &wid, bool decresc) const
+Molecule
+Lookup::tuplet_bracket (Real dy , Real dx, Real thick, Real gap, Real interline_f, Direction dir) const
 {
-    int idx = int (rint (wid / 6 PT));
-    if (!idx) idx ++;
-    wid = idx*6 PT;
-    String idxstr = (decresc)? "decrescendosym" : "crescendosym";
-    Symbol ret=(*symtables_)("param")->lookup (idxstr);
-       
-    Array<String> a;
-    a.push (idx);
-    ret.tex = substitute_args (ret.tex, a);
-    ret.dim.x() = Interval (0,wid);
-    return ret;
+  Molecule m;
+
+  Atom at  (gh_list(tuplet_scm_sym,
+                   gh_double2scm (interline_f),
+                   gh_double2scm (gap),
+                   gh_double2scm (dx),
+                   gh_double2scm (dy),
+                   gh_double2scm (thick),
+                   gh_int2scm (dir),
+                   SCM_UNDEFINED));
+  m.add_atom (&at);
+
+  return m;
 }
 
-Symbol
-Lookup::linestaff (int lines, Real wid) const
+/*
+  Make a smooth curve along the points 
+ */
+Molecule
+Lookup::slur (Array<Offset> controls, Real linethick) const
 {
-    Real internote_f = paper_l_ ->internote_f();
-    Symbol s;
-    Real dy = (lines >0) ? (lines-1)*internote_f : 0;
-    s.dim = Box (Interval (0,wid), Interval (0,dy));
+  Offset  delta_off = controls[3]- controls[0];
+  Molecule m; 
 
-    Array<String> a;
-    a.push (lines);
-    a.push (print_dimen (wid));
+  SCM scontrols [8];
+  int indices[] = {5,6,7,4,1,2,3,0};
 
-    s.tex = (*symtables_)("param")->lookup ("linestaf").tex;
-    s.tex = substitute_args (s.tex, a);
+  for (int i= 0; i < 8; i++)
+    scontrols[i] = offset2scm (controls[indices[i]]);
 
-    return s;
-}
 
+  Atom at  (gh_list (ly_symbol ("bezier-sandwich"),
+                    ly_quote_scm (array_to_list (scontrols, 8)),
+                    gh_double2scm (linethick),
+                    SCM_UNDEFINED));
 
-Symbol
-Lookup::meter (Array<Scalar> a) const
-{
-    Symbol s;
-    s.dim.x() = Interval (0 PT, 10 PT);
-    s.dim.y() = Interval (0, 20 PT);   // todo
-    String src = (*symtables_)("param")->lookup ("meter").tex;
-    s.tex = substitute_args (src,a);
-    return s;    
+  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 (bracket_scm_sym,
+                     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;
+}
 
-Symbol
-Lookup::stem (Real y1,Real y2) const
+Molecule
+Lookup::volta (Real h, Real w, Real thick, bool vert_start, bool vert_end) const
 {
-    if (y1 > y2) {
-       Real t = y1;
-       y1 = y2;
-       y2 = t;
-    }
-    Symbol s;
-    
-    s.dim.x() = Interval (0,0);
-    s.dim.y() = Interval (y1,y2);
-    
-    Array<String> a;
-    a.push (print_dimen (y1));
-    a.push (print_dimen (y2));
-       
-    String src = (*symtables_)("param")->lookup ("stem").tex;
-    s.tex = substitute_args (src,a);
-    return s;
+  Molecule m; 
+
+  Atom at  (gh_list (volta_scm_sym,
+                    gh_double2scm (h),
+                    gh_double2scm (w),
+                    gh_double2scm (thick),
+                    gh_int2scm (vert_start),
+                    gh_int2scm (vert_end),
+                    SCM_UNDEFINED));
+
+  m.dim_[Y_AXIS] = Interval (- h/2, h/2);
+  m.dim_[X_AXIS] = Interval (0, w);
+
+  m.add_atom (&at);
+  return m;
 }
 
-/*
-  should be handled via TeX code and Lookup::bar()
- */
-Symbol
-Lookup::vbrace (Real &y) const
+Molecule
+Lookup::accordion (SCM s, Real interline_f) const
 {
-    if (y < 2* 20 PT) {
-       warning ( "piano brace too small (" + print_dimen (y)+ ")");
-       y = 2*20 PT;
+  Molecule m;
+  String sym = ly_scm2string(SCM_CAR(s));
+  String reg = ly_scm2string(SCM_CAR(SCM_CDR(s)));
+
+  if (sym == "Discant")
+    {
+      Molecule r = afm_find("scripts-accDiscant");
+      m.add_molecule(r);
+      if (reg.left_str(1) == "F")
+       {
+         Molecule d = afm_find("scripts-accDot");
+         d.translate_axis(interline_f * 2.5 PT, Y_AXIS);
+         m.add_molecule(d);
+         reg = reg.right_str(reg.length_i()-1);
+       }
+      int eflag = 0x00;
+      if (reg.left_str(3) == "EEE")
+       {
+         eflag = 0x07;
+         reg = reg.right_str(reg.length_i()-3);
+       }
+      else if (reg.left_str(2) == "EE")
+       {
+         eflag = 0x05;
+         reg = reg.right_str(reg.length_i()-2);
+       }
+      else if (reg.left_str(2) == "Eh")
+       {
+         eflag = 0x04;
+         reg = reg.right_str(reg.length_i()-2);
+       }
+      else if (reg.left_str(1) == "E")
+       {
+         eflag = 0x02;
+         reg = reg.right_str(reg.length_i()-1);
+       }
+      if (eflag & 0x02)
+       {
+         Molecule d = afm_find("scripts-accDot");
+         d.translate_axis(interline_f * 1.5 PT, Y_AXIS);
+         m.add_molecule(d);
+       }
+      if (eflag & 0x04)
+       {
+         Molecule d = afm_find("scripts-accDot");
+         d.translate_axis(interline_f * 1.5 PT, Y_AXIS);
+         d.translate_axis(0.8 * interline_f PT, X_AXIS);
+         m.add_molecule(d);
+       }
+      if (eflag & 0x01)
+       {
+         Molecule d = afm_find("scripts-accDot");
+         d.translate_axis(interline_f * 1.5 PT, Y_AXIS);
+         d.translate_axis(-0.8 * interline_f PT, X_AXIS);
+         m.add_molecule(d);
+       }
+      if (reg.left_str(2) == "SS")
+       {
+         Molecule d = afm_find("scripts-accDot");
+         d.translate_axis(0.5 * interline_f PT, Y_AXIS);
+         d.translate_axis(0.4 * interline_f PT, X_AXIS);
+         m.add_molecule(d);
+         d.translate_axis(-0.8 * interline_f PT, X_AXIS);
+         m.add_molecule(d);
+         reg = reg.right_str(reg.length_i()-2);
+       }
+      if (reg.left_str(1) == "S")
+       {
+         Molecule d = afm_find("scripts-accDot");
+         d.translate_axis(0.5 * interline_f PT, Y_AXIS);
+         m.add_molecule(d);
+         reg = reg.right_str(reg.length_i()-1);
+       }
+    }
+  else if (sym == "Freebase")
+    {
+      Molecule r = afm_find("scripts-accFreebase");
+      m.add_molecule(r);
+      if (reg.left_str(1) == "F")
+       {
+         Molecule d = afm_find("scripts-accDot");
+         d.translate_axis(interline_f * 1.5 PT, Y_AXIS);
+         m.add_molecule(d);
+         reg = reg.right_str(reg.length_i()-1);
+       }
+      if (reg == "E")
+       {
+         Molecule d = afm_find("scripts-accDot");
+         d.translate_axis(interline_f * 0.5 PT, Y_AXIS);
+         m.add_molecule(d);
+       }
     }
-    if (y > 67 * 2 PT) {
-       warning ( "piano brace too big (" + print_dimen (y)+ ")");      
-       y = 67 *2 PT;
+  else if (sym == "Bayanbase")
+    {
+      Molecule r = afm_find("scripts-accBayanbase");
+      m.add_molecule(r);
+      if (reg.left_str(1) == "T")
+       {
+         Molecule d = afm_find("scripts-accDot");
+         d.translate_axis(interline_f * 2.5 PT, Y_AXIS);
+         m.add_molecule(d);
+         reg = reg.right_str(reg.length_i()-1);
+       }
+      /* include 4' reed just for completeness. You don't want to use this. */
+      if (reg.left_str(1) == "F")
+       {
+         Molecule d = afm_find("scripts-accDot");
+         d.translate_axis(interline_f * 1.5 PT, Y_AXIS);
+         m.add_molecule(d);
+         reg = reg.right_str(reg.length_i()-1);
+       }
+      if (reg.left_str(2) == "EE")
+       {
+         Molecule d = afm_find("scripts-accDot");
+         d.translate_axis(interline_f * 0.5 PT, Y_AXIS);
+         d.translate_axis(0.4 * interline_f PT, X_AXIS);
+         m.add_molecule(d);
+         d.translate_axis(-0.8 * interline_f PT, X_AXIS);
+         m.add_molecule(d);
+         reg = reg.right_str(reg.length_i()-2);
+       }
+      if (reg.left_str(1) == "E")
+       {
+         Molecule d = afm_find("scripts-accDot");
+         d.translate_axis(interline_f * 0.5 PT, Y_AXIS);
+         m.add_molecule(d);
+         reg = reg.right_str(reg.length_i()-1);
+       }
     }
-    
-    int idx = int (rint ((y/2.0 - 20) + 148));
-    
-    Symbol s = (*symtables_)("param")->lookup ("brace");
+  else if (sym == "Stdbase")
     {
-       Array<String> a;
-       a.push (idx);
-       s.tex = substitute_args (s.tex,a);
-       s.dim.y() = Interval (0,y);
+      Molecule r = afm_find("scripts-accStdbase");
+      m.add_molecule(r);
+      if (reg.left_str(1) == "T")
+       {
+         Molecule d = afm_find("scripts-accDot");
+         d.translate_axis(interline_f * 3.5 PT, Y_AXIS);
+         m.add_molecule(d);
+         reg = reg.right_str(reg.length_i()-1);
+       }
+      if (reg.left_str(1) == "F")
+       {
+         Molecule d = afm_find("scripts-accDot");
+         d.translate_axis(interline_f * 2.5 PT, Y_AXIS);
+         m.add_molecule(d);
+         reg = reg.right_str(reg.length_i()-1);
+       }
+      if (reg.left_str(1) == "M")
+       {
+         Molecule d = afm_find("scripts-accDot");
+         d.translate_axis(interline_f * 2 PT, Y_AXIS);
+         d.translate_axis(interline_f PT, X_AXIS);
+         m.add_molecule(d);
+         reg = reg.right_str(reg.length_i()-1);
+       }
+      if (reg.left_str(1) == "E")
+       {
+         Molecule d = afm_find("scripts-accDot");
+         d.translate_axis(interline_f * 1.5 PT, Y_AXIS);
+         m.add_molecule(d);
+         reg = reg.right_str(reg.length_i()-1);
+       }
+      if (reg.left_str(1) == "S")
+       {
+         Molecule d = afm_find("scripts-accDot");
+         d.translate_axis(interline_f * 0.5 PT, Y_AXIS);
+         m.add_molecule(d);
+         reg = reg.right_str(reg.length_i()-1);
+       }
     }
+  /* ugh maybe try to use regular font for S.B. and B.B and only use one font
+     for the rectangle */
+  else if (sym == "SB")
     {
-       Array<String> a;
-       a.push (print_dimen (y/2));
-       a.push (print_dimen (0));
-       a.push (s.tex);
-       s.tex = substitute_args ("\\placebox{%}{%}{%}", a);
+      Molecule r = afm_find("scripts-accSB");
+      m.add_molecule(r);
     }
-
-       
-    return s;
+  else if (sym == "BB")
+    {
+      Molecule r = afm_find("scripts-accBB");
+      m.add_molecule(r);
+    }
+  else if (sym == "OldEE")
+    {
+      Molecule r = afm_find("scripts-accOldEE");
+      m.add_molecule(r);
+    }
+  else if (sym == "OldEES")
+    {
+      Molecule r = afm_find("scripts-accOldEES");
+      m.add_molecule(r);
+    }
+  return m;  
 }