]> git.donarmstrong.com Git - lilypond.git/blob - lily/volta-bracket.cc
(print): don't use strcmp().
[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     |= (str != ":|"
59         && str != "|:"
60         && str != "|."
61         && str != ":|:"
62         && str != ".|");
63
64   Output_def *layout = me->get_layout ();
65   Real half_space = 0.5;
66
67   Item *bound = dynamic_cast<Spanner *> (me)->get_bound (LEFT);
68
69   /*
70     not a start, but really broken in two
71   */
72   Real left = 0.;
73   if (bound->break_status_dir () == RIGHT)
74     {
75       Paper_column *pc = bound->get_column ();
76       left = pc->extent (pc, X_AXIS)[RIGHT] - bound->relative_coordinate (pc, X_AXIS);
77     }
78   else
79     {
80       /*
81         the volta spanner is attached to the bar-line, which is moved
82         to the right. We don't need to compensate for the left edge.
83       */
84     }
85
86   Real w = dynamic_cast<Spanner *> (me)->spanner_length () - left - half_space;
87   Real h = robust_scm2double (me->get_property ("height"), 1);
88
89   Stencil start, end;
90   if (!no_vertical_start)
91     start = Line_interface::line (me, Offset (0, 0), Offset (0, h));
92
93   if (!no_vertical_end)
94     end = Line_interface::line (me, Offset (w, 0), Offset (w, h));
95
96   Stencil mol = Line_interface::line (me, Offset (0, h), Offset (w, h));
97   mol.add_stencil (start);
98   mol.add_stencil (end);
99
100   if (!orig_span || broken_first_bracket)
101     {
102       SCM text = me->get_property ("text");
103       SCM properties = me->get_property_alist_chain (SCM_EOL);
104       SCM snum = Text_interface::interpret_markup (layout->self_scm (),
105                                                    properties, text);
106       Stencil num = *unsmob_stencil (snum);
107
108       mol.add_at_edge (X_AXIS, LEFT, num, - num.extent (X_AXIS).length ()
109                        - 1.0, 0);
110     }
111   mol.translate_axis (left, X_AXIS);
112   return mol.smobbed_copy ();
113 }
114
115 void
116 Volta_bracket_interface::add_bar (Grob *me, Item *b)
117 {
118   Pointer_group_interface::add_grob (me, ly_symbol2scm ("bars"), b);
119   Side_position_interface::add_support (me, b);
120   add_bound_item (dynamic_cast<Spanner *> (me), b);
121 }
122
123 void
124 Volta_bracket_interface::add_column (Grob *me, Grob *c)
125 {
126   Side_position_interface::add_support (me, c);
127 }
128
129 ADD_INTERFACE (Volta_bracket_interface, "volta-bracket-interface",
130                "Volta bracket with number",
131                "bars thickness height");
132