2 This file is part of LilyPond, the GNU music typesetter.
4 Copyright (C) 2005--2012 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 LilyPond is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
12 LilyPond is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with LilyPond. If not, see <http://www.gnu.org/licenses/>.
21 #include "tie-configuration.hh"
24 #include "tie-formatting-problem.hh"
28 Tie_configuration::compare (Tie_configuration const &a,
29 Tie_configuration const &b)
31 if (a.position_ - b.position_)
32 return sign (a.position_ - b.position_);
33 return sign (a.dir_ - b.dir_);
36 Tie_configuration::Tie_configuration ()
43 column_ranks_ = Drul_array<int> (0, 0);
47 Tie_configuration::center_tie_vertically (Tie_details const &details)
49 Bezier b = get_untransformed_bezier (details);
50 Offset middle = b.curve_point (0.5);
51 Offset edge = b.curve_point (0.0);
52 Real center = (edge[Y_AXIS] + middle[Y_AXIS]) / 2.0;
54 delta_y_ = - dir_ * center;
58 Tie_configuration::get_transformed_bezier (Tie_details const &details) const
60 Bezier b (get_untransformed_bezier (details));
63 b.translate (Offset (attachment_x_[LEFT],
64 delta_y_ + details.staff_space_ * 0.5 * position_));
70 Get bezier with left control at (0,0)
73 Tie_configuration::get_untransformed_bezier (Tie_details const &details) const
75 Real l = attachment_x_.length ();
76 if (isinf (l) || isnan (l))
78 programming_error ("Inf or NaN encountered");
82 details.height_limit_,
87 Tie_configuration::column_span_length () const
89 return column_ranks_[RIGHT] - column_ranks_[LEFT];
93 Tie_configuration::distance (Tie_configuration const &a,
94 Tie_configuration const &b)
97 Real d = 3 * (a.position_ - b.position_);
99 return d + (2 + (b.dir_ - a.dir_));
101 return d + (2 + (a.dir_ - b.dir_));
105 Tie_configuration::add_score (Real s, string desc)
110 score_card_ += to_string ("%s=%.2f ", desc.c_str (), s);
114 Tie_configuration::height (Tie_details const &details) const
116 Real l = attachment_x_.length ();
118 return slur_shape (l,
119 details.height_limit_,
120 details.ratio_).curve_point (0.5)[Y_AXIS];
123 Ties_configuration::Ties_configuration ()
130 Ties_configuration::reset_score ()
135 tie_score_cards_.clear ();
139 Ties_configuration::add_tie_score (Real s, int i, string desc)
145 while (tie_score_cards_.size () < size ())
146 tie_score_cards_.push_back ("");
148 tie_score_cards_[i] += to_string ("%s=%.2f ", desc.c_str (), s);
153 Ties_configuration::add_score (Real s, string desc)
158 score_card_ += to_string ("%s=%.2f ", desc.c_str (), s);
162 Ties_configuration::score () const
168 Ties_configuration::complete_tie_card (vsize i) const
171 s += to_string ("%d (%.2f) %c: ", (*this)[i].position_, (*this)[i].delta_y_,
172 ((*this)[i].dir_ == UP ? 'u' : 'd'))
173 + (*this)[i].card () + (*this).tie_card (i);
176 this is a little awkward, but we must decide where to put
182 if (i + 1 == size ())
183 s += to_string ("TOTAL=%.2f", score ());
188 /* for use inside GDB */
190 Ties_configuration::complete_score_card () const
193 for (vsize i = 0; i < size (); i++)
195 s += complete_tie_card (i);
202 Ties_configuration::card () const