]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/lookup.cc
release: 1.1.37
[lilypond.git] / lily / lookup.cc
index 790ab2d34adf285e1464b4b1e6d601bacc864ab5..b4ae24acb55ebce0498034d1adb193cbc2f3a13d 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 <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"
+
+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()
+
+Lookup::Lookup ()
 {
-    paper_l_ = 0;
-    texsetting = "\\unknowntexsetting";
-    symtables_ = new Symtables;
+  paper_l_ = 0;
+  afm_l_ = 0;  
 }
 
-Lookup::Lookup(Lookup const &s)
+Lookup::Lookup (Lookup const& s)
 {
-    paper_l_ = s.paper_l_;
-    texsetting = s.texsetting;
-    symtables_ = new Symtables(*s.symtables_);
+  font_name_ = s.font_name_;
+  paper_l_ = 0;
+  afm_l_ = 0;  
 }
-Lookup::~Lookup()
+
+
+Molecule
+Lookup::ledger_line (Interval xwid) const
 {
-    delete symtables_;
+  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;
 }
 
-void
-Lookup::add(String s, Symtable*p)
+
+Molecule
+Lookup::accidental (int j, bool cautionary) const
 {
-    symtables_->add(s, p);
+  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::print()const
+
+
+Molecule
+Lookup::afm_find (String s, bool warn) const
 {
-    mtor << "Lookup: " << texsetting << " {\n";
-    symtables_->print();
-    mtor << "}\n";
+  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)
+    return m;
+    
+  Atom at (gh_list (char_scm_sym,
+                   gh_int2scm (cm.code ()),
+                   SCM_UNDEFINED));
+  at.font_ = ly_symbol (font_name_.ch_C());
+  m.dim_ = cm.dimensions();
+  m.add_atom (&at);
+  return m;
 }
 
-Symbol
-Lookup::text(String style, String text, int dir) const
+Molecule
+Lookup::notehead (int j, String type) 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;
+  if (j > 2)
+    j = 2;
+
+  return afm_find (String ("noteheads-") + to_str (j) + type);
 }
 
+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)));
+}
 
