]> git.donarmstrong.com Git - lilypond.git/blob - lily/system-start-delimiter.cc
24be5bb59581554249385243571755f367a61724
[lilypond.git] / lily / system-start-delimiter.cc
1 /*
2   system-start-delimiter.cc -- implement System_start_delimiter
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2000--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #include "system-start-delimiter.hh"
10
11 #include <math.h>
12
13 #include "spanner.hh"
14 #include "axis-group-interface.hh"
15 #include "output-def.hh"
16 #include "font-interface.hh"
17 #include "all-font-metrics.hh"
18 #include "staff-symbol-referencer.hh"
19 #include "lookup.hh"
20 #include "item.hh"
21
22 #include "pointer-group-interface.hh"
23
24 Stencil
25 System_start_delimiter::staff_bracket (Grob *me, Real height)
26 {
27   Font_metric *fm = Font_interface::get_default_font (me);
28   Drul_array<Stencil> tips (fm->find_by_name ("brackettips.down"),
29                             fm->find_by_name ("brackettips.up"));
30
31   Real thickness = robust_scm2double (me->get_property ("thickness"), 0.25);
32
33   Real overlap = 0.1 * thickness;
34
35   Stencil bracket = Lookup::filled_box (Box (Interval (0, thickness),
36                                              Interval (-1, 1)
37                                              * (height / 2 + overlap)));
38
39   Direction d = DOWN;
40   do
41     bracket.add_at_edge (Y_AXIS, d, tips[d], -overlap, 0.0);
42   while (flip (&d) != DOWN)
43     ;
44
45   return bracket;
46 }
47
48 Stencil
49 System_start_delimiter::simple_bar (Grob *me, Real h)
50 {
51   Real lt = me->get_layout ()->get_dimension (ly_symbol2scm ("linethickness"));
52   Real w = lt * robust_scm2double (me->get_property ("thickness"), 1);
53   return Lookup::round_filled_box (Box (Interval (0, w), Interval (-h / 2, h / 2)),
54                                    lt);
55 }
56
57 MAKE_SCHEME_CALLBACK (System_start_delimiter, after_line_breaking, 1);
58
59 SCM
60 System_start_delimiter::after_line_breaking (SCM smob)
61 {
62   Spanner *me = dynamic_cast<Spanner *> (unsmob_grob (smob));
63
64   SCM gl = me->get_property ("glyph");
65   if (ly_is_equal (gl, scm_makfrom0str ("bar-line")))
66     {
67       int count = 0;
68       Paper_column *left_column = me->get_bound (LEFT)->get_column ();
69
70       /*
71         Get all coordinates, to trigger Hara kiri.
72       */
73       extract_grob_set (me, "elements", elts);
74       Grob *common = common_refpoint_of_array (elts, me, Y_AXIS);
75
76       for (int i = elts.size (); i--;)
77         {
78           Spanner *staff = dynamic_cast<Spanner *> (elts[i]);
79           if (!staff
80               || staff->get_bound (LEFT)->get_column () != left_column)
81             continue;
82
83           Interval v = staff->extent (common, Y_AXIS);
84
85           if (!v.is_empty ())
86             count++;
87         }
88
89       if (count <= 1)
90         me->suicide ();
91     }
92   return SCM_UNSPECIFIED;
93 }
94
95 MAKE_SCHEME_CALLBACK (System_start_delimiter, print, 1);
96 SCM
97 System_start_delimiter::print (SCM smob)
98 {
99   Spanner *me = unsmob_spanner (smob);
100   if (!me)
101     return SCM_EOL;
102
103   SCM s = me->get_property ("glyph");
104   if (!scm_is_string (s))
105     return SCM_EOL;
106   SCM gsym = scm_string_to_symbol (s);
107
108   Real staff_space = Staff_symbol_referencer::staff_space (me);
109
110   extract_grob_set (me, "elements", elts);
111   Grob *common = common_refpoint_of_array (elts, me, Y_AXIS);
112
113   Interval ext;
114
115   for (int i = elts.size (); i--;)
116     {
117       Spanner *sp = dynamic_cast<Spanner *> (elts[i]);
118       if (sp
119           && sp->get_bound (LEFT) == me->get_bound (LEFT))
120         {
121           Interval dims = sp->extent (common, Y_AXIS);
122           if (!dims.is_empty ())
123             ext.unite (dims);
124         }
125     }
126
127   ext -= me->relative_coordinate (common, Y_AXIS);
128
129   Real len = ext.length () / staff_space;
130
131   if (ext.is_empty ()
132       || (robust_scm2double (me->get_property ("collapse-height"), 0.0) >= len))
133     {
134       me->suicide ();
135       return SCM_EOL;
136     }
137
138   Stencil m;
139
140   if (gsym == ly_symbol2scm ("bracket"))
141     m = staff_bracket (me, len);
142   else if (gsym == ly_symbol2scm ("brace"))
143     m = staff_brace (me, len);
144   else if (gsym == ly_symbol2scm ("bar-line"))
145     m = simple_bar (me, len);
146
147   m.translate_axis (ext.center (), Y_AXIS);
148   return m.smobbed_copy ();
149 }
150
151 Stencil
152 System_start_delimiter::staff_brace (Grob *me, Real y)
153 {
154   Font_metric *fm = 0;
155   /* We go through the style sheet to lookup the font file
156      name.  This is better than using find_font directly,
157      esp. because that triggers mktextfm for non-existent
158      fonts. */
159   SCM fam = scm_cons (ly_symbol2scm ("font-encoding"),
160                       ly_symbol2scm ("fetaBraces"));
161
162   SCM alist = scm_list_n (fam, SCM_UNDEFINED);
163   fm = select_font (me->get_layout (), scm_list_n (alist, SCM_UNDEFINED));
164
165   int lo = 0;
166   int hi = max (fm->count () - 1, 2);
167
168   /* do a binary search for each Y, not very efficient, but passable?  */
169   Box b;
170   do
171     {
172       int cmp = (lo + hi) / 2;
173       b = fm->get_indexed_char (cmp);
174       if (b[Y_AXIS].is_empty () || b[Y_AXIS].length () > y)
175         hi = cmp;
176       else
177         lo = cmp;
178     }
179   while (hi - lo > 1);
180
181   Stencil stil (fm->find_by_name ("brace" + to_string (lo)));
182   stil.translate_axis (-b[X_AXIS].length()/2, X_AXIS);
183
184   return stil;
185 }
186
187 ADD_INTERFACE (System_start_delimiter, "system-start-delimiter-interface",
188                "The brace, bracket or bar in front of the system. "
189                "It is implemented as a spanner.",
190
191                /* properties */
192                "collapse-height "
193                "glyph "
194                "thickness "
195                );