]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/lookup.cc
release: 1.5.14
[lilypond.git] / lily / lookup.cc
index 333072ad2f94c9a27b372b539840b4054f69ffc2..036ba8895944abbbd2dd12bed515371f0d2aa64b 100644 (file)
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
+  (c)  1997--2001 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 "warn.hh"
+#include "dimensions.hh"
+#include "bezier.hh"
+#include "string-convert.hh"
+#include "file-path.hh"
+#include "main.hh"
+#include "lily-guile.hh"
+#include "molecule.hh"
 #include "lookup.hh"
-#include "debug.hh"
-#include "symtable.hh"
-#include "dimen.hh"
-#include "tex.hh"
-#include "scalar.hh"
-#include "paper-def.hh"
-
-Lookup::Lookup()
-{
-  paper_l_ = 0;
-  texsetting = "\\unknowntexsetting";
-  symtables_ = new Symtables;
-}
+#include "font-metric.hh"
 
-Lookup::Lookup (Lookup const &s)
+Molecule 
+Lookup::beam (Real slope, Real width, Real thick) 
 {
-  paper_l_ = s.paper_l_;
-  texsetting = s.texsetting;
-  symtables_ = new Symtables (*s.symtables_);
-}
-Lookup::~Lookup()
-{
-  delete symtables_;
-}
+  Real height = slope * width; 
+  Real min_y = (0 <? height) - thick/2;
+  Real max_y = (0 >? height) + thick/2;
 
-void
-Lookup::add (String s, Symtable*p)
-{
-  symtables_->add (s, p);
-}
+  
 
-void
-Lookup::print() const
-{
-#ifndef NPRINT
-  DOUT << "Lookup: " << texsetting << " {\n";
-  symtables_->print();
-  DOUT << "}\n";
-#endif
-}
+  Box b (Interval (0, width),
+        Interval (min_y, max_y));
 
-Atom
-Lookup::text (String style, String text, int dir) const
-{
-  Array<String> a;
-  a.push (text);
-  Atom tsym =  (*symtables_)("style")->lookup (style);
-  a[0] = substitute_args (tsym.tex_,a);
-
-  Atom s = (*symtables_)("align")->lookup (dir);
-  s.tex_ = substitute_args (s.tex_,a);
-  s.dim_ = tsym.dim_;
-  return s;
+  
+  SCM at = scm_list_n (ly_symbol2scm ("beam"),
+                   gh_double2scm (width),
+                   gh_double2scm (slope),
+                   gh_double2scm (thick),
+                   SCM_UNDEFINED);
+  return Molecule (b, at);
 }
 
 
 
-Atom
-Lookup::ball (int j) const
+Molecule
+Lookup::dashed_slur (Bezier b, Real thick, Real dash)
 {
-  if (j > 2)
-    j = 2;
+  SCM l = SCM_EOL;
 
-  Symtable * st = (*symtables_)("balls");
-  return st->lookup (String (j));
-}
-
-Atom
-Lookup::rest (int j, bool o) const
-{
-  return (*symtables_)("rests")->lookup (String (j) + (o ? "o" : ""));
-}
+  for (int i= 4; i -- ;)
+    {
+      l = gh_cons (ly_offset2scm (b.control_[i]), l);
+    }
 
-Atom
-Lookup::fill (Box b) const
-{
-  Atom s ((*symtables_)("param")->lookup ("fill"));
-  s.dim_ = b;
-  return s;
-}
+  SCM at = (scm_list_n (ly_symbol2scm ("dashed-slur"),
+                              gh_double2scm (thick), 
+                              gh_double2scm (dash),
+                              ly_quote_scm (l),
+                              SCM_UNDEFINED));
 
-Atom
-Lookup::accidental (int j) const
-{
-  return (*symtables_)("accidentals")->lookup (String (j));
+  Box box (Interval (0,0),Interval (0,0));
+  return   Molecule (box, at);
 }
 
 