-Symbol
-Lookup::ball(int j) const
+  
+Molecule
+Lookup::bar (String str, Real h) const
 {
-    if (j > 4)
-       j = 4;
+  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");  
 
-    Symtable * st = (*symtables_)("balls");
-    return st->lookup(String(j));
+  Molecule m;
+  
+  if (str == "")
+    {
+      return fill (Box (Interval(0, 0), Interval (-h/2, h/2)));
+    }
+  if (str == "scorepostbreak")
+    {
+      return simple_bar ("score", h);
+    }
+  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::rest(int j, bool o) const
+Molecule 
+Lookup::beam (Real slope, Real width, Real thick) const
 {
-    return (*symtables_)("rests")->lookup(String(j) + (o ? "o" : "") );
+  Real height = slope * width; 
+  Real min_y = (0 <? height) - thick/2;
+  Real max_y = (0 >? height) + thick/2;
+
+  
+  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::fill(Box b) const
+Molecule
+Lookup::clef (String st) const
 {
-    Symbol s( (*symtables_)("param")->lookup("fill"));
-    s.dim = b;
-    return s;
+  return afm_find (String ("clefs-" + st));
 }
 
-Symbol
-Lookup::accidental(int j) const
+SCM
+offset2scm (Offset o)
 {
-    return (*symtables_)("accidentals")->lookup(String(j));
+  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::bar(String s, Real h) const
+Molecule
+Lookup::dots () 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;
+  return afm_find (String ("dots-dot"));
 }
 
-Symbol
-Lookup::script(String s) const
+
+
+Molecule
+Lookup::fill (Box b) const
 {
-    return (*symtables_)("scripts")->lookup(s);
+  Molecule m;
+  m.dim_ = b;
+  return m;
 }
 
-Symbol
-Lookup::dynamic(String s) const
+Molecule
+Lookup::flag (int j, Direction d) const
 {
-    return (*symtables_)("dynamics")->lookup(s);
+  char c = (d == UP) ? 'u' : 'd';
+  return  afm_find (String ("flags-") + to_str (c) + to_str (j));
 }
 
-Symbol
-Lookup::clef(String s) const
+Molecule
+Lookup::rest (int j, bool o) const
 {
-    return (*symtables_)("clefs")->lookup(s);
+  return afm_find (String ("rests-") + to_str (j) + (o ? "o" : ""));
 }
-Symbol
-Lookup::dots(int j) const
+
+Molecule
+Lookup::rule_symbol (Real height, Real width) const
 {
-    if (j>3) {
-       j = 3;
-       warning("max 3 dots");  // todo
-    }
-    return (*symtables_)("dots")->lookup(j);
+  Atom at  (gh_list (rulesym_scm_sym,
+                                        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;
 }
 
-Symbol
-Lookup::flag(int j) const
+Molecule
+Lookup::script (String str) const
 {
-    return (*symtables_)("flags")->lookup(j);
+  return afm_find (String ("scripts-") + str);
 }
 
-Symbol
-Lookup::streepjes(int i) const
+Molecule
+Lookup::special_time_signature (String s, int n, int d) 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);
+  // 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;
 
-    return ret;
+  // 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);
 }
 
-Symbol
-Lookup::hairpin(Real &wid, bool decresc) const
+Molecule
+Lookup::filledbox (Box b ) 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 (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::linestaff(int lines, Real wid) const
+Molecule
+Lookup::stem (Real y1, Real y2) const
 {
-    Real internote_f = paper_l_ ->internote_f();
-    Symbol s;
-    s.dim.x = Interval(0,wid);
-    Real dy = (lines >0) ? (lines-1)*internote_f : 0;
-    s.dim.y = Interval(0,dy);
+  if (y1 > y2)
+    {
+      Real t = y1;
+      y1 = y2;
+      y2 = t;
+    }
+  Real stem_width = paper_l_->get_var ("stemthickness");
+  return filledbox (Box (Interval (-stem_width/2,stem_width/2),
+                        Interval (y1, y2)));
+}
+
+
+
+/**
+   Magnification steps.  These are powers of 1.2. The numbers are
+ taken from Knuth's plain.tex: */
+static Real mag_steps[] = {1, 1, 1.200, 1.440, 1.7280,  2.074, 2.488};
+
 
-    Array<String> a;
-    a.push(lines);
-    a.push(print_dimen(wid));
 
-    s.tex = (*symtables_)("param")->lookup("linestaf").tex;
-    s.tex = substitute_args(s.tex, a);
+Molecule
+Lookup::text (String style, String text) const
+{
+  Molecule m;
+  
+  int font_mag = 1;
+  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);
+    }
+   
+  if (paper_l_->scope_p_->elem_b ("magnification_" + style))
+    {
+      font_mag = (int)paper_l_->get_var ("magnification_" + style);
+    }
+
+  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);
 
-    return s;
+  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]=='\\')
+       for (i++; (i < text.length_i ()) && isalpha(text[i]); i++)
+         ;
+      else
+       {
+          Character_metric *c = afm_l->get_char ((unsigned char)text[i],false);
+
+         w += c->dimensions()[X_AXIS].length ();
+         ydims.unite (c->dimensions()[Y_AXIS]);
+       }
+    }
+
+  if (font_mag > 1 && font_mag < 7 )
+    {
+      /* UGH  */ 
+      style = style + String(" scaled \\magstep ") + to_str (font_mag);
+      w *= mag_steps[font_mag];
+      ydims *= mag_steps[font_mag];
+    }
+
+  DOUT << "\n" << to_str (w) << "\n";
+  m.dim_.x () = Interval (0, w);
+  m.dim_.y () = ydims;
+
+  
+  Atom at  (gh_list (text_scm_sym,
+                    gh_str02scm (text.ch_C()),
+                    SCM_UNDEFINED));
+  at.font_ = ly_symbol (style);
+  
+  m.add_atom (&at);
+  return m;
 }
+  
 
