]> git.donarmstrong.com Git - lilypond.git/blob - lily/dynamic-text-spanner.cc
Fix some bugs in the dynamic engraver and PostScript backend
[lilypond.git] / lily / dynamic-text-spanner.cc
1 /*
2   dynamic-text-spanner.cc -- implement Text_spanner
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2000--2006 Jan Nieuwenhuizen <janneke@gnu.org>
7
8   Revised over good by Han-Wen.
9 */
10
11 #include "text-interface.hh"
12 #include "text-spanner.hh"
13 #include "line-spanner.hh"
14 #include "spanner.hh"
15 #include "font-interface.hh"
16 #include "dimensions.hh"
17 #include "output-def.hh"
18 #include "warn.hh"
19 #include "paper-column.hh"
20
21 class Dynamic_text_spanner
22 {
23 public:
24   DECLARE_SCHEME_CALLBACK (print, (SCM));
25   static bool has_interface (Grob *);
26 };
27
28 /*
29   This is a partial C&P from text-spanner.cc
30
31   Dynamic_text_spanner is similar, but
32
33   * does not require bracket functionality.
34
35   * should make room for spanning points (mf/f/mp texts).
36
37   * In the future, we should  support
38
39   cresc - - - - poco - - - a - - - - poco - - -
40
41   as well
42
43
44   The cut & paste is rather inelegant, but text-spanner was a failed
45   and buggy attempt at being generic.
46 */
47 MAKE_SCHEME_CALLBACK (Dynamic_text_spanner, print, 1);
48 SCM
49 Dynamic_text_spanner::print (SCM smob)
50 {
51   Grob *me = unsmob_grob (smob);
52   Spanner *spanner = dynamic_cast<Spanner *> (me);
53
54   Grob *common = spanner->get_bound (LEFT)->common_refpoint (spanner->get_bound (RIGHT), X_AXIS);
55   Output_def *layout = me->layout ();
56
57   Interval span_points;
58   Drul_array<bool> broken;
59   Direction d = LEFT;
60   do
61     {
62       Item *b = spanner->get_bound (d);
63       broken[d] = b->break_status_dir () != CENTER;
64
65       if (broken[d])
66         {
67           if (d == LEFT)
68             span_points[d] = spanner->get_broken_left_end_align ();
69           else
70             span_points[d] = b->relative_coordinate (common, X_AXIS);
71         }
72       else
73         {
74           Real pad = 0.0;
75           Real encl = d;
76           if (b->internal_has_interface (ly_symbol2scm ("dynamic-interface")))
77             {
78               pad = robust_scm2double (me->get_property ("bound-padding"), 0.0);
79               encl = -d;
80             }
81
82           Interval ext = b->extent (common, X_AXIS);
83           span_points[d] = -d * pad
84             + robust_relative_extent (b, common, X_AXIS)
85             .linear_combination (encl);
86         }
87     }
88   while (flip (&d) != LEFT);
89
90   Stencil m;
91   SCM properties = Font_interface::text_font_alist_chain (me);
92   SCM edge_text = me->get_property ("edge-text");
93   Drul_array<Stencil> edge;
94   if (scm_is_pair (edge_text))
95     {
96       Direction d = LEFT;
97       do
98         {
99           if (broken[d])
100             continue;
101
102           SCM text = index_get_cell (edge_text, d);
103
104           if (Text_interface::is_markup (text))
105             edge[d] = *unsmob_stencil (Text_interface::interpret_markup (layout->self_scm (), properties, text));
106
107           if (!edge[d].is_empty ())
108             edge[d].align_to (Y_AXIS, CENTER);
109         }
110       while (flip (&d) != LEFT);
111     }
112
113   do
114     {
115       Interval ext = edge[d].extent (X_AXIS);
116       Real pad = robust_scm2double (me->get_property ("bound-padding"), 0.0);
117       if (!ext.is_empty ())
118         {
119           edge[d].translate_axis (span_points[d], X_AXIS);
120           m.add_stencil (edge[d]);
121           span_points[d] += -d * (ext[-d] + pad);
122         }
123     }
124   while (flip (&d) != LEFT);
125
126   if (!span_points.is_empty ()
127       && span_points.length () > robust_scm2double (me->get_property ("dash-period"), 0.0))
128     {
129       Stencil l = Line_spanner::line_stencil (me,
130                                               Offset (span_points[LEFT], 0),
131                                               Offset (span_points[RIGHT], 0));
132       m.add_stencil (l);
133     }
134   m.translate_axis (- me->relative_coordinate (common, X_AXIS), X_AXIS);
135   return m.smobbed_copy ();
136 }
137
138 ADD_INTERFACE (Dynamic_text_spanner,
139                "dynamic-text-spanner-interface",
140                "A text spanner for crescendo texts",
141                
142                "bound-padding "
143                "dash-period "
144                "dash-fraction "
145                "edge-text "
146                "style "
147                "thickness");
148