]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/lookup.cc
release: 1.5.14
[lilypond.git] / lily / lookup.cc
index bc6af68d60112c5fc50df91e5750bd66e9398680..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 "font-metric.hh"
 
-
-Lookup::Lookup()
+Molecule 
+Lookup::beam (Real slope, Real width, Real thick) 
 {
-    texsetting = "\\unknowntexsetting";
-    symtables_ = new Symtables;
-}
+  Real height = slope * width; 
+  Real min_y = (0 <? height) - thick/2;
+  Real max_y = (0 >? height) + thick/2;
 
-Lookup::Lookup(Lookup const &s)
-{
-    texsetting = s.texsetting;
-    symtables_ = new Symtables(*s.symtables_);
-}
-Lookup::~Lookup()
-{
-    delete symtables_;
-}
+  
 
-void
-Lookup::add(String s, Symtable*p)
-{
-    symtables_->add(s, p);
-}
+  Box b (Interval (0, width),
+        Interval (min_y, max_y));
 
-void
-Lookup::print()const
-{
-    mtor << "Lookup: " << texsetting << " {\n";
-    symtables_->print();
-    mtor << "}\n";
+  
+  SCM at = scm_list_n (ly_symbol2scm ("beam"),
+                   gh_double2scm (width),
+                   gh_double2scm (slope),
+                   gh_double2scm (thick),
+                   SCM_UNDEFINED);
+  return Molecule (b, at);
 }
 
-Symbol
-Lookup::text(String style, String text, int dir) 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;
-}
 
 
-Real
-Lookup::internote_f() const
+Molecule
+Lookup::dashed_slur (Bezier b, Real thick, Real dash)
 {
-    return ball(4).dim.y.length()/2;
-}
+  SCM l = SCM_EOL;
 
-Symbol
-Lookup::ball(int j) const
-{
-    if (j > 4)
-       j = 4;
+  for (int i= 4; i -- ;)
+    {
+      l = gh_cons (ly_offset2scm (b.control_[i]), l);
+    }
 
-    Symtable * st = (*symtables_)("balls");
-    return st->lookup(String(j));
-}
+  SCM at = (scm_list_n (ly_symbol2scm ("dashed-slur"),
+                              gh_double2scm (thick), 
+                              gh_double2scm (dash),
+                              ly_quote_scm (l),
+                              SCM_UNDEFINED));
 
-Symbol
-Lookup::rest(int j) const
-{
-    return (*symtables_)("rests")->lookup(String(j));
+  Box box (Interval (0,0),Interval (0,0));
+  return   Molecule (box, at);
 }
 
-Symbol
-Lookup::fill(Box b) const
-{
-    Symbol s( (*symtables_)("param")->lookup("fill"));
-    s.dim = b;
-    return s;
-}
 
-Symbol
-Lookup::accidental(int j) const
-{
-    return (*symtables_)("accidentals")->lookup(String(j));
-}
 
 
-Symbol
-Lookup::bar(String s) const
+Molecule
+Lookup::blank (Box b) 
 {
-    return (*symtables_)("bars")->lookup(s);
+  return Molecule (b, SCM_EOL);
 }
 
-Symbol
-Lookup::script(String s) const
-{
-    return (*symtables_)("scripts")->lookup(s);
-}
 
-Symbol
-Lookup::dynamic(String s) const
+Molecule
+Lookup::filledbox (Box b) 
 {
-    return (*symtables_)("dynamics")->lookup(s);
+  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);
 }
 
-Symbol
-Lookup::clef(String s) const
+Molecule
+Lookup::frame (Box b, Real thick)
 {
-    return (*symtables_)("clefs")->lookup(s);
-}
-Symbol
-Lookup::dots(int j) const
-{
-    if (j>3) {
-       j = 3;
-       warning("max 3 dots");  // todo
+  Molecule m;
+  Direction d = LEFT;
+  Axis a = X_AXIS;
+  while (a < NO_AXES)
+    {
+      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);
     }
-    return (*symtables_)("dots")->lookup(j);
+  return m;
+  
 }
 
-Symbol
-Lookup::flag(int j) const
-{
-    return (*symtables_)("flags")->lookup(j);
-}
 
-Symbol
-Lookup::streepjes(int i) const
+/*
+  Make a smooth curve along the points 
+ */
+Molecule
+Lookup::slur (Bezier curve, Real curvethick, Real linethick) 
 {
-    assert(i);
-    
-    int arg;
-    String idx;
-    
-    if (i < 0) {
-       idx = "botlines";
-       arg = -i;
-    } else {
-       arg = i;
-       idx = "toplines";
+  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--;)
+    {
+      list = gh_cons (scontrols[indices[i]], list);
     }
-    Symbol ret = (*symtables_)("streepjes")->lookup(idx);
-    
-    Array<String> a;
-    a.push(arg);
-    ret.tex = substitute_args(ret.tex, a);
-
-    return ret;
-}
+  
+  
+  SCM at = (scm_list_n (ly_symbol2scm ("bezier-sandwich"),
+                    ly_quote_scm (list),
+                    gh_double2scm (linethick),
+                    SCM_UNDEFINED));
 
-Symbol
-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";
-    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;
+  Box b (curve.extent (X_AXIS), curve.extent (Y_AXIS));
+  return Molecule (b, at);
 }
 
-Symbol
-Lookup::linestaff(int lines, Real wid) const
+Molecule
+Lookup::accordion (SCM s, Real staff_space, Font_metric *fm) 
 {
-    Symbol s;
-    s.dim.x = Interval(0,wid);
-    Real dy = (lines >0) ? (lines-1)*internote_f()*2 : 0;
-    s.dim.y = 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);
-
-    return s;
+  Molecule m;
+  String sym = ly_scm2string (ly_car (s));
+  String reg = ly_scm2string (ly_car (ly_cdr (s)));
+
+  if (sym == "Discant")
+    {
+      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);
+       }
+    }
+  else if (sym == "Freebase")
+    {
+      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);
+       }
+    }
+  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;  
 }
 
-
-Symbol
-Lookup::meter(Array<Scalar> a) const
+/*
+  TODO: should use slope instead?  Angle gives nasty rad <-> degree
+  conversions.
+*/
+Molecule
+Lookup::repeat_slash (Real w, Real s, Real t)
 {
-    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;    
-}
+  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));
 
-Symbol
-Lookup::stem(Real y1,Real y2) 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;
-}
-
-Symbol
-Lookup::vbrace(Real &y) const
-{
-    if (y < 2* 20 PT) {
-       warning ( "piano brace too small (" + print_dimen(y)+ ")");
-       y = 2*20 PT;
-    }
-    if (y > 67 * 2 PT) {
-       warning ( "piano brace too big (" + print_dimen(y)+ ")");       
-       y = 67 *2 PT;
-    }
-    
-    int idx = (y/2.0 - 20 ) + 148;
-    
-    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;
+  return Molecule (b, slashnodot); //  http://slashnodot.org
 }