]> git.donarmstrong.com Git - lilypond.git/blob - lily/piano-pedal-bracket.cc
* The grand 2005-2006 replace.
[lilypond.git] / lily / piano-pedal-bracket.cc
1 /*
2   piano-pedal-bracket.cc -- implement  Piano_pedal_bracket
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2003--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #include "stencil.hh"
10 #include "spanner.hh"
11 #include "item.hh"
12 #include "tuplet-bracket.hh"
13
14 struct Piano_pedal_bracket
15 {
16   DECLARE_SCHEME_CALLBACK (print, (SCM));
17   static bool has_interface (Grob *);
18 };
19
20 MAKE_SCHEME_CALLBACK (Piano_pedal_bracket, print, 1);
21 SCM
22 Piano_pedal_bracket::print (SCM smob)
23 {
24   Spanner *me = dynamic_cast<Spanner *> (unsmob_grob (smob));
25   Spanner *orig = dynamic_cast<Spanner *> (me->original ());
26
27   Drul_array<bool> broken (false, false);
28   Drul_array<Real> height = robust_scm2drul
29     (me->get_property ("edge-height"), Interval (0, 0));
30   Drul_array<Real> shorten = robust_scm2drul
31     (me->get_property ("shorten-pair"), Interval (0, 0));
32   Drul_array<Real> flare = robust_scm2drul
33     (me->get_property ("bracket-flare"), Interval (0, 0));
34
35   Grob *common = me->get_bound (LEFT)
36     ->common_refpoint (me->get_bound (RIGHT), X_AXIS);
37   Grob *textbit = unsmob_grob (me->get_object ("pedal-text"));
38
39   if (textbit)
40     common = common->common_refpoint (textbit, X_AXIS);
41
42   Interval span_points (0, 0);
43   Direction d = LEFT;
44   do
45     {
46       Item *b = me->get_bound (d);
47       broken[d] = b->break_status_dir () != CENTER;
48       if (broken[d])
49         {
50           if (orig
51               && ((d == RIGHT && me->get_break_index () != orig->broken_intos_.size () - 1)
52                   || (d == LEFT && me->get_break_index ())))
53             height[d] = 0.0;
54           else
55             flare[d] = 0.0;
56         }
57
58       Interval ext = robust_relative_extent (b, common, X_AXIS);
59       span_points[d] = ext [broken[d] ? RIGHT : LEFT];
60     }
61   while (flip (&d) != LEFT);
62
63   /* For 'Mixed' style pedals, i.e.  a bracket preceded by text:  Ped._____|
64      need to shorten by the extent of the text grob
65   */
66   if (textbit)
67     {
68       height[LEFT] = 0;
69
70       Real padding = robust_scm2double (me->get_property ("bound-padding"), 0);
71
72       span_points[LEFT] = padding
73         + robust_relative_extent (textbit, common, X_AXIS)[RIGHT];
74     }
75
76   Stencil m;
77   if (!span_points.is_empty ()
78       && span_points.length () > 0.001)
79     {
80       m = Tuplet_bracket::make_bracket (me, Y_AXIS,
81                                         Offset (span_points.length (), 0),
82                                         height,
83                                         Interval (),
84                                         flare, shorten);
85     }
86   m.translate_axis (span_points[LEFT]
87                     - me->relative_coordinate (common, X_AXIS), X_AXIS);
88   return m.smobbed_copy ();
89 }
90
91 ADD_INTERFACE (Piano_pedal_bracket, "piano-pedal-bracket-interface",
92                "The bracket of the piano pedal.  It can be tuned through the regular "
93                "bracket properties.",
94                "bound-padding edge-height shorten-pair bracket-flare pedal-text");