]> git.donarmstrong.com Git - lilypond.git/blob - lily/hairpin.cc
* lily/hairpin.cc: lengthen hairpin if space is available.
[lilypond.git] / lily / hairpin.cc
1 /*
2   hairpin.cc -- implement Hairpin
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #include "staff-symbol-referencer.hh"
10 #include "stencil.hh"
11 #include "line-interface.hh"
12 #include "hairpin.hh"
13 #include "spanner.hh"
14 #include "font-interface.hh"
15 #include "dimensions.hh"
16 #include "output-def.hh"
17 #include "warn.hh"
18 #include "paper-column.hh"
19 #include "lookup.hh"
20
21 MAKE_SCHEME_CALLBACK (Hairpin, print, 1);
22
23 SCM
24 Hairpin::print (SCM smob) 
25 {
26   Grob *me= unsmob_grob (smob);
27   Spanner *spanner = dynamic_cast<Spanner*> (me);
28
29   SCM s = me->get_property ("grow-direction");
30   if (!is_direction (s))
31     {
32       me->suicide ();
33       return SCM_EOL;
34     }
35   
36   Direction grow_dir = to_dir (s);
37
38   Real padding = scm_to_double (me->get_property ("bound-padding"));
39  
40   Drul_array<bool> broken;
41   Drul_array<Item*> bounds ;
42   Direction d = LEFT;
43   do
44     {
45       bounds[d] = spanner->get_bound (d);
46       broken[d] = bounds[d]->break_status_dir () != CENTER;
47     }
48   while (flip (&d) != LEFT);
49
50   Grob *common = bounds[LEFT]->common_refpoint (bounds[RIGHT], X_AXIS);
51   Drul_array<Real> x_points ;
52   
53   do
54     {
55       Item *b = bounds[d];
56       x_points[d] = b->relative_coordinate (common, X_AXIS);
57       if (broken [d])
58         {
59           if (d == LEFT)
60             x_points[d] = b->extent (common,X_AXIS)[RIGHT] ;
61         }
62       else
63         {
64           if (dynamic_cast<Paper_column*> (b))
65             {
66               bool neighbor_found = false;
67               for (SCM  adj = me->get_property ("adjacent-hairpins");
68                    ly_c_pair_p (adj); adj = ly_cdr (adj))
69                 {
70                   /*
71                    FIXME: this will fuck up in case of polyphonic
72                    notes in other voices. Need to look at note-columns
73                    in the current staff/voice.
74                   */
75                   
76                   Spanner *pin = unsmob_spanner (ly_car (adj));
77                   if (pin
78                       && (pin->get_bound (LEFT)->get_column() == b
79                           || pin->get_bound (RIGHT)->get_column() == b))
80                     neighbor_found = true; 
81                 }
82               
83               /*
84                 If we're hung on a paper column, that means we're not
85                 adjacent to a text-dynamic, and we may move closer. We
86                 make the padding a little smaller, here.
87               */
88               Interval e = robust_relative_extent (b, common, X_AXIS);
89               x_points[d] =
90                 neighbor_found ? e.center() - d * padding / 3 : e[d];
91             }
92           else
93             {
94               Interval e = b->extent (common, X_AXIS);
95               if (!e.is_empty ())
96                 x_points[d] = e[-d] - d*padding;
97             }
98         }
99     }
100   while (flip (&d) != LEFT);
101
102
103   Real width = x_points[RIGHT] - x_points[LEFT];
104
105   if (width < 0)
106     {
107       me->warning (_ ((grow_dir < 0) ? "decrescendo too small"
108                   : "crescendo too small"));
109       width = 0;
110     }
111
112   bool continued = broken[Direction (-grow_dir)];
113   Real height = robust_scm2double (me->get_property ("height"), 0.2) *
114     Staff_symbol_referencer::staff_space (me);
115
116   Real starth, endh;
117   if (grow_dir < 0)
118     {
119       starth = height;
120       endh = continued ? height/2 : 0.0;
121     }
122   else
123     {
124       starth = continued ? height/2 : 0.0;
125       endh = height;
126     }
127
128   /*
129     should do relative to staff-symbol staff-space?
130   */
131
132   Stencil mol;
133   mol  = Line_interface::line (me, Offset (0, starth), Offset (width, endh));
134   mol.add_stencil (Line_interface::line (me,
135                                          Offset (0, -starth),
136                                          Offset (width, -endh)));
137
138   mol.translate_axis (x_points[LEFT]
139                       - bounds[LEFT]->relative_coordinate (common, X_AXIS),
140                       X_AXIS);
141   return mol.smobbed_copy ();
142 }
143
144
145
146 ADD_INTERFACE (Hairpin, "hairpin-interface",
147   "A hairpin (de)crescendo.",
148   "grow-direction height bound-padding adjacent-hairpins");
149