* lily/stem.cc (get_default_stem_end_position): lengthen stems for
[lilypond.git] / lily / stem-engraver.cc
blob4c7946af055b46e5e9bfdc18cbd0ec0957db00cb
1 /*
2 stem-grav.cc -- implement Stem_engraver
4 source file of the GNU LilyPond music typesetter
6 (c) 1997--2003 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
9 #include "staff-symbol-referencer.hh"
10 #include "rhythmic-head.hh"
11 #include "stem.hh"
12 #include "event.hh"
13 #include "misc.hh"
14 #include "stem-tremolo.hh"
15 #include "item.hh"
16 #include "translator-group.hh"
17 #include "engraver.hh"
21 /**
22 Make stems upon receiving noteheads.
24 class Stem_engraver : public Engraver
26 TRANSLATOR_DECLARATIONS(Stem_engraver);
27 protected:
28 virtual void acknowledge_grob (Grob_info);
29 virtual void stop_translation_timestep ();
30 virtual bool try_music (Music*);
32 private:
33 Grob *stem_;
34 Grob *tremolo_;
35 Music *rhythmic_ev_;
36 Music* tremolo_ev_;
39 Stem_engraver::Stem_engraver ()
41 tremolo_ev_ = 0;
42 stem_ = 0;
43 tremolo_ = 0;
44 rhythmic_ev_ =0;
48 void
49 Stem_engraver::acknowledge_grob (Grob_info i)
51 Grob* h = i.grob_;
52 if (Rhythmic_head::has_interface (h))
54 if (Rhythmic_head::get_stem (h))
55 return;
57 /* Reverted to the old method so chord tremolos work again. /MB
59 int duration_log = 0;
61 Music * m = i.music_cause ();
62 if (m->is_mus_type ("rhythmic-event"))
63 duration_log = unsmob_duration (m->get_mus_property ("duration"))-> duration_log ();
65 if (!stem_)
67 stem_ = new Item (get_property ("Stem"));
69 stem_->set_grob_property ("duration-log", gh_int2scm (duration_log));
71 if (tremolo_ev_)
74 Stem tremolo is never applied to a note by default,
75 is must me evuested. But there is a default for the
76 tremolo value:
78 c4:8 c c:
80 the first and last (quarter) note bothe get one tremolo flag.
82 int evuested_type = gh_scm2int (tremolo_ev_->get_mus_property ("tremolo-type"));
83 SCM f = get_property ("tremoloFlags");
84 if (!evuested_type)
85 if (gh_number_p (f))
86 evuested_type = gh_scm2int (f);
87 else
88 evuested_type = 8;
89 else
90 daddy_trans_->set_property ("tremoloFlags", gh_int2scm (evuested_type));
92 int tremolo_flags = intlog2 (evuested_type) - 2
93 - (duration_log > 2 ? duration_log - 2 : 0);
94 if (tremolo_flags <= 0)
96 tremolo_ev_->origin()->warning (_("tremolo duration is too long"));
97 tremolo_flags = 0;
100 if (tremolo_flags)
102 tremolo_ = new Item (get_property ("StemTremolo"));
103 announce_grob(tremolo_, tremolo_ev_->self_scm());
106 The number of tremolo flags is the number of flags of
107 the tremolo-type minus the number of flags of the note
108 itself.
110 tremolo_->set_grob_property ("flag-count",
111 gh_int2scm (tremolo_flags));
112 tremolo_->set_parent (stem_, X_AXIS);
113 stem_->set_grob_property ("tremolo-flag", tremolo_->self_scm ());
118 We announce the cause of the head as cause of the stem.
119 The stem needs a rhythmic structure to fit it into a beam. */
120 announce_grob(stem_, i.music_cause ()->self_scm());
123 if (Stem::duration_log (stem_) != duration_log)
125 i.music_cause ()->origin ()->warning (_f ("Adding note head to incompatible stem (type = %d)", 1 << Stem::duration_log (stem_))
126 + _f ("Don't you want polyphonic voices instead?")
130 Stem::add_head (stem_,h);
134 void
135 Stem_engraver::stop_translation_timestep ()
137 if (tremolo_)
139 Stem_tremolo::set_stem (tremolo_, stem_);
140 typeset_grob (tremolo_);
141 tremolo_ = 0;
144 if (stem_)
146 SCM prop = get_property ("stemLeftBeamCount");
147 if (gh_number_p (prop))
149 Stem::set_beaming (stem_,gh_scm2int (prop),LEFT);
150 daddy_trans_->unset_property (ly_symbol2scm ("stemLeftBeamCount"));
152 prop = get_property ("stemRightBeamCount");
153 if (gh_number_p (prop))
155 Stem::set_beaming (stem_,gh_scm2int (prop), RIGHT);
156 daddy_trans_->unset_property (ly_symbol2scm ("stemRightBeamCount"));
159 typeset_grob (stem_);
160 stem_ = 0;
164 tremolo_ev_ = 0;
167 bool
168 Stem_engraver::try_music (Music* r)
170 if (r->is_mus_type ("tremolo-event"))
172 tremolo_ev_ = r;
173 return true;
175 return false;
178 ENTER_DESCRIPTION(Stem_engraver,
179 /* descr */ "Create stems and single-stem tremolos. It also works together with "
180 "the beam engraver for overriding beaming.",
181 /* creats*/ "Stem StemTremolo",
182 /* accepts */ "tremolo-event",
183 /* acks */ "rhythmic-head-interface",
184 /* reads */ "tremoloFlags stemLeftBeamCount stemRightBeamCount",
185 /* write */ "");