]> git.donarmstrong.com Git - lilypond.git/blob - lily/stem-tremolo.cc
release: 1.3.86
[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--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #include "stem-tremolo.hh"
11 #include "debug.hh"
12 #include "beam.hh"
13 #include "paper-def.hh"
14 #include "lookup.hh"
15 #include "stem.hh"
16 #include "item.hh"
17 #include "staff-symbol-referencer.hh"
18 #include "directional-element-interface.hh"
19
20 /*
21   TODO:
22     lengthen stem if necessary
23  */
24
25 void
26 Stem_tremolo::set_interface (Score_element *me)
27 {
28 }
29
30
31 Interval
32 Stem_tremolo::dim_callback (Score_element * se, Axis )
33 {
34   Real space = Staff_symbol_referencer::staff_space (se);
35   return Interval (-space, space);
36 }
37
38
39
40 MAKE_SCHEME_CALLBACK(Stem_tremolo,brew_molecule);
41 SCM
42 Stem_tremolo::brew_molecule (SCM smob)
43 {
44   Score_element *me= unsmob_element (smob);
45   Score_element * stem = unsmob_element (me->get_elt_property ("stem"));
46   Score_element * beam = Stem::beam_l (stem);
47   
48   Real dydx;
49   if (beam)
50     {
51       Real dy = 0;
52       SCM s = beam->get_elt_property ("height");
53       if (gh_number_p (s))
54         dy = gh_scm2double (s);
55       Real dx = Beam::last_visible_stem (beam)->relative_coordinate (0, X_AXIS)
56         - Beam::first_visible_stem (beam)->relative_coordinate (0, X_AXIS);
57       dydx = dx ? dy/dx : 0;
58     }
59   else
60     // urg
61     dydx = 0.25;
62
63   Real ss = Staff_symbol_referencer::staff_space (stem);
64   Real thick = gh_scm2double (me->get_elt_property ("beam-thickness"));
65   Real width = gh_scm2double (me->get_elt_property ("beam-width"));
66   width *= ss;
67   thick *= ss;
68   
69   Molecule a (me->lookup_l ()->beam (dydx, width, thick));
70   a.translate (Offset (-width/2, width / 2 * dydx));
71   
72   int tremolo_flags;
73   SCM s = me->get_elt_property ("tremolo-flags");
74   if (gh_number_p (s))
75     tremolo_flags = gh_scm2int (s);
76   else
77     // huh?
78     tremolo_flags = 1;
79
80   int mult = beam ? Beam::get_multiplicity (beam) : 0;
81   Real interbeam_f = me->paper_l ()->interbeam_f (mult);
82   Molecule mol; 
83   for (int i = 0; i < tremolo_flags; i++)
84     {
85       Molecule b (a);
86       b.translate_axis (interbeam_f * i, Y_AXIS);
87       mol.add_molecule (b);
88     }
89   if (tremolo_flags)
90     mol.translate_axis (-mol.extent (Y_AXIS).center (), Y_AXIS);
91   if (beam)
92     {
93       // ugh, rather calc from Stem_tremolo_req
94       int beams_i = Stem::beam_count(stem, RIGHT) >? Stem::beam_count (stem, LEFT);
95       mol.translate (Offset(stem->relative_coordinate (0, X_AXIS) - me->relative_coordinate (0, X_AXIS),
96                             Stem::stem_end_position (stem ) * ss / 2 - 
97                             Directional_element_interface::get (beam) * beams_i * interbeam_f));
98     }
99   else
100     {  
101       /*
102         Beams should intersect one beamthickness below stem end
103       */
104       Real dy = Stem::stem_end_position (stem ) * ss / 2;
105       dy -= mol.extent (Y_AXIS).length () / 2 *  Stem::get_direction (stem );
106
107       /*
108         uhg.  Should use relative coords and placement
109       */
110       Real whole_note_correction;
111       if (Stem::invisible_b (stem ))
112         whole_note_correction = -Stem::get_direction (stem )
113           * Stem::support_head (stem )->extent (X_AXIS).length () / 2;
114       else
115         whole_note_correction = 0;
116          
117       mol.translate (Offset (stem->relative_coordinate (0, X_AXIS) - me->relative_coordinate (0, X_AXIS) +
118                              whole_note_correction, dy));
119     }
120   
121   return mol.create_scheme();
122 }
123
124
125 void
126 Stem_tremolo::set_stem (Score_element*me,Score_element *s)
127 {
128   me->set_elt_property ("stem", s->self_scm ());
129 }
130