-Atom
-Lookup::bar (String s, Real h) 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;
-}
 
-Atom
-Lookup::script (String s) const
-{
-  return (*symtables_)("scripts")->lookup (s);
-}
 
-Atom
-Lookup::dynamic (String s) const
+Molecule
+Lookup::blank (Box b) 
 {
-  return (*symtables_)("dynamics")->lookup (s);
+  return Molecule (b, SCM_EOL);
 }
 
-Atom
-Lookup::clef (String s) const
-{
-  return (*symtables_)("clefs")->lookup (s);
-}
-Atom
-Lookup::dots () const
-{
-  return (*symtables_)("dots")->lookup ("dot");
-}
 
-Atom
-Lookup::flag (int j, Direction d) const
+Molecule
+Lookup::filledbox (Box b) 
 {
-  char c = (d == UP) ? 'u' : 'd';
-  return (*symtables_)("flags")->lookup (c + String (j));
+  SCM  at  = (scm_list_n (ly_symbol2scm ("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));
+
+  return Molecule (b,at);
 }
 
-Atom
-Lookup::streepjes (int type, int i) const
+Molecule
+Lookup::frame (Box b, Real thick)
 {
-  assert (i);
-  
-  int arg;
-  String idx;
-  
-  if (i < 0) 
-    {
-      idx = "botlines";
-      arg = -i;
-    }
-  else 
+  Molecule m;
+  Direction d = LEFT;
+  Axis a = X_AXIS;
+  while (a < NO_AXES)
     {
-      arg = i;
-      idx = "toplines";
+      do
+       {
+         Axis o = Axis ((a+1)%NO_AXES);
+
+         Box edges;
+         edges[a] = b[a][d] + 0.5 * thick * Interval (-1, 1);
+         edges[o][DOWN] = b[o][DOWN] - thick/2;
+         edges[o][UP] = b[o][UP] + thick/2;      
+         
+         
+         m.add_molecule (filledbox (edges));
+       }
+      while (flip (&d) != LEFT);
     }
-
-  // ugh
-  Real w = ball (type).dim_[X_AXIS].length ();
-
-  Atom ret = (*symtables_)("streepjes")->lookup (idx);
+  return m;
   
-  Array<String> a;
-  a.push (String (w) + "pt");
-  a.push (arg);
-  ret.tex_ = substitute_args (ret.tex_, a);
-
-  return ret;
-}
-
-Atom
-Lookup::hairpin (Real &wid, bool decresc) 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
-Lookup::linestaff (int lines, Real interline_f, Real wid) const
-{
-  Atom s;
-  Real dy = (lines >0) ? (lines-1)*interline_f : 0;
-  s.dim_ = Box (Interval (0,wid), Interval (0,dy));
-
-  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);
-
 
-  s.translate_axis (-s.extent ()[Y_AXIS].center (), Y_AXIS);
-
-  return s;
-}
-
-
-Atom
-Lookup::meter (Array<Scalar> a) const
-{
-  Atom s((*symtables_)("param")->lookup ("meter"));
-  s.tex_ = substitute_args (s.tex_,a);
-  return s;    
-}
-
-
-Atom
-Lookup::stem (Real y1,Real y2) const
+/*
+  Make a smooth curve along the points 
+ */
+Molecule
+Lookup::slur (Bezier curve, Real curvethick, Real linethick) 
 {
-  if (y1 > y2) 
+  Real alpha = (curve.control_[3] - curve.control_[0]).arg ();
+  Bezier back = curve;
+
+  back.reverse ();
+  back.control_[1] += curvethick * complex_exp (Offset (0, alpha + M_PI/2));
+  back.control_[2] += curvethick * complex_exp (Offset (0, alpha + M_PI/2));  
+
+  SCM scontrols[8];
+
+  for (int i=4; i--;)
+    scontrols[ i ] = ly_offset2scm (back.control_[i]);
+  for (int i=4 ; i--;)
+    scontrols[i+4] = ly_offset2scm (curve.control_[i]);
+
+  /*
+    Need the weird order b.o. the way PS want its arguments  
+   */
+  int indices[]= {5, 6, 7, 4, 1, 2, 3, 0};
+  SCM list = SCM_EOL;
+  for (int i= 8; i--;)
     {
-      Real t = y1;
-      y1 = y2;
-      y2 = t;
+      list = gh_cons (scontrols[indices[i]], list);
     }
-  Atom 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;
+  SCM at = (scm_list_n (ly_symbol2scm ("bezier-sandwich"),
+                    ly_quote_scm (list),
+                    gh_double2scm (linethick),
+                    SCM_UNDEFINED));
+
+  Box b (curve.extent (X_AXIS), curve.extent (Y_AXIS));
+  return Molecule (b, at);
 }
 
-/*
-  should be handled via Tex_ code and Lookup::bar()
- */
-Atom
-Lookup::vbrace (Real &y) const
+Molecule
+Lookup::accordion (SCM s, Real staff_space, Font_metric *fm) 
 {
-  if (y < 2* 20 PT) 
+  Molecule m;
+  String sym = ly_scm2string (ly_car (s));
+  String reg = ly_scm2string (ly_car (ly_cdr (s)));
+
+  if (sym == "Discant")
     {
-      warning ("piano brace too small (" + print_dimen (y)+ ")");
-      y = 2*20 PT;
+      Molecule r = fm->find_by_name ("accordion-accDiscant");
+      m.add_molecule (r);
+      if (reg.left_str (1) == "F")
+       {
+         Molecule d = fm->find_by_name ("accordion-accDot");
+         d.translate_axis (staff_space * 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 = fm->find_by_name ("accordion-accDot");
+         d.translate_axis (staff_space * 1.5 PT, Y_AXIS);
+         m.add_molecule (d);
+       }
+      if (eflag & 0x04)
+       {
+         Molecule d = fm->find_by_name ("accordion-accDot");
+         d.translate_axis (staff_space * 1.5 PT, Y_AXIS);
+         d.translate_axis (0.8 * staff_space PT, X_AXIS);
+         m.add_molecule (d);
+       }
+      if (eflag & 0x01)
+       {
+         Molecule d = fm->find_by_name ("accordion-accDot");
+         d.translate_axis (staff_space * 1.5 PT, Y_AXIS);
+         d.translate_axis (-0.8 * staff_space PT, X_AXIS);
+         m.add_molecule (d);
+       }
+      if (reg.left_str (2) == "SS")
+       {
+         Molecule d = fm->find_by_name ("accordion-accDot");
+         d.translate_axis (0.5 * staff_space PT, Y_AXIS);
+         d.translate_axis (0.4 * staff_space PT, X_AXIS);
+         m.add_molecule (d);
+         d.translate_axis (-0.8 * staff_space PT, X_AXIS);
+         m.add_molecule (d);
+         reg = reg.right_str (reg.length_i ()-2);
+       }
+      if (reg.left_str (1) == "S")
+       {
+         Molecule d = fm->find_by_name ("accordion-accDot");
+         d.translate_axis (0.5 * staff_space PT, Y_AXIS);
+         m.add_molecule (d);
+         reg = reg.right_str (reg.length_i ()-1);
+       }
     }
-  if (y > 67 * 2 PT) 
+  else if (sym == "Freebase")
     {
-      warning ("piano brace too big (" + print_dimen (y)+ ")");        
-      y = 67 *2 PT;
+      Molecule r = fm->find_by_name ("accordion-accFreebase");
+      m.add_molecule (r);
+      if (reg.left_str (1) == "F")
+       {
+         Molecule d = fm->find_by_name ("accordion-accDot");
+         d.translate_axis (staff_space * 1.5 PT, Y_AXIS);
+         m.add_molecule (d);
+         reg = reg.right_str (reg.length_i ()-1);
+       }
+      if (reg == "E")
+       {
+         Molecule d = fm->find_by_name ("accordion-accDot");
+         d.translate_axis (staff_space * 0.5 PT, Y_AXIS);
+         m.add_molecule (d);
+       }
     }
-  
-  int idx = int (rint ((y/2.0 - 20) + 148));
-  
-  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);
-  }
-
-       
-  return s;
+  else if (sym == "Bayanbase")
+    {
+      Molecule r = fm->find_by_name ("accordion-accBayanbase");
+      m.add_molecule (r);
+      if (reg.left_str (1) == "T")
+       {
+         Molecule d = fm->find_by_name ("accordion-accDot");
+         d.translate_axis (staff_space * 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 = fm->find_by_name ("accordion-accDot");
+         d.translate_axis (staff_space * 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 = fm->find_by_name ("accordion-accDot");
+         d.translate_axis (staff_space * 0.5 PT, Y_AXIS);
+         d.translate_axis (0.4 * staff_space PT, X_AXIS);
+         m.add_molecule (d);
+         d.translate_axis (-0.8 * staff_space PT, X_AXIS);
+         m.add_molecule (d);
+         reg = reg.right_str (reg.length_i ()-2);
+       }
+      if (reg.left_str (1) == "E")
+       {
+         Molecule d = fm->find_by_name ("accordion-accDot");
+         d.translate_axis (staff_space * 0.5 PT, Y_AXIS);
+         m.add_molecule (d);
+         reg = reg.right_str (reg.length_i ()-1);
+       }
+    }
+  else if (sym == "Stdbase")
+    {
+      Molecule r = fm->find_by_name ("accordion-accStdbase");
+      m.add_molecule (r);
+      if (reg.left_str (1) == "T")
+       {
+         Molecule d = fm->find_by_name ("accordion-accDot");
+         d.translate_axis (staff_space * 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 = fm->find_by_name ("accordion-accDot");
+         d.translate_axis (staff_space * 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 = fm->find_by_name ("accordion-accDot");
+         d.translate_axis (staff_space * 2 PT, Y_AXIS);
+         d.translate_axis (staff_space PT, X_AXIS);
+         m.add_molecule (d);
+         reg = reg.right_str (reg.length_i ()-1);
+       }
+      if (reg.left_str (1) == "E")
+       {
+         Molecule d = fm->find_by_name ("accordion-accDot");
+         d.translate_axis (staff_space * 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 = fm->find_by_name ("accordion-accDot");
+         d.translate_axis (staff_space * 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")
+    {
+      Molecule r = fm->find_by_name ("accordion-accSB");
+      m.add_molecule (r);
+    }
+  else if (sym == "BB")
+    {
+      Molecule r = fm->find_by_name ("accordion-accBB");
+      m.add_molecule (r);
+    }
+  else if (sym == "OldEE")
+    {
+      Molecule r = fm->find_by_name ("accordion-accOldEE");
+      m.add_molecule (r);
+    }
+  else if (sym == "OldEES")
+    {
+      Molecule r = fm->find_by_name ("accordion-accOldEES");
+      m.add_molecule (r);
+    }
+  return m;  
+}
+
+/*
+  TODO: should use slope instead?  Angle gives nasty rad <-> degree
+  conversions.
+*/
+Molecule
+Lookup::repeat_slash (Real w, Real s, Real t)
+{
+  SCM wid = gh_double2scm (w);
+  SCM sl = gh_double2scm (s);
+  SCM thick = gh_double2scm (t);
+  SCM slashnodot = scm_list_n (ly_symbol2scm ("repeat-slash"),
+                           wid, sl, thick, SCM_UNDEFINED);
+
+  Box b (Interval (0, w + sqrt (sqr(t/s) + sqr (t))),
+        Interval (0, w * s));
+
+  return Molecule (b, slashnodot); //  http://slashnodot.org
 }