]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/lookup.cc
* lily/kpath.cc:
[lilypond.git] / lily / lookup.cc
index 8cab963897a8f7352225aefd2211377b90c116a8..f012ca6930259a173d3964d9b6941ac6e4502b1f 100644 (file)
@@ -3,12 +3,15 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1997--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 
   Jan Nieuwenhuizen <janneke@gnu.org>
 */
+
+#include "lookup.hh"
+
 #include <math.h>
-#include <ctype.h>
+#include <cctype>
 
 #include "line-interface.hh"
 #include "warn.hh"
 #include "file-path.hh"
 #include "main.hh"
 #include "lily-guile.hh"
-#include "stencil.hh"
-#include "lookup.hh"
 #include "font-metric.hh"
-#include "interval.hh"
 
 Stencil
 Lookup::dot (Offset p, Real radius)
@@ -49,7 +49,7 @@ Lookup::dot (Offset p, Real radius)
  *        /    |   v
  *       |    /
  *       |   /
- * (0,0) x  /slope=dy/dx
+ * (0, 0)x  /slope = dy/dx
  *       | /
  *       |/
  *
@@ -75,23 +75,28 @@ Lookup::beam (Real slope, Real width, Real thick, Real blot)
   return Stencil (b, at);
 }
 
+  
 Stencil
-Lookup::dashed_slur (Bezier b, Real thick, Real dash)
+Lookup::dashed_slur (Bezier b, Real thick, Real dash_period, Real dash_fraction)
 {
   SCM l = SCM_EOL;
-
-  for (int i= 4; i -- ;)
+  
+  Real on = dash_fraction * dash_period; 
+  Real off = dash_period - on; 
+  for (int i = 4; i -- ;)
     {
       l = scm_cons (ly_offset2scm (b.control_[i]), l);
     }
 
   SCM at = (scm_list_n (ly_symbol2scm ("dashed-slur"),
-                              scm_make_real (thick), 
-                              scm_make_real (dash),
-                              ly_quote_scm (l),
-                              SCM_UNDEFINED));
+                       scm_make_real (thick), 
+                       scm_make_real (on),
+                       scm_make_real (off),
+                       ly_quote_scm (l),
+                       SCM_UNDEFINED));
 
-  Box box (Interval (0,0),Interval (0,0));
+  Box box (Interval (0, 0), Interval (0, 0));
   return   Stencil (box, at);
 }
 
@@ -109,7 +114,7 @@ Lookup::horizontal_line (Interval w, Real th)
 
   Box box ;
   box[X_AXIS] = w;
-  box[Y_AXIS] = Interval (-th/2,th/2);
+  box[Y_AXIS] = Interval (-th/2, th/2);
 
   return Stencil (box, at);
 }
@@ -126,12 +131,12 @@ Lookup::filled_box (Box b)
 {
   SCM  at  = (scm_list_n (ly_symbol2scm ("filledbox"),
                     scm_make_real (-b[X_AXIS][LEFT]),
-                    scm_make_real (b[X_AXIS][RIGHT]),                 
+                    scm_make_real (b[X_AXIS][RIGHT]),                 
                     scm_make_real (-b[Y_AXIS][DOWN]),
-                    scm_make_real (b[Y_AXIS][UP]),                    
+                    scm_make_real (b[Y_AXIS][UP]),                    
                     SCM_UNDEFINED));
 
-  return Stencil (b,at);
+  return Stencil (b, at);
 }
 
 /*
@@ -155,7 +160,7 @@ Lookup::filled_box (Box b)
  * |       |            |       |     |
  * |                            |     |
  * x\_____/______________\_____/|_____v
- * |(0,0)                       |
+ * |(0, 0)                       |
  * |                            |
  * |                            |
  * |<-------------------------->|
@@ -181,7 +186,7 @@ Lookup::round_filled_box (Box b, Real blotdiameter)
                        scm_make_real (blotdiameter),
                        SCM_UNDEFINED));
 
-  return Stencil (b,at);
+  return Stencil (b, at);
 }
 
          
@@ -363,9 +368,9 @@ Lookup::slur (Bezier curve, Real curvethick, Real linethick)
   
   SCM scontrols[8];
 
-  for (int i=4; i--;)
+  for (int i =4; i--;)
     scontrols[ i ] = ly_offset2scm (back.control_[i]);
-  for (int i=4 ; i--;)
+  for (int i =4 ; i--;)
     scontrols[i+4] = ly_offset2scm (curve.control_[i]);
 
   /*
@@ -373,7 +378,7 @@ Lookup::slur (Bezier curve, Real curvethick, Real linethick)
    */
   int indices[]= {5, 6, 7, 4, 1, 2, 3, 0};
   SCM list = SCM_EOL;
