]> git.donarmstrong.com Git - lilypond.git/blob - lily/semi-tie-column.cc
Web-ja: update introduction
[lilypond.git] / lily / semi-tie-column.cc
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 2005--2015 Han-Wen Nienhuys <hanwen@xs4all.nl>
5
6
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.
11
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.
16
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/>.
19 */
20
21 #include "semi-tie-column.hh"
22 #include "semi-tie.hh"
23 #include "grob.hh"
24 #include "tie-column.hh"
25 #include "tie.hh"
26 #include "directional-element-interface.hh"
27 #include "pointer-group-interface.hh"
28 #include "staff-symbol-referencer.hh"
29 #include "item.hh"
30 #include "tie-formatting-problem.hh"
31
32 ADD_INTERFACE (Semi_tie_column,
33                "The interface for a column of l.v. (laissez vibrer) ties.",
34
35                /* properties */
36                "positioning-done "
37                "head-direction "
38                "tie-configuration "
39                "ties "
40               );
41
42 /*
43   Cut & paste from tie-column.cc
44  */
45 MAKE_SCHEME_CALLBACK (Semi_tie_column, calc_positioning_done, 1);
46 SCM
47 Semi_tie_column::calc_positioning_done (SCM smob)
48 {
49   Grob *me = unsmob<Grob> (smob);
50
51   me->set_property ("positioning-done", SCM_BOOL_T);
52
53   extract_grob_set (me, "ties", lv_ro_ties);
54   vector<Grob *> lv_ties (lv_ro_ties);
55
56   vector_sort (lv_ties, Semi_tie::less);
57
58   Ties_configuration ties_config;
59
60   Tie_formatting_problem problem;
61
62   problem.from_semi_ties (lv_ties, to_dir (me->get_property ("head-direction")));
63
64   SCM manual_configs = me->get_property ("tie-configuration");
65   problem.set_manual_tie_configuration (manual_configs);
66
67   Ties_configuration base = problem.generate_optimal_configuration ();
68   for (vsize i = 0; i < lv_ties.size (); i++)
69     {
70       SCM cp = Tie::get_control_points (lv_ties[i], problem.common_x_refpoint (), base[i],
71                                         problem.details_);
72
73       lv_ties[i]->set_property ("control-points", cp);
74       set_grob_direction (lv_ties[i], base[i].dir_);
75
76       problem.set_debug_scoring (base);
77     }
78
79   return SCM_BOOL_T;
80 }
81
82 MAKE_SCHEME_CALLBACK (Semi_tie_column, calc_head_direction, 1);
83 SCM
84 Semi_tie_column::calc_head_direction (SCM smob)
85 {
86   Grob *me = unsmob<Grob> (smob);
87
88   extract_grob_set (me, "ties", ties);
89   Direction d = LEFT;
90   for (vsize i = 0; i < ties.size (); i++)
91     {
92       Direction this_d = to_dir (ties[i]->get_property ("head-direction"));
93       if (i > 0 && d != this_d)
94         {
95           programming_error ("all semi-ties in a semi-tie-column should have the same head-direction");
96           return scm_from_int (d);
97         }
98       d = this_d;
99     }
100   return scm_from_int (d);
101 }