]> git.donarmstrong.com Git - lilypond.git/blob - lily/system-start-delimiter.cc
(staff_bracket): use glyphs.
[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 Stencil
23 System_start_delimiter::old_staff_bracket (Grob *me, Real height)
24 {
25   Real arc_height = scm_to_double (me->get_property ("arch-height"));
26
27   SCM at = scm_list_n (ly_symbol2scm ("bracket"),
28                        me->get_property ("arch-angle"),
29                        me->get_property ("arch-width"),
30                        scm_make_real (arc_height),
31                        scm_make_real (height),
32                        me->get_property ("arch-thick"),
33                        me->get_property ("thickness"),
34                        SCM_UNDEFINED);
35
36   /*
37     TODO: sort this out.
38
39     Another thing:
40     In system-start-delimiter.cc I see the line
41
42     Real h = height + 2 * arc_height;
43
44     But I really think that you mean
45
46     Real h = height + 2 * arc_width;
47
48     (arc_height changes the x-axis-size of arc ; arc_width changes the
49     y-axis-size)
50     Will not fix it since I'm not sure.
51
52   */
53
54   Real h = height + 2 * arc_height;
55   Box b (Interval (0, 1.5), Interval (-h / 2, h / 2));
56   Stencil mol (b, at);
57   mol.align_to (X_AXIS, CENTER);
58   return mol;
59 }
60
61
62
63 Stencil
64 System_start_delimiter::staff_bracket (Grob *me, Real height)
65 {
66   Font_metric *fm = Font_interface::get_default_font (me);
67   Drul_array<Stencil> tips (fm->find_by_name ("brackettips.down"),
68                             fm->find_by_name ("brackettips.up"));
69
70   Real thickness = robust_scm2double (me->get_property ("thickness"), 0.25);
71   
72   Stencil bracket = Lookup::filled_box (Box (Interval (0, thickness),
73                                              Interval (-height/2, height/2)));
74
75   Direction d = DOWN;
76   do
77     {
78       bracket.add_at_edge (Y_AXIS, d, tips[d], 0.0, 0.0);
79     }
80   while (flip (&d) != DOWN); 
81
82   bracket.translate_axis (-1.0, X_AXIS); // ugh.
83   return bracket;
84 }
85
86
87 Stencil
88 System_start_delimiter::simple_bar (Grob *me, Real h)
89 {
90   Real lt = me->get_layout ()->get_dimension (ly_symbol2scm ("linethickness"));
91   Real w = lt * robust_scm2double (me->get_property ("thickness"), 1);
92   return Lookup::round_filled_box (Box (Interval (0, w), Interval (-h / 2, h / 2)),
93                                    lt);
94 }
95
96 MAKE_SCHEME_CALLBACK (System_start_delimiter, after_line_breaking, 1);
97
98 SCM
99 System_start_delimiter::after_line_breaking (SCM smob)
100 {
101   Spanner *me = dynamic_cast<Spanner *> (unsmob_grob (smob));
102   
103   SCM gl = me->get_property ("glyph");
104   if (ly_c_equal_p (gl, scm_makfrom0str ("bar-line")))
105     {
106       int count = 0;
107       Paper_column *left_column = me->get_bound (LEFT)->get_column ();  
108
109       /*
110         Get all coordinates, to trigger Hara kiri.
111       */
112       SCM elts = me->get_property ("elements");
113       Grob *common = common_refpoint_of_list (elts, me, Y_AXIS);
114       for (SCM s = elts; scm_is_pair (s); s = scm_cdr (s))
115         {
116           Spanner *staff = dynamic_cast<Spanner*> (unsmob_grob (scm_car (s)));
117           if (!staff || 
118               staff->get_bound (LEFT)->get_column () != left_column)
119             continue;
120           
121           Interval v = staff->extent (common, Y_AXIS);
122           
123           if (!v.is_empty ())
124             count++;
125         }
126
127       if (count <= 1)
128         {
129           me->suicide ();
130         }
131     }
132   return SCM_UNSPECIFIED;
133 }
134
135 MAKE_SCHEME_CALLBACK (System_start_delimiter, print, 1);
136 SCM
137 System_start_delimiter::print (SCM smob)
138 {
139   Spanner *me = unsmob_spanner (smob);
140   if (!me)
141     return SCM_EOL;
142
143   SCM s = me->get_property ("glyph");
144   if (!scm_is_string (s))
145     return SCM_EOL;
146   SCM gsym = scm_string_to_symbol (s);
147
148   Real staff_space = Staff_symbol_referencer::staff_space (me);
149
150   SCM elts = me->get_property ("elements");
151   Grob *common = common_refpoint_of_list (elts, me, Y_AXIS);
152
153   Interval ext;
154   for (SCM s = elts; scm_is_pair (s); s = scm_cdr (s))
155     {
156       Spanner *sp = unsmob_spanner (scm_car (s));
157       if (sp
158           && sp->get_bound (LEFT) == me->get_bound (LEFT))
159         {
160           Interval dims = sp->extent (common, Y_AXIS);
161           if (!dims.is_empty ())
162             ext.unite (dims);
163         }
164     }
165
166   ext -= me->relative_coordinate (common, Y_AXIS);
167
168   Real len = ext.length () / staff_space;
169
170   if (ext.is_empty ()
171       || (robust_scm2double (me->get_property ("collapse-height"), 0.0) >= len))
172     {
173       me->suicide ();
174       return SCM_EOL;
175     }
176
177   Stencil m;
178
179   if (gsym == ly_symbol2scm ("bracket"))
180     m = staff_bracket (me, len);
181   else if (gsym == ly_symbol2scm ("brace"))
182     m = staff_brace (me, len);
183   else if (gsym == ly_symbol2scm ("bar-line"))
184     m = simple_bar (me, len);
185
186   m.translate_axis (ext.center (), Y_AXIS);
187   return m.smobbed_copy ();
188 }
189
190 Stencil
191 System_start_delimiter::staff_brace (Grob *me, Real y)
192 {
193   Font_metric *fm = 0;
194   /* We go through the style sheet to lookup the font file
195      name.  This is better than using find_font directly,
196      esp. because that triggers mktextfm for non-existent
197      fonts. */
198   SCM fam = scm_cons (ly_symbol2scm ("font-encoding"),
199                       ly_symbol2scm ("fetaBraces"));
200
201   SCM alist = scm_list_n (fam, SCM_UNDEFINED);
202   fm = select_font (me->get_layout (), scm_list_n (alist, SCM_UNDEFINED));
203
204   int lo = 0;
205   int hi = max (fm->count () - 1,2);
206   Box b;
207
208   /* do a binary search for each Y, not very efficient, but passable?  */
209   do
210     {
211       int cmp = (lo + hi) / 2;
212       b = fm->get_indexed_char (cmp);
213       if (b[Y_AXIS].is_empty () || b[Y_AXIS].length () > y)
214         hi = cmp;
215       else
216         lo = cmp;
217     }
218   while (hi - lo > 1);
219
220   Stencil stil (fm->find_by_name ("brace" + to_string (lo)));
221   b = stil.extent_box ();
222   b[X_AXIS] = Interval (0, 0);
223
224   return Stencil (b, stil.expr ());
225 }
226
227 ADD_INTERFACE (System_start_delimiter, "system-start-delimiter-interface",
228                "The brace, bracket or bar in front of the system. "
229                "It is implemented as a spanner.",
230                "collapse-height thickness "
231                "arch-height arch-angle arch-thick arch-width bracket-thick glyph");