-  for (int i= 8; i--;)
+  for (int i = 8; i--;)
     {
       list = scm_cons (scontrols[indices[i]], list);
     }
@@ -457,11 +462,11 @@ Lookup::accordion (SCM s, Real staff_space, Font_metric *fm)
 
   if (sym == "Discant")
     {
-      Stencil r = fm->find_by_name ("accordion-accDiscant");
+      Stencil r = fm->find_by_name ("accordion.accDiscant");
       m.add_stencil (r);
       if (reg.left_string (1) == "F")
        {
-         Stencil d = fm->find_by_name ("accordion-accDot");
+         Stencil d = fm->find_by_name ("accordion.accDot");
          d.translate_axis (staff_space * 2.5 PT, Y_AXIS);
          m.add_stencil (d);
          reg = reg.right_string (reg.length ()-1);
@@ -489,27 +494,27 @@ Lookup::accordion (SCM s, Real staff_space, Font_metric *fm)
        }
       if (eflag & 0x02)
        {
-         Stencil d = fm->find_by_name ("accordion-accDot");
+         Stencil d = fm->find_by_name ("accordion.accDot");
          d.translate_axis (staff_space * 1.5 PT, Y_AXIS);
          m.add_stencil (d);
        }
       if (eflag & 0x04)
        {
-         Stencil d = fm->find_by_name ("accordion-accDot");
+         Stencil 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_stencil (d);
        }
       if (eflag & 0x01)
        {
-         Stencil d = fm->find_by_name ("accordion-accDot");
+         Stencil 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_stencil (d);
        }
       if (reg.left_string (2) == "SS")
        {
-         Stencil d = fm->find_by_name ("accordion-accDot");
+         Stencil 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_stencil (d);
@@ -519,7 +524,7 @@ Lookup::accordion (SCM s, Real staff_space, Font_metric *fm)
        }
       if (reg.left_string (1) == "S")
        {
-         Stencil d = fm->find_by_name ("accordion-accDot");
+         Stencil d = fm->find_by_name ("accordion.accDot");
          d.translate_axis (0.5 * staff_space PT, Y_AXIS);
          m.add_stencil (d);
          reg = reg.right_string (reg.length ()-1);
@@ -527,29 +532,29 @@ Lookup::accordion (SCM s, Real staff_space, Font_metric *fm)
     }
   else if (sym == "Freebase")
     {
-      Stencil r = fm->find_by_name ("accordion-accFreebase");
+      Stencil r = fm->find_by_name ("accordion.accFreebase");
       m.add_stencil (r);
       if (reg.left_string (1) == "F")
        {
-         Stencil d = fm->find_by_name ("accordion-accDot");
+         Stencil d = fm->find_by_name ("accordion.accDot");
          d.translate_axis (staff_space * 1.5 PT, Y_AXIS);
          m.add_stencil (d);
          reg = reg.right_string (reg.length ()-1);
        }
       if (reg == "E")
        {
-         Stencil d = fm->find_by_name ("accordion-accDot");
+         Stencil d = fm->find_by_name ("accordion.accDot");
          d.translate_axis (staff_space * 0.5 PT, Y_AXIS);
          m.add_stencil (d);
        }
     }
   else if (sym == "Bayanbase")
     {
-      Stencil r = fm->find_by_name ("accordion-accBayanbase");
+      Stencil r = fm->find_by_name ("accordion.accBayanbase");
       m.add_stencil (r);
       if (reg.left_string (1) == "T")
        {
-         Stencil d = fm->find_by_name ("accordion-accDot");
+         Stencil d = fm->find_by_name ("accordion.accDot");
          d.translate_axis (staff_space * 2.5 PT, Y_AXIS);
          m.add_stencil (d);
          reg = reg.right_string (reg.length ()-1);
@@ -557,14 +562,14 @@ Lookup::accordion (SCM s, Real staff_space, Font_metric *fm)
       /* include 4' reed just for completeness. You don't want to use this. */
       if (reg.left_string (1) == "F")
        {
-         Stencil d = fm->find_by_name ("accordion-accDot");
+         Stencil d = fm->find_by_name ("accordion.accDot");
          d.translate_axis (staff_space * 1.5 PT, Y_AXIS);
          m.add_stencil (d);
          reg = reg.right_string (reg.length ()-1);
        }
       if (reg.left_string (2) == "EE")
        {
-         Stencil d = fm->find_by_name ("accordion-accDot");
+         Stencil 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_stencil (d);
@@ -574,7 +579,7 @@ Lookup::accordion (SCM s, Real staff_space, Font_metric *fm)
        }
       if (reg.left_string (1) == "E")
        {
-         Stencil d = fm->find_by_name ("accordion-accDot");
+         Stencil d = fm->find_by_name ("accordion.accDot");
          d.translate_axis (staff_space * 0.5 PT, Y_AXIS);
          m.add_stencil (d);
          reg = reg.right_string (reg.length ()-1);
@@ -582,25 +587,25 @@ Lookup::accordion (SCM s, Real staff_space, Font_metric *fm)
     }
   else if (sym == "Stdbase")
     {
-      Stencil r = fm->find_by_name ("accordion-accStdbase");
+      Stencil r = fm->find_by_name ("accordion.accStdbase");
       m.add_stencil (r);
       if (reg.left_string (1) == "T")
        {
-         Stencil d = fm->find_by_name ("accordion-accDot");
+         Stencil d = fm->find_by_name ("accordion.accDot");
          d.translate_axis (staff_space * 3.5 PT, Y_AXIS);
          m.add_stencil (d);
          reg = reg.right_string (reg.length ()-1);
        }
       if (reg.left_string (1) == "F")
        {
-         Stencil d = fm->find_by_name ("accordion-accDot");
+         Stencil d = fm->find_by_name ("accordion.accDot");
          d.translate_axis (staff_space * 2.5 PT, Y_AXIS);
          m.add_stencil (d);
          reg = reg.right_string (reg.length ()-1);
        }
       if (reg.left_string (1) == "M")
        {
-         Stencil d = fm->find_by_name ("accordion-accDot");
+         Stencil 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_stencil (d);
@@ -608,14 +613,14 @@ Lookup::accordion (SCM s, Real staff_space, Font_metric *fm)
        }
       if (reg.left_string (1) == "E")
        {
-         Stencil d = fm->find_by_name ("accordion-accDot");
+         Stencil d = fm->find_by_name ("accordion.accDot");
          d.translate_axis (staff_space * 1.5 PT, Y_AXIS);
          m.add_stencil (d);
          reg = reg.right_string (reg.length ()-1);
        }
       if (reg.left_string (1) == "S")
        {
-         Stencil d = fm->find_by_name ("accordion-accDot");
+         Stencil d = fm->find_by_name ("accordion.accDot");
          d.translate_axis (staff_space * 0.5 PT, Y_AXIS);
          m.add_stencil (d);
          reg = reg.right_string (reg.length ()-1);
@@ -625,22 +630,22 @@ Lookup::accordion (SCM s, Real staff_space, Font_metric *fm)
      for the rectangle */
   else if (sym == "SB")
     {
-      Stencil r = fm->find_by_name ("accordion-accSB");
+      Stencil r = fm->find_by_name ("accordion.accSB");
       m.add_stencil (r);
     }
   else if (sym == "BB")
     {
-      Stencil r = fm->find_by_name ("accordion-accBB");
+      Stencil r = fm->find_by_name ("accordion.accBB");
       m.add_stencil (r);
     }
   else if (sym == "OldEE")
     {
-      Stencil r = fm->find_by_name ("accordion-accOldEE");
+      Stencil r = fm->find_by_name ("accordion.accOldEE");
       m.add_stencil (r);
     }
   else if (sym == "OldEES")
     {
-      Stencil r = fm->find_by_name ("accordion-accOldEES");
+      Stencil r = fm->find_by_name ("accordion.accOldEES");
       m.add_stencil (r);
     }
   return m;  
@@ -653,7 +658,7 @@ Lookup::repeat_slash (Real w, Real s, Real t)
   SCM sl = scm_make_real (s);
   SCM thick = scm_make_real (t);
   SCM slashnodot = scm_list_n (ly_symbol2scm ("repeat-slash"),
-                           wid, sl, thick, SCM_UNDEFINED);
+                              wid, sl, thick, SCM_UNDEFINED);
 
   Box b (Interval (0, w + sqrt (sqr (t/s) + sqr (t))),
         Interval (0, w * s));
@@ -678,7 +683,7 @@ Lookup::bracket (Axis a, Interval iv, Real thick, Real protude, Real blot)
   b[other] = oi;
   m.add_stencil (round_filled_box (b, blot));
   b[a] = Interval (iv[DOWN], iv[DOWN] + thick);
-  m.add_stencil (round_filled_box (b,blot));
+  m.add_stencil (round_filled_box (b, blot));
 
   return m;
 }
@@ -693,7 +698,7 @@ Lookup::triangle (Interval iv, Real thick, Real protude)
 
   Offset z1(iv[LEFT], 0);
   Offset z2(iv[RIGHT], 0);
-  Offset z3(z2[X_AXIS]/2, protude);
+  Offset z3((z1 + z2)[X_AXIS]/2, protude);
 
   /*
     TODO: move Triangle to Line_interface ?
@@ -705,41 +710,3 @@ Lookup::triangle (Interval iv, Real thick, Real protude)
   return tri;
 }
 
-
-LY_DEFINE (ly_bracket ,"ly:bracket",
-         4, 0, 0,
-         (SCM a, SCM iv, SCM t, SCM p),
-         "Make a bracket in direction @var{a}. The extent of the bracket is " 
-         "given by @var{iv}. The wings protude by an amount of @var{p}, which "
-         "may be negative. The thickness is given by @var{t}.")
-{
-  SCM_ASSERT_TYPE (is_axis (a), a, SCM_ARG1, __FUNCTION__, "axis") ;
-  SCM_ASSERT_TYPE (is_number_pair (iv), iv, SCM_ARG2, __FUNCTION__, "number pair") ;
-  SCM_ASSERT_TYPE (scm_is_number (t), a, SCM_ARG3, __FUNCTION__, "number") ;
-  SCM_ASSERT_TYPE (scm_is_number (p), a, SCM_ARG4, __FUNCTION__, "number") ;
-
-
-  return Lookup::bracket ((Axis)scm_to_int (a), ly_scm2interval (iv),
-                         scm_to_double (t),
-                         scm_to_double (p),
-                         0.95 * scm_to_double (t)).smobbed_copy ();
-}
-
-
-
-LY_DEFINE (ly_filled_box ,"ly:round-filled-box",
-         3, 0, 0,
-         (SCM xext, SCM yext, SCM blot),
-         "Make a @code{Stencil} "
-         "that prints a black box of dimensions @var{xext}, "
-         "@var{yext} and roundness @var{blot}."
-         )
-{
-  SCM_ASSERT_TYPE (is_number_pair (xext), xext, SCM_ARG1, __FUNCTION__, "number pair") ;
-  SCM_ASSERT_TYPE (is_number_pair (yext), yext, SCM_ARG2, __FUNCTION__, "number pair") ;
-  SCM_ASSERT_TYPE (scm_is_number (blot), blot, SCM_ARG3, __FUNCTION__, "number") ;
-
-  return Lookup::round_filled_box (Box (ly_scm2interval (xext), ly_scm2interval (yext)),
-                                  scm_to_double (blot)).smobbed_copy ();
-}
-