]> git.donarmstrong.com Git - lilypond.git/blob - lily/stem-tremolo.cc
* The grand 2005-2006 replace.
[lilypond.git] / lily / stem-tremolo.cc
1 /*
2   stem-tremolo.cc -- implement Stem_tremolo
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #include "stem-tremolo.hh"
10
11 #include "spanner.hh"
12 #include "beam.hh"
13 #include "directional-element-interface.hh"
14 #include "item.hh"
15 #include "lookup.hh"
16 #include "output-def.hh"
17 #include "staff-symbol-referencer.hh"
18 #include "stem.hh"
19 #include "warn.hh"
20
21 /* TODO: lengthen stem if necessary  */
22
23 MAKE_SCHEME_CALLBACK (Stem_tremolo, dim_callback, 1);
24
25 /* todo: init with cons.  */
26 SCM
27 Stem_tremolo::dim_callback (SCM e)
28 {
29   Grob *se = unsmob_grob (e);
30
31   Real space = Staff_symbol_referencer::staff_space (se);
32   return ly_interval2scm (Interval (-space, space));
33 }
34
35 MAKE_SCHEME_CALLBACK (Stem_tremolo, height, 1);
36 SCM
37 Stem_tremolo::height (SCM smob)
38 {
39   Grob *me = unsmob_grob (smob);
40
41   /* TODO: fixme. uncached? */
42   return ly_interval2scm (me->get_stencil ()
43                           ? me->get_stencil ()->extent (Y_AXIS)
44                           : Interval());
45 }
46
47 Stencil
48 Stem_tremolo::raw_stencil (Grob *me)
49 {
50   Grob *stem = unsmob_grob (me->get_object ("stem"));
51   Spanner *beam = Stem::get_beam (stem);
52
53   SCM slope = me->get_property ("slope");
54   Real dydx = 0.25;
55   if (scm_is_number (slope))
56     {
57       dydx = robust_scm2double (slope, 0.0);
58     }
59   else
60     {
61       if (beam)
62         {
63           Real dy = 0;
64           SCM s = beam->get_property ("positions");
65           if (is_number_pair (s))
66             dy = - scm_to_double (scm_car (s)) + scm_to_double (scm_cdr (s));
67
68           Real dx = Beam::last_visible_stem (beam)->relative_coordinate (0, X_AXIS)
69             - Beam::first_visible_stem (beam)->relative_coordinate (0, X_AXIS);
70           dydx = dx ? dy / dx : 0;
71         }
72     }
73   Real ss = Staff_symbol_referencer::staff_space (me);
74   Real thick = robust_scm2double (me->get_property ("beam-thickness"), 1);
75   Real width = robust_scm2double (me->get_property ("beam-width"), 1);
76   Real blot = me->layout ()->get_dimension (ly_symbol2scm ("blotdiameter"));
77
78   width *= ss;
79   thick *= ss;
80
81   Stencil a (Lookup::beam (dydx, width, thick, blot));
82   a.translate (Offset (-width * 0.5, width * 0.5 * dydx));
83
84   int tremolo_flags = 0;
85   SCM s = me->get_property ("flag-count");
86   if (scm_is_number (s))
87     tremolo_flags = scm_to_int (s);
88
89   if (!tremolo_flags)
90     {
91       programming_error ("no tremolo flags");
92
93       me->suicide ();
94       return Stencil ();
95     }
96
97   /* Who the fuck is 0.81 ? --hwn.   */
98   Real beam_translation = beam ? Beam::get_beam_translation (beam) : 0.81;
99
100   Stencil mol;
101   for (int i = 0; i < tremolo_flags; i++)
102     {
103       Stencil b (a);
104       b.translate_axis (beam_translation * i, Y_AXIS);
105       mol.add_stencil (b);
106     }
107   return mol;
108 }
109
110 MAKE_SCHEME_CALLBACK (Stem_tremolo, print, 1);
111 SCM
112 Stem_tremolo::print (SCM grob)
113 {
114   Grob *me = unsmob_grob (grob);
115   Grob *stem = unsmob_grob (me->get_object ("stem"));
116   if (!stem)
117     {
118       programming_error ("no stem for stem-tremolo");
119       return SCM_EOL;
120     }
121
122   Spanner *beam = Stem::get_beam (stem);
123   Direction stemdir = get_grob_direction (stem);
124   if (stemdir == 0)
125     stemdir = UP;
126
127   Real beam_translation
128     = (beam && beam->is_live ())
129     ? Beam::get_beam_translation (beam)
130     : 0.81;
131
132   Stencil mol = raw_stencil (me);
133   Interval mol_ext = mol.extent (Y_AXIS);
134   Real ss = Staff_symbol_referencer::staff_space (me);
135
136   // ugh, rather calc from Stem_tremolo_req
137   int beam_count = beam ? (Stem::beam_multiplicity (stem).length () + 1) : 0;
138
139   Real beamthickness = 0.0;
140   SCM sbt = (beam) ? beam->get_property ("thickness") : SCM_EOL;
141   if (scm_is_number (sbt))
142     beamthickness = scm_to_double (sbt) * ss;
143
144   Real end_y
145     = Stem::stem_end_position (stem) * ss / 2
146     - stemdir * (beam_count * beamthickness
147                  + (max (beam_count -1, 0) * beam_translation));
148
149   /* FIXME: the 0.33 ss is to compensate for the size of the note head.  */
150   Real chord_start_y = Stem::chord_start_y (stem) + 0.33 * ss * stemdir;
151
152   Real padding = beam_translation;
153
154   /* if there is a flag, just above/below the notehead.
155      if there is not enough space, center on remaining space,
156      else one beamspace away from stem end.  */
157   if (!beam && Stem::duration_log (stem) >= 3)
158     {
159       mol.align_to (Y_AXIS, -stemdir);
160       mol.translate_axis (chord_start_y + 0.5 * stemdir, Y_AXIS);
161     }
162   else if (stemdir * (end_y - chord_start_y) - 2 * padding - mol_ext.length ()
163            < 0.0)
164     mol.translate_axis (0.5 * (end_y + chord_start_y) - mol_ext.center (),
165                         Y_AXIS);
166   else
167     mol.translate_axis (end_y - stemdir * beam_translation -mol_ext [stemdir],
168                         Y_AXIS);
169
170   return mol.smobbed_copy ();
171 }
172
173 ADD_INTERFACE (Stem_tremolo, "stem-tremolo-interface",
174                "A beam slashing a stem to indicate a tremolo.",
175                "stem "
176                "slope "
177                "beam-width "
178                "beam-thickness "
179                "flag-count");