]> git.donarmstrong.com Git - lilypond.git/blob - lily/volta-spanner.cc
release: 1.3.69
[lilypond.git] / lily / volta-spanner.cc
1 /*
2   volta-spanner.cc -- implement Volta_spanner
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--2000 Jan Nieuwenhuizen <janneke@gnu.org>
7 */
8
9
10 #include "box.hh"
11 #include "debug.hh"
12 #include "lookup.hh"
13 #include "molecule.hh"
14 #include "paper-column.hh"
15 #include "paper-def.hh"
16 #include "volta-spanner.hh"
17 #include "group-interface.hh"
18 #include "side-position-interface.hh"
19 #include "directional-element-interface.hh"
20
21
22 void
23 Volta_spanner::set_interface (Score_element*me)
24 {
25   me->set_elt_property ("bars", SCM_EOL);
26   Side_position::set_axis (me, Y_AXIS);
27   Directional_element_interface (me).set (UP);
28 }
29
30
31 /*
32   me is too complicated. Yet another version of side-positioning,
33   badly implemented.
34
35   --
36
37   * Should look for system_start_delim to find left edge of staff.
38   
39   
40 */
41
42 MAKE_SCHEME_CALLBACK(Volta_spanner,brew_molecule);
43 SCM
44 Volta_spanner::brew_molecule (SCM smob) 
45 {
46   Score_element *me = unsmob_element (smob);
47   Link_array<Item> bar_arr
48     = Pointer_group_interface__extract_elements (me, (Item*)0, "bars");
49
50   if (!bar_arr.size ())
51     return SCM_EOL;
52
53   bool no_vertical_start = false;
54   bool no_vertical_end = to_boolean (me->get_elt_property ("last-volta"));
55   Spanner *orig_span =  dynamic_cast<Spanner*> (me->original_l_);
56   if (orig_span && (orig_span->broken_into_l_arr_[0] != (Spanner*)me))
57     no_vertical_start = true;
58   if (orig_span && (orig_span->broken_into_l_arr_.top () != (Spanner*)me))
59     no_vertical_end = true;
60
61 #if 0
62   // FIXME
63   if (bar_arr.top ()->me->get_elt_property (type_str_.length_i () > 1)
64     no_vertical_end = false;
65 #endif
66
67   Real staff_space = me->paper_l ()->get_var ("interline");
68   Real half_space = staff_space / 2;
69   Real left = dynamic_cast<Spanner*>(me)->get_broken_left_end_align ();
70   Real w = dynamic_cast<Spanner*>(me)->spanner_length () - left - half_space;
71   Real h = me->paper_l()->get_var ("volta_spanner_height");
72   Real t = me->paper_l ()->get_var ("volta_thick");
73
74   SCM at = (gh_list (ly_symbol2scm ("volta"),
75                      gh_double2scm (h),
76                      gh_double2scm (w),
77                      gh_double2scm (t),
78                      gh_int2scm (no_vertical_start),
79                      gh_int2scm (no_vertical_end),
80                      SCM_UNDEFINED));
81
82   Box b (Interval (0, w), Interval (0, h));
83   Molecule  mol (b, at);
84   Molecule num (me->lookup_l ()->text ("volta",
85                                        ly_scm2string (me->get_elt_property("text")),
86                                        me->paper_l ()));
87
88   mol.add_at_edge (X_AXIS, LEFT, num, - num.extent (X_AXIS).length ()
89                    - staff_space);
90   mol.translate_axis (left, X_AXIS);
91   return mol.create_scheme();
92 }
93
94
95 void
96 Volta_spanner::add_bar  (Score_element *me, Item* b)
97 {
98   Pointer_group_interface gi(me, "bars");
99   gi.add_element (b);
100
101   Side_position::add_support (me,b);
102   add_bound_item (dynamic_cast<Spanner*>(me), b); 
103 }
104
105 void
106 Volta_spanner::add_column (Score_element*me, Score_element* c)
107 {
108   Side_position::add_support (me,c);
109 }