]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/lookup.cc
release: 1.0.17
[lilypond.git] / lily / lookup.cc
index f67efd08bb63b88a5adf9712b32b663ae715c49f..8ba88483f5f080c3bf4fdf17d0a2274863318bf8 100644 (file)
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
+  (c)  1997--1998 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
-  
+      Read spacing info from AFMs
+      Glissando
 */
 
 #include "lookup.hh"
 #include "debug.hh"
+#include "dimensions.hh"
 #include "symtable.hh"
-#include "dimen.hh"
-#include "tex.hh"
 #include "scalar.hh"
 #include "paper-def.hh"
+#include "string-convert.hh"
+#include "main.hh"
 
-Lookup::Lookup()
+Lookup::Lookup ()
 {
   paper_l_ = 0;
-  texsetting = "\\unknowntexsetting";
-  symtables_ = new Symtables;
+  symtables_p_ = new Symtables;
+  afm_p_ =0;
 }
 
-Lookup::Lookup (Lookup const &s)
+Lookup::Lookup (Lookup consts)
 {
+  font_ = s.font_;
+  font_path_ = s.font_path_;
   paper_l_ = s.paper_l_;
-  texsetting = s.texsetting;
-  symtables_ = new Symtables (*s.symtables_);
+  symtables_p_ = new Symtables (*s.symtables_p_);
+  afm_p_ = 0;
 }
-Lookup::~Lookup()
+
+Lookup::Lookup (Symtables const& s)
 {
-  delete symtables_;
+  font_ = s.font_;
+  font_path_ = s.font_path_;
+  paper_l_ = 0;
+  symtables_p_ = new Symtables (s);
+  afm_p_ = 0;
 }
 
-void
-Lookup::add (String s, Symtable*p)
+Lookup::~Lookup ()
 {
-  symtables_->add (s, p);
+  delete afm_p_;
+  delete symtables_p_;
+}
+
+Atom
+Lookup::accidental (int j) const
+{
+  return afm_find (String ("accidentals") + String ("-") + to_str (j));
 }
 
 void
-Lookup::print() const
+Lookup::add (String s, Symtable*p)
 {
-#ifndef NPRINT
-  DOUT << "Lookup: " << texsetting << " {\n";
-  symtables_->print();
-  DOUT << "}\n";
-#endif
+  symtables_p_->add (s, p);
 }
 
 Atom
-Lookup::text (String style, String text, int dir) const
+Lookup::afm_find (String s, String str) const
 {
-  Array<String> a;
-  a.push (text);
-  Atom tsym =  (*symtables_)("style")->lookup (style);
-  a[0] = substitute_args (tsym.tex_,a);
+  if (!afm_p_)
+    {
+      *mlog << "[" << font_path_;
+      ( (Lookup*)this)->afm_p_ = new Adobe_font_metric (read_afm (font_path_));
+      *mlog << "]" << flush ;
+      DOUT << this->afm_p_->str ();
+    }
+  Adobe_font_char_metric m = afm_p_->find_char (s);
 
-  Atom s = (*symtables_)("align")->lookup (dir);
-  s.tex_ = substitute_args (s.tex_,a);
-  s.dim_ = tsym.dim_;
-  return s;
+  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;
+  a.str_ = String_convert::form_str (str.ch_C (), m.code ());
+  a.font_ = font_;
+  return a;
 }
 
-
-
 Atom
 Lookup::ball (int j) const
 {
   if (j > 2)
     j = 2;
 
-  Symtable * st = (*symtables_)("balls");
-  return st->lookup (String (j));
+  return afm_find (String ("balls") + String ("-") + to_str (j));
 }
 
 Atom
-Lookup::rest (int j, bool o) const
+Lookup::bar (String str, Real h) const
 {
-  return (*symtables_)("rests")->lookup (String (j) + (o ? "o" : ""));
+  Array<String> a;
+  a.push (print_dimen (h));
+  Atom s = (*symtables_p_) ("bars")->lookup (str);
+  s.str_ = substitute_args (s.str_, a);
+  s.dim_.y () = Interval (-h/2, h/2);
+  s.font_ = font_;
+  return s;
 }
 
-Atom
-Lookup::fill (Box b) const
+String
+Lookup::base_output_str () const
 {
-  Atom s ((*symtables_)("param")->lookup ("fill"));
-  s.dim_ = b;
-  return s;
+  assert (paper_l_);
+  String str = paper_l_->get_default_output ();
+
+  if (str.empty_b ())
+    {
+      str = default_outname_base_global;
+      int def = paper_l_->get_next_default_count ();
+      if (def)
+       str += "-" + to_str (def);
+    }
+  return str;
 }
 
-Atom
-Lookup::accidental (int j) const
+Atom 
+Lookup::beam (Real slope, Real width, Real thick) const
 {
-  return (*symtables_)("accidentals")->lookup (String (j));
+  Atom a (ps_beam (slope, width, thick));
+  Real height = slope * width; 
+  Real min_y = (0 <? height) - thick/2;
+  Real max_y = (0 >? height) + thick/2;
+  
+  a.dim_[X_AXIS] = Interval (0, width);
+  a.dim_[Y_AXIS] = Interval (min_y, max_y);
+  return a;
 }
 
