]> git.donarmstrong.com Git - lilypond.git/blob - lily/volta-spanner.cc
1ce8128d9deac1de3198314a34e33befddb22e49
[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   Side_position::set_axis (me, Y_AXIS);
26   Directional_element_interface::set (me, UP);
27 }
28
29
30 /*
31   this is too complicated. Yet another version of side-positioning,
32   badly implemented.
33
34   --
35
36   * Should look for system_start_delim to find left edge of staff.
37   
38   
39 */
40
41 MAKE_SCHEME_CALLBACK(Volta_spanner,brew_molecule);
42 SCM
43 Volta_spanner::brew_molecule (SCM smob) 
44 {
45   Score_element *me = unsmob_element (smob);
46   Link_array<Item> bar_arr
47     = Pointer_group_interface__extract_elements (me, (Item*)0, "bars");
48
49   if (!bar_arr.size ())
50     return SCM_EOL;
51
52   bool no_vertical_start = false;
53   bool no_vertical_end = to_boolean (me->get_elt_property ("last-volta"));
54   Spanner *orig_span =  dynamic_cast<Spanner*> (me->original_l_);
55   if (orig_span && (orig_span->broken_into_l_arr_[0] != (Spanner*)me))
56     no_vertical_start = true;
57   if (orig_span && (orig_span->broken_into_l_arr_.top () != (Spanner*)me))
58     no_vertical_end = true;
59
60 #if 0
61   // FIXME
62   if (bar_arr.top ()->me->get_elt_property (type_str_.length_i () > 1)
63     no_vertical_end = false;
64 #endif
65
66   Real staff_space = me->paper_l ()->get_var ("staffspace");
67   Real staff_thick = me->paper_l ()->get_var ("stafflinethickness");  
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 = staff_space * gh_scm2double (me->get_elt_property ("height"));
72   Real t = staff_thick * gh_scm2double (me->get_elt_property ("thickness"));
73
74   /*
75     ugh: should build from line segments.
76    */
77   SCM at = (gh_list (ly_symbol2scm ("volta"),
78                      gh_double2scm (h),
79                      gh_double2scm (w),
80                      gh_double2scm (t),
81                      gh_int2scm (no_vertical_start),
82                      gh_int2scm (no_vertical_end),
83                      SCM_UNDEFINED));
84
85   Box b (Interval (0, w), Interval (0, h));
86   Molecule  mol (b, at);
87   Molecule num (me->lookup_l ()->text ("volta",
88                                        ly_scm2string (me->get_elt_property("text")),
89                                        me->paper_l ()));
90
91   mol.add_at_edge (X_AXIS, LEFT, num, - num.extent (X_AXIS).length ()
92                    - staff_space);
93   mol.translate_axis (left, X_AXIS);
94   return mol.create_scheme();
95 }
96
97
98 void
99 Volta_spanner::add_bar  (Score_element *me, Item* b)
100 {
101   Pointer_group_interface gi(me, "bars");
102   gi.add_element (b);
103
104   Side_position::add_support (me,b);
105   add_bound_item (dynamic_cast<Spanner*>(me), b); 
106 }
107
108 void
109 Volta_spanner::add_column (Score_element*me, Score_element* c)
110 {
111   Side_position::add_support (me,c);
112 }