+/*
+ */
+Molecule
+Lookup::time_signature (int num, int den) const
+{
+  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)
+    {
+      m.add_at_edge (Y_AXIS, UP, n, 0.0);
+      m.add_at_edge (Y_AXIS, DOWN, d, 0.0);
+    }
+  else
+    {
+      m = n;
+      m.do_center (Y_AXIS);
+    }
+  return m;
+}
 
-Symbol
-Lookup::meter(Array<Scalar> a) const
+Molecule
+Lookup::staff_brace (Real y) 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;    
+  Molecule m;
+  
+  Atom at  (gh_list (pianobrace_scm_sym,
+                      gh_double2scm (y),
+                      SCM_UNDEFINED
+                      ));
+  
+  m.dim_[Y_AXIS] = Interval (-y/2,y/2);
+  m.dim_[X_AXIS] = Interval (0,0);
+  m.add_atom (&at);
+  return m;
 }
 
+Molecule
+Lookup::hairpin (Real width, bool decresc, bool continued) const
+{
+  Molecule m;   
+  Real height = paper_l_->staffheight_f () / 6;
+
+  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;
+}
 
-Symbol
-Lookup::stem(Real y1,Real y2) const
+Molecule
+Lookup::plet (Real dy , Real dx, Direction dir) const
 {
-    if (y1 > y2) {
-       Real t = y1;
-       y1 = y2;
-       y2 = t;
+  Molecule m;
+  SCM thick = tuplet_thick_scm_sym;
+  Real t = 0.1 PT;
+  if (paper_l_->scope_p_->elem_b (thick))
+    {
+      t = paper_l_->get_realvar (thick);
     }
-    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;
+  
+  Atom at  (gh_list(tuplet_scm_sym,
+                     gh_double2scm (dx),
+                     gh_double2scm (dy),
+                     gh_double2scm (t),
+                     gh_int2scm (dir),
+                     SCM_UNDEFINED));
+m.add_atom (&at);
+
+  return m;
 }
 
-Symbol
-Lookup::vbrace( Real &y ) const
+/*
+  Make a smooth curve along the points 
+ */
+Molecule
+Lookup::slur (Array<Offset> controls) const
 {
-    if ( y < 2 * 20 PT ) {
-       warning( "staff brace too small (" + print_dimen( y ) + ")" );
-       y = 2 * 20 PT;
-    }
-    if ( y > 2 * 67 PT ) {
-       warning( "staff brace too big (" + print_dimen( y ) + ")" );
-       y = 2 * 67 PT;
+  Offset  delta_off = controls[3]- controls[0];
+  Molecule m; 
+
+  SCM scontrols [8];
+  int indices[] = {5,6,7,4,1,2,3,0};
+
+  for (int i= 0; i < 8; i++)
+    scontrols[i] = offset2scm (controls[indices[i]]);
+
+
+  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 (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;
+}
+
+Molecule
+Lookup::volta (Real w, bool last_b) const
+{
+  Molecule m; 
+  SCM thick = volta_thick_scm_sym;
+  Real t = 0.1 PT;
+  if (paper_l_->scope_p_->elem_b (thick))
+    {
+      t = paper_l_->get_realvar (thick);
     }
-    
-    int idx = int( rint( y/2.0 - 20 ) );
-    
-    Symbol s = (*symtables_)("param")->lookup("brace");
-    
-    Array<String> a;
-    a.push(idx);
-    s.tex = substitute_args(s.tex,a);
-    s.dim.y = Interval(0,y);
-    return s;
+  Atom at  (gh_list (volta_scm_sym,
+                      gh_double2scm (w),
+                      gh_double2scm (t),
+                      gh_int2scm (last_b),
+                      SCM_UNDEFINED));
+
+  Real interline_f = paper_l_->get_realvar (interline_scm_sym);
+
+  m.dim_[Y_AXIS] = Interval (-interline_f, interline_f);
+  m.dim_[X_AXIS] = Interval (0, w);
+
+  m.add_atom (&at);
+  return m;
 }
+
+