-
-Atom
-Lookup::bar (String s, Real h) const
+String
+Lookup::character_str (int i) const
 {
-  Array<String> a;
-  a.push (print_dimen (h));
-  Atom ret=(*symtables_)("bars")->lookup (s);;
-  ret.tex_ = substitute_args (ret.tex_, a);
-  ret.dim_.y() = Interval (0, h);
-  return ret;
+  return to_str (i);
 }
 
 Atom
-Lookup::script (String s) const
+Lookup::clef (String st) const
 {
-  return (*symtables_)("scripts")->lookup (s);
+  return afm_find (String ("clefs") + String ("-") + st);
 }
 
 Atom
-Lookup::dynamic (String s) const
+Lookup::dots () const
 {
-  return (*symtables_)("dynamics")->lookup (s);
+  return afm_find (String ("dots") + String ("-") + String ("dot"));
 }
 
 Atom
-Lookup::clef (String s) const
+Lookup::dynamic (String st) const
 {
-  return (*symtables_)("clefs")->lookup (s);
+  return (*symtables_p_) ("dynamics")->lookup (st);
 }
+
 Atom
-Lookup::dots (int j) const
+Lookup::fill (Box b) const
 {
-  if (j>3) 
-    {
-      j = 3;
-      warning ("max 3 dots");  // todo
-    }
-  return (*symtables_)("dots")->lookup (j);
+  Atom a;
+  a.dim_ = b;
+  return a;
 }
 
 Atom
 Lookup::flag (int j, Direction d) const
 {
   char c = (d == UP) ? 'u' : 'd';
-  return (*symtables_)("flags")->lookup (c + String (j));
+  return afm_find (String ("flags") + String ("-") + to_str (c) + to_str (j));
 }
 
-Atom
-Lookup::streepjes (int type, int i) const
+void
+Lookup::print () const
 {
-  assert (i);
-  
-  int arg;
-  String idx;
-  
-  if (i < 0) 
-    {
-      idx = "botlines";
-      arg = -i;
-    }
-  else 
+#ifndef NPRINT
+  DOUT << "Lookup {\n";
+  symtables_p_->print ();
+  DOUT << "}\n";
+#endif
+}
+
+String
+Lookup::print_dimen (Real r) const
+{
+  String s = to_str (r, "%.3f");
+  if (s.index_i ("NaN") != -1)
     {
-      arg = i;
-      idx = "toplines";
+      warning (_ ("NaN"));
+      s = "0.0";
     }
+  return s;
+}
 
-  // ugh
-  Real w = ball (type).dim_[X_AXIS].length ();
-
-  Atom ret = (*symtables_)("streepjes")->lookup (idx);
-  
-  Array<String> a;
-  a.push (String (w) + "pt");
-  a.push (arg);
-  ret.tex_ = substitute_args (ret.tex_, a);
-
-  return ret;
+Atom
+Lookup::rest (int j, bool o) const
+{
+   return afm_find (String ("rests")
+                   + String ("-") + to_str (j) + (o ? "o" : ""));
 }
 
 Atom
-Lookup::hairpin (Real &wid, bool decresc) const
+Lookup::rule_symbol (Real height, Real width) const
 {
-  int idx = int (rint (wid / 6 PT));
-  if (!idx) idx ++;
-  wid = idx*6 PT;
-  String idxstr = (decresc)? "decrescendosym" : "crescendosym";
-  Atom 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;
+  Atom bs= (*symtables_p_) ("param")->lookup ("rule");
+  Array<String> args;
+  args.push (print_dimen (height));
+  args.push (print_dimen (width));
+  bs.str_ = substitute_args (bs.str_, args);
+  bs.dim_.x () = Interval (0, width);
+  bs.dim_.y () = Interval (0, height);
+  return bs;
 }
 
 Atom
-Lookup::linestaff (int lines, Real wid) const
+Lookup::script (String str) const
 {
-  Real internote_f = paper_l_ ->internote_f();
-  Atom s;
-  Real dy = (lines >0) ? (lines-1)*internote_f : 0;
-  s.dim_ = Box (Interval (0,wid), Interval (0,dy));
+  return afm_find (String ("scripts") + String ("-") + str);
+}
 
-  Array<String> a;
-  a.push (lines);
-  a.push (print_dimen (wid));
+Atom
+Lookup::special_time_signature (String s, Array<Scalar> arr) const
+{
+  String symbolname = "timesig-"+s+"%/%";
+  Atom a (afm_find (substitute_args (symbolname, arr)));
+  if (!a.empty ()) 
+    return a;
+  // Try if the full name was given
+  a = afm_find ("timesig-"+s);
+  if (!a.empty ()) 
+    return a;
+  // Resort to default layout with numbers
+  return time_signature (arr);
+}
 
