]> git.donarmstrong.com Git - lilypond.git/commitdiff
Revert "Avoid excessive number of dots in chords (#3179)."
authorKeith OHara <k-ohara5a5a@oco.net>
Sat, 6 Apr 2013 23:00:03 +0000 (16:00 -0700)
committerKeith OHara <k-ohara5a5a@oco.net>
Mon, 8 Apr 2013 06:05:50 +0000 (23:05 -0700)
This reverts commit f0fbdb3f07ef9028c6a256b9e1fd1db217ef8799.

Conflicts:

input/regression/chord-dots.ly

input/regression/chord-dots.ly [deleted file]
lily/dot-column.cc
scm/define-grob-properties.scm
scm/define-grobs.scm

diff --git a/input/regression/chord-dots.ly b/input/regression/chord-dots.ly
deleted file mode 100644 (file)
index cc02f31..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-\version "2.17.14"
-
-\header {
-  texidoc =
-"Property @code{chord-dots}: If set, remove dots which the
-@code{DotColumn} algorithm would vertically position too far away from
-note heads."
-}
-
-\layout{ ragged-right = ##t }
-
-
-\relative c'' {
-  \override Score.DotColumn.chord-dots = ##f
-  << { <d e f g a>4. } \\
-     { <a, b c d e>4. } >>
-
-  \override Score.DotColumn.chord-dots = ##t
-  << { <d' e f g a>4. } \\
-     { <a, b c d e>4. } >>
-}
index 012808f289d27b8f1d4991e3b492bd59c060da72..6cba432639deb7f8fd899a53a577987253787762 100644 (file)
@@ -60,7 +60,6 @@ Dot_column::calc_positioning_done (SCM smob)
     = extract_grob_array (me, "dots");
 
   vector<Grob *> main_heads;
-  vector<Interval> allowed_y_positions;
   Real ss = 0;
 
   Grob *commonx = me;
@@ -74,35 +73,7 @@ Dot_column::calc_positioning_done (SCM smob)
           commonx = stem->common_refpoint (commonx, X_AXIS);
 
           if (Stem::first_head (stem) == n)
-            {
-              main_heads.push_back (n);
-
-              // Get vertical interval of the chord's notehead positions.
-              // We widen this interval since dots always sit between staff
-              // lines.  Be careful to make it work also for unusual
-              // overrides of `NoteHead.Y-offset'.
-              //
-              // Possible solutions to improve this code (namely, to handle
-              // the `staff-position' property also) -- in case there is
-              // ever the desire or necessity to do so -- can be found in
-              // the Rietveld comments at
-              //
-              //   https://codereview.appspot.com/7319049
-
-              Interval hp = Stem::head_positions (stem);
-
-              int top = int (ceil (hp[UP]));
-              if (Staff_symbol_referencer::on_line (stem, top))
-                top += 1;
-              hp[UP] = top;
-
-              int bottom = int (floor (hp[DOWN]));
-              if (Staff_symbol_referencer::on_line (stem, bottom))
-                bottom -= 1;
-              hp[DOWN] = bottom;
-
-              allowed_y_positions.push_back (hp);
-            }
+            main_heads.push_back (n);
         }
     }
 
@@ -223,45 +194,6 @@ Dot_column::calc_positioning_done (SCM smob)
 
   problem.register_configuration (cfg);
 
-  // If in a chord, remove dots which have vertical positions above or below
-  // the topmost or bottommost note, respectively ([Gould], p. 56).
-  // Note that a dot configuration can contain more than a single chord or
-  // rest (the latter gets ignored).
-  //
-  // The dot positioning algorithm vertically shifts dots; it thus can
-  // happen that, say, a dot of the upper voice's chord is positioned
-  // beneath a note head of the lower voice's chord, while the dots of the
-  // lower voice's chord are shifted down even more.  We thus check all
-  // vertical ranges for valid positions and not only the range of the dot's
-  // parent chord.
-  //
-  // Do nothing if there is either no staff line, or no note head, or the
-  // `chord-dots' property not set.
-  Grob *st = Staff_symbol_referencer::get_staff_symbol (me);
-  vsize num_positions = allowed_y_positions.size ();
-  bool chord_dots = to_boolean (me->get_property ("chord-dots"));
-
-  if (st && num_positions && chord_dots)
-    {
-      for (Dot_configuration::const_iterator i (cfg.begin ());
-           i != cfg.end (); i++)
-        {
-          vsize j;
-
-          for (j = 0; j < num_positions; j++)
-            if (allowed_y_positions[j].contains (i->first))
-              break;
-
-          if (j == num_positions)
-            {
-              Grob *dot = i->second.dot_;
-              Grob *n = dot->get_parent (Y_AXIS);
-              if (n && Note_head::has_interface (n))
-                dot->suicide ();
-            }
-        }
-    }
-
   for (Dot_configuration::const_iterator i (cfg.begin ());
        i != cfg.end (); i++)
     {
@@ -304,10 +236,9 @@ ADD_INTERFACE (Dot_column,
                " dots so they do not clash with staff lines.",
 
                /* properties */
-               "chord-dots "
-               "direction "
                "dots "
-               "note-collision "
                "positioning-done "
+               "direction "
+               "note-collision "
               );
 
index 2371e5f9bd4da00e93e6c38fbfeffcdd5eda948f..f226d16cee4299ca518e5b334e63dd10fb6ab2a2 100644 (file)
@@ -173,9 +173,6 @@ when a spanner is broken at a line break.")
 ;;
      (c0-position ,integer? "An integer indicating the position of
 middle@tie{}C.")
-     (chord-dots ,boolean? "If set, remove dots which the
-@code{DotColumn} algorithm would vertically position too far away from
-note heads.")
      (circled-tip ,boolean? "Put a circle at start/@/end of
 hairpins (al/@/del niente).")
      (clip-edges ,boolean? "Allow outward pointing beamlets at the
index e825cb1ef0a8c4f3192dea85c08d79234c3ee0e3..9a5687e65e735be3ad66dd65fd1bef9ff6f8eb21 100644 (file)
     (DotColumn
      . (
        (axes . (,X))
-       (chord-dots . #t)
        (direction . ,RIGHT)
        (positioning-done . ,ly:dot-column::calc-positioning-done)
        (X-extent . ,ly:axis-group-interface::width)