]> git.donarmstrong.com Git - lilypond.git/blob - lily/tie-column.cc
Issue 4550 (1/2) Avoid "using namespace std;" in included files
[lilypond.git] / lily / tie-column.cc
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 2000--2015 Han-Wen Nienhuys <hanwen@xs4all.nl>
5
6   LilyPond is free software: you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation, either version 3 of the License, or
9   (at your option) any later version.
10
11   LilyPond is distributed in the hope that it will be useful,
12   but WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   GNU General Public License for more details.
15
16   You should have received a copy of the GNU General Public License
17   along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #include "tie-column.hh"
21
22 #include <cmath>
23
24 #include "output-def.hh"
25 #include "skyline.hh"
26 #include "warn.hh"
27 #include "paper-column.hh"
28 #include "spanner.hh"
29 #include "pointer-group-interface.hh"
30 #include "tie.hh"
31 #include "directional-element-interface.hh"
32 #include "tie-formatting-problem.hh"
33 #include "tie-configuration.hh"
34
35 using namespace std;
36 using std::vector;
37
38 void
39 Tie_column::add_tie (Grob *tc, Spanner *tie)
40 {
41   Spanner *me = dynamic_cast<Spanner *> (tc);
42
43   if (tie->get_parent (Y_AXIS)
44       && has_interface<Tie_column> (tie->get_parent (Y_AXIS)))
45     return;
46
47   if (!me->get_bound (LEFT)
48       || (Paper_column::get_rank (me->get_bound (LEFT)->get_column ())
49           > Paper_column::get_rank (dynamic_cast<Spanner *> (tie)->get_bound (LEFT)->get_column ())))
50     {
51       me->set_bound (LEFT, Tie::head (tie, LEFT));
52       me->set_bound (RIGHT, Tie::head (tie, RIGHT));
53     }
54
55   tie->set_parent (me, Y_AXIS);
56   Pointer_group_interface::add_grob (me, ly_symbol2scm ("ties"), tie);
57 }
58
59 /*
60   Extend the spanner over its Tie constituents.
61 */
62 MAKE_SCHEME_CALLBACK (Tie_column, before_line_breaking, 1);
63 SCM
64 Tie_column::before_line_breaking (SCM smob)
65 {
66   Spanner *me = unsmob<Spanner> (smob);
67   for (SCM s = me->get_property ("ties"); scm_is_pair (s); s = scm_cdr (s))
68     {
69       Spanner *tie = unsmob<Spanner> (scm_car (s));
70       for (LEFT_and_RIGHT (dir))
71         {
72           if (dir * tie->get_bound (dir)->get_column ()->get_rank ()
73               > dir * me->get_bound (dir)->get_column ()->get_rank ())
74             me->set_bound (dir, Tie::head (tie, dir));
75         }
76     }
77
78   return SCM_UNSPECIFIED;
79 }
80
81 MAKE_SCHEME_CALLBACK (Tie_column, calc_positioning_done, 1)
82 SCM
83 Tie_column::calc_positioning_done (SCM smob)
84 {
85   Grob *me = unsmob<Grob> (smob);
86   extract_grob_set (me, "ties", ro_ties);
87   vector<Grob *> ties (ro_ties);
88   if (!ties.size ())
89     return SCM_BOOL_T;
90
91   me->set_property ("positioning-done", SCM_BOOL_T);
92   vector_sort (ties, Tie::less);
93
94   Tie_formatting_problem problem;
95   problem.from_ties (ties);
96
97   SCM manual_configs = me->get_property ("tie-configuration");
98   problem.set_manual_tie_configuration (manual_configs);
99
100   Ties_configuration base = problem.generate_optimal_configuration ();
101   for (vsize i = 0; i < base.size (); i++)
102     {
103       SCM cp = Tie::get_control_points (ties[i], problem.common_x_refpoint (),
104                                         base[i],
105                                         problem.details_);
106
107       ties[i]->set_property ("control-points", cp);
108       set_grob_direction (ties[i],
109                           base[i].dir_);
110
111       problem.set_debug_scoring (base);
112     }
113   return SCM_BOOL_T;
114 }
115
116 ADD_INTERFACE (Tie_column,
117                "Object that sets directions of multiple ties in a tied"
118                " chord.",
119
120                /* properties */
121                "positioning-done "
122                "tie-configuration "
123                "ties "
124               );
125