-  s.tex_ = (*symtables_)("param")->lookup ("linestaf").tex_;
-  s.tex_ = substitute_args (s.tex_, a);
+static void
+substitute_arg (String& r, String arg)
+{
+  int p = r.index_i ('%');
+  if (p < 0)
+       return ;
 
-  return s;
+  r = r.left_str (p) + arg + r.right_str (r.length_i () - p - 1);
 }
 
-
-Atom
-Lookup::meter (Array<Scalar> a) const
+String
+Lookup::substitute_args (String source, Array<String> args) const
 {
-  Atom 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;    
+  String str (source);
+  for (int i = 0 ; i < args.size (); i++)
+    substitute_arg (str, args[i]);
+  return str;
 }
 
+String
+Lookup::substitute_args (String source, Array<Scalar> args) const
+{
+  Array<String> sv;
+  for (int i = 0 ; i < args.size (); i++)
+    sv.push (args[i]);
+  return substitute_args (source, sv);
+}
 
 Atom
-Lookup::stem (Real y1,Real y2) const
+Lookup::stem (Real y1, Real y2, String str) const
 {
-  if (y1 > y2) 
+  if (y1 > y2)
     {
       Real t = y1;
       y1 = y2;
       y2 = t;
     }
   Atom s;
-  
-  s.dim_.x() = Interval (0,0);
-  s.dim_.y() = Interval (y1,y2);
-  
+
+  s.dim_.x () = Interval (0,0);
+  s.dim_.y () = Interval (y1,y2);
+
   Array<String> a;
-  a.push (print_dimen (y1));
+
+  Real stem_width = paper_l_->get_var ("stemthickness");
+  a.push (print_dimen (-stem_width /2));
+  a.push (print_dimen (stem_width));
   a.push (print_dimen (y2));
-       
-  String src = (*symtables_)("param")->lookup ("stem").tex_;
-  s.tex_ = substitute_args (src,a);
+  a.push (print_dimen (-y1));
+
+  s.str_ = substitute_args (str, a);
+  s.font_ = font_;
+  return s;
+}
+
+Atom
+Lookup::streepje (int type) const
+{
+  if (type > 2)
+    type = 2;
+
+  return  afm_find ("balls" + String ("-") +to_str (type) + "l");
+}
+
+Atom
+Lookup::text (String style, String text) const
+{
+  Array<String> a;
+
+  a.push (text);
+  Atom s =  (*symtables_p_) ("style")->lookup (style);
+  s.str_ = substitute_args (s.str_,a);
+  s.font_ = font_;
+
+  return s;
+}
+
+Atom
+Lookup::time_signature (Array<Scalar> a) const
+{
+  Atom s ((*symtables_p_) ("param")->lookup ("time_signature"));
+  s.str_ = substitute_args (s.str_, a);
+
   return s;
 }
 
 /*
-  should be handled via Tex_ code and Lookup::bar()
+  should be handled via Tex_ code and Lookup::bar ()
  */
 Atom
 Lookup::vbrace (Real &y) const
 {
-  if (y < 2* 20 PT) 
+  Atom brace = (*symtables_p_) ("param")->lookup ( "brace");
+  Interval ydims = brace.dim_[Y_AXIS];
+  Real min_y = ydims[LEFT];
+  Real max_y = ydims[RIGHT];
+  Real step = 1.0 PT;
+  if (y < min_y)
     {
-      warning ("piano brace too small (" + print_dimen (y)+ ")");
-      y = 2*20 PT;
+      warning (_ ("piano brace") 
+       + " " + _ ("too small") +  " (" + print_dimen (y) + ")");
+      y = min_y;
     }
-  if (y > 67 * 2 PT) 
+  if (y > max_y)
     {
-      warning ("piano brace too big (" + print_dimen (y)+ ")");        
-      y = 67 *2 PT;
+      warning (_ ("piano brace")
+       + " " + _ ("too big") + " (" + print_dimen (y) + ")");
+      y = max_y;
     }
+
   
-  int idx = int (rint ((y/2.0 - 20) + 148));
+  int idx = int (rint ( (y- min_y)/step)) + 1;
   
-  Atom s = (*symtables_)("param")->lookup ("brace");
   {
     Array<String> a;
-    a.push (idx);
-    s.tex_ = substitute_args (s.tex_,a);
-    s.dim_.y() = Interval (0,y);
-  }
-  {
-    Array<String> a;
-    a.push (print_dimen (y/2));
-    a.push (print_dimen (0));
-    a.push (s.tex_);
-    s.tex_ = substitute_args ("\\placebox{%}{%}{%}", a);
+    a.push (character_str (idx));
+    brace.str_ = substitute_args (brace.str_,a);
+    brace.dim_[Y_AXIS] = Interval (-y/2,y/2);
   }
 
-       
-  return s;
+  brace.font_ = font_;
+
+  return brace;
 }
+
+