]> git.donarmstrong.com Git - lilypond.git/blob - lily/volta-bracket.cc
* input/regression/slur-script.ly: Fixed.
[lilypond.git] / lily / volta-bracket.cc
1 /*
2   volta-bracket.cc -- implement Volta_bracket_interface
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997--2005 Jan Nieuwenhuizen <janneke@gnu.org>
7 */
8
9 #include <cstring>
10
11 #include "warn.hh"
12 #include "font-interface.hh"
13 #include "line-interface.hh"
14 #include "paper-column.hh"
15 #include "output-def.hh"
16 #include "text-interface.hh"
17 #include "volta-bracket.hh"
18 #include "pointer-group-interface.hh"
19 #include "side-position-interface.hh"
20 #include "directional-element-interface.hh"
21 #include "lookup.hh"
22
23 /*
24   this is too complicated. Yet another version of side-positioning,
25   badly implemented.
26
27   --
28
29   * Should look for system_start_delim to find left edge of staff.
30   */
31
32 MAKE_SCHEME_CALLBACK (Volta_bracket_interface, print, 1);
33 SCM
34 Volta_bracket_interface::print (SCM smob)
35 {
36   Grob *me = unsmob_grob (smob);
37   Spanner *orig_span = dynamic_cast<Spanner *> (me->original_);
38
39   bool broken_first_bracket = orig_span && (orig_span->broken_intos_[0] == (Spanner *)me);
40
41   bool broken_last_bracket = orig_span && (orig_span->broken_intos_.top () == (Spanner *)me);
42
43   bool no_vertical_start = orig_span && !broken_first_bracket;
44   bool no_vertical_end = orig_span && !broken_last_bracket;
45
46   extract_grob_set (me, "bars", bars);
47   Grob *endbar = bars.size() ? bars.top () : 0;
48   SCM glyph = endbar ? endbar->get_property ("glyph") : SCM_EOL;
49
50   String str;
51   if (scm_is_string (glyph))
52     str = ly_scm2string (glyph);
53   else
54     str = "|";
55
56   char const *cs = str.to_str0 ();
57   no_vertical_end
58     |= (strcmp (cs, ":|") != 0 && strcmp (cs, "|:") != 0 && strcmp (cs, "|.") != 0
59         && strcmp (cs, ":|:") != 0 && strcmp (cs, ".|") != 0);
60
61   Output_def *layout = me->get_layout ();
62   Real half_space = 0.5;
63
64   Item *bound = dynamic_cast<Spanner *> (me)->get_bound (LEFT);
65
66   /*
67     not a start, but really broken in two
68   */
69   Real left = 0.;
70   if (bound->break_status_dir () == RIGHT)
71     {
72       Paper_column *pc = bound->get_column ();
73       left = pc->extent (pc, X_AXIS)[RIGHT] - bound->relative_coordinate (pc, X_AXIS);
74     }
75   else
76     {
77       /*
78         the volta spanner is attached to the bar-line, which is moved
79         to the right. We don't need to compensate for the left edge.
80       */
81     }
82
83   Real w = dynamic_cast<Spanner *> (me)->spanner_length () - left - half_space;
84   Real h = robust_scm2double (me->get_property ("height"), 1);
85
86   Stencil start, end;
87   if (!no_vertical_start)
88     start = Line_interface::line (me, Offset (0, 0), Offset (0, h));
89
90   if (!no_vertical_end)
91     end = Line_interface::line (me, Offset (w, 0), Offset (w, h));
92
93   Stencil mol = Line_interface::line (me, Offset (0, h), Offset (w, h));
94   mol.add_stencil (start);
95   mol.add_stencil (end);
96
97   if (!orig_span || broken_first_bracket)
98     {
99       SCM text = me->get_property ("text");
100       SCM properties = me->get_property_alist_chain (SCM_EOL);
101       SCM snum = Text_interface::interpret_markup (layout->self_scm (), properties, text);
102       Stencil num = *unsmob_stencil (snum);
103
104       mol.add_at_edge (X_AXIS, LEFT, num, - num.extent (X_AXIS).length ()
105                        - 1.0, 0);
106     }
107   mol.translate_axis (left, X_AXIS);
108   return mol.smobbed_copy ();
109 }
110
111 void
112 Volta_bracket_interface::add_bar (Grob *me, Item *b)
113 {
114   Pointer_group_interface::add_grob (me, ly_symbol2scm ("bars"), b);
115   Side_position_interface::add_support (me, b);
116   add_bound_item (dynamic_cast<Spanner *> (me), b);
117 }
118
119 void
120 Volta_bracket_interface::add_column (Grob *me, Grob *c)
121 {
122   Side_position_interface::add_support (me, c);
123 }
124
125 ADD_INTERFACE (Volta_bracket_interface, "volta-bracket-interface",
126                "Volta bracket with number",
127                "bars thickness height");
128