]> git.donarmstrong.com Git - lilypond.git/blob - lily/system-start-delimiter.cc
7208a2622bcfc5dccdad051d6bee0866ecab0c86
[lilypond.git] / lily / system-start-delimiter.cc
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 2000--2012 Han-Wen Nienhuys <hanwen@xs4all.nl>
5
6   LilyPond is free software: you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation, either version 3 of the License, or
9   (at your option) any later version.
10
11   LilyPond is distributed in the hope that it will be useful,
12   but WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   GNU General Public License for more details.
15
16   You should have received a copy of the GNU General Public License
17   along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #include "system-start-delimiter.hh"
21 #include "text-interface.hh"
22 #include "all-font-metrics.hh"
23 #include "axis-group-interface.hh"
24 #include "font-interface.hh"
25 #include "item.hh"
26 #include "line-interface.hh"
27 #include "lookup.hh"
28 #include "output-def.hh"
29 #include "pointer-group-interface.hh"
30 #include "spanner.hh"
31 #include "staff-symbol-referencer.hh"
32
33 Stencil
34 System_start_delimiter::staff_bracket (Grob *me, Real height)
35 {
36   Font_metric *fm = Font_interface::get_default_font (me);
37
38   Drul_array<Stencil> tips (fm->find_by_name ("brackettips.down"),
39                             fm->find_by_name ("brackettips.up"));
40
41   Real thickness = robust_scm2double (me->get_property ("thickness"), 0.25);
42
43   Real overlap = 0.1 * thickness;
44
45   Box box (Interval (0, thickness),
46            Interval (-1, 1)
47            * (height / 2 + overlap));
48
49   Stencil bracket = Lookup::filled_box (box);
50   Direction d = DOWN;
51   do
52     bracket.add_at_edge (Y_AXIS, d, tips[d], -overlap);
53   while (flip (&d) != DOWN);
54   bracket = Stencil (box, bracket.expr ());
55
56   bracket.translate_axis (-0.8, X_AXIS);
57
58   return bracket;
59 }
60
61 Stencil
62 System_start_delimiter::line_bracket (Grob *me, Real height)
63 {
64   Real thick
65     = me->layout ()->get_dimension (ly_symbol2scm ("line-thickness"))
66       * robust_scm2double (me->get_property ("thickness"), 1);
67   Real w = 0.8;
68
69   Stencil tip1 = Line_interface::make_line (thick,
70                                             Offset (0, -height / 2),
71                                             Offset (w, -height / 2));
72   Stencil tip2 = Line_interface::make_line (thick,
73                                             Offset (0, height / 2),
74                                             Offset (w, height / 2));
75   Stencil vline = Line_interface::make_line (thick,
76                                              Offset (0, -height / 2),
77                                              Offset (0, height / 2));
78
79   vline.add_stencil (tip1);
80   vline.add_stencil (tip2);
81   vline.translate_axis (-w, X_AXIS);
82   return vline;
83 }
84
85 Stencil
86 System_start_delimiter::simple_bar (Grob *me, Real h)
87 {
88   Real lt = me->layout ()->get_dimension (ly_symbol2scm ("line-thickness"));
89   Real w = lt * robust_scm2double (me->get_property ("thickness"), 1);
90   return Lookup::round_filled_box (Box (Interval (0, w), Interval (-h / 2, h / 2)),
91                                    lt);
92 }
93
94 MAKE_SCHEME_CALLBACK (System_start_delimiter, print, 1);
95 SCM
96 System_start_delimiter::print (SCM smob)
97 {
98   Spanner *me = unsmob_spanner (smob);
99   extract_grob_set (me, "elements", elts);
100   Grob *common = common_refpoint_of_array (elts, me, Y_AXIS);
101
102   Interval ext;
103   Real staffspace = 1.0;
104   int non_empty_count = 0;
105   for (vsize i = elts.size (); i--;)
106     {
107       Spanner *sp = dynamic_cast<Spanner *> (elts[i]);
108
109       if (sp
110           && sp->get_bound (LEFT) == me->get_bound (LEFT))
111         {
112           Interval dims = sp->extent (common, Y_AXIS);
113           if (!dims.is_empty ())
114             {
115               non_empty_count++;
116               ext.unite (dims);
117               staffspace = Staff_symbol_referencer::staff_space (sp);
118             }
119         }
120     }
121
122   SCM glyph_sym = me->get_property ("style");
123   Real len = ext.length ();
124
125   // Use collapse-height in multiples of the staff-space
126   if (ext.is_empty ()
127       || (robust_scm2double (me->get_property ("collapse-height"), 0.0) >= (len / staffspace)))
128     {
129       me->suicide ();
130       return SCM_UNSPECIFIED;
131     }
132
133   Stencil m;
134   if (glyph_sym == ly_symbol2scm ("bracket"))
135     m = staff_bracket (me, len);
136   else if (glyph_sym == ly_symbol2scm ("brace"))
137     m = staff_brace (me, len);
138   else if (glyph_sym == ly_symbol2scm ("bar-line"))
139     m = simple_bar (me, len);
140   else if (glyph_sym == ly_symbol2scm ("line-bracket"))
141     m = line_bracket (me, len);
142
143   m.translate_axis (ext.center (), Y_AXIS);
144   return m.smobbed_copy ();
145 }
146
147 Stencil
148 System_start_delimiter::staff_brace (Grob *me, Real y)
149 {
150   Font_metric *fm = 0;
151
152   /*
153     Find the default brace font if the user overrides it.
154   */
155   fm = Font_interface::get_default_font (me);
156
157   int
158   lo = 0;
159   int hi = max ((int) fm->count () - 1, 2);
160
161   /* do a binary search for each Y, not very efficient, but passable?  */
162   Box b;
163   do
164     {
165       int cmp = (lo + hi) / 2;
166       b = fm->get_indexed_char_dimensions (cmp);
167       if (b[Y_AXIS].is_empty () || b[Y_AXIS].length () > y)
168         hi = cmp;
169       else
170         lo = cmp;
171     }
172   while (hi - lo > 1);
173
174   Stencil stil (fm->find_by_name ("brace" + to_string (lo)));
175   stil.translate_axis (-b[X_AXIS].length () / 2, X_AXIS);
176
177   stil.translate_axis (-0.2, X_AXIS);
178
179   return stil;
180 }
181
182 ADD_INTERFACE (System_start_delimiter,
183                "The brace, bracket or bar in front of the system.  The"
184                " following values for @code{style} are recognized:\n"
185                "\n"
186                "@table @code\n"
187                "@item bracket\n"
188                "A thick bracket, normally used to group similar"
189                " instruments in a score.  Default for @code{StaffGroup}."
190                "  @code{SystemStartBracket} uses this style.\n"
191                "@item brace\n"
192                "A @q{piano style} brace normally used for an instrument"
193                " that uses two staves.  The default style for"
194                " @code{GrandStaff}.  @code{SystemStartBrace} uses this"
195                " style.\n"
196                "@item bar-line\n"
197                "A simple line between the staves in a score.  Default"
198                " for staves enclosed in @code{<<} and @code{>>}."
199                "  @code{SystemStartBar} uses this style.\n"
200                "@item line-bracket\n"
201                "A simple square, normally used for subgrouping"
202                " instruments in a score.  @code{SystemStartSquare} uses"
203                " this style.\n"
204                "@end table\n"
205                "\n"
206                "See also @file{input/regression/system-start-nesting.ly}.",
207
208                /* properties */
209                "collapse-height "
210                "style "
211                "thickness "
212               );