2 rhythmic-column-grav.cc -- implement Rhythmic_column_engraver
4 source file of the GNU LilyPond music typesetter
6 (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
10 #include "engraver.hh"
11 #include "rhythmic-head.hh"
13 #include "note-column.hh"
14 #include "dot-column.hh"
17 #include "group-interface.hh"
22 this engraver glues together stems, rests and note heads into a NoteColumn
25 It also generates spacing objects. Originally, we have tried to
26 have the spacing functionality at different levels.
28 - by simply using the sequence of Separation-item as
29 spacing-sequences (at staff level). Unfortunately, this fucks up if
30 there are different kinds of tuplets in different voices (8th and
31 8ths triplets combined made the program believe there were 1/12 th
34 Doing it in a separate engraver using timing info is generally
35 complicated (start/end time management), and fucks up if a voice
38 Now we do it from here again. This has the problem that voices can
39 appear and disappear at will, leaving lots of loose ends (the note
40 spacing engraver don't know where to connect the last note of the
41 voice on the right with), but we don't complain about those, and let
42 the default spacing do its work.
47 class Rhythmic_column_engraver :public Engraver
49 Link_array<Grob> rheads_;
57 TRANSLATOR_DECLARATIONS (Rhythmic_column_engraver);
60 virtual void acknowledge_grob (Grob_info);
61 virtual void process_acknowledged_grobs ();
62 virtual void stop_translation_timestep ();
67 Rhythmic_column_engraver::Rhythmic_column_engraver ()
79 Rhythmic_column_engraver::process_acknowledged_grobs ()
85 note_column_ = make_item ("NoteColumn",rheads_[0]->self_scm ());
87 spacing_ = make_item ("NoteSpacing", SCM_EOL);
88 spacing_->set_property ("left-items", scm_cons (note_column_->self_scm (), SCM_EOL));
95 Pointer_group_interface::add_grob (last_spacing_,
96 ly_symbol2scm ("right-items" ),
102 for (int i=0; i < rheads_.size (); i++)
104 if (!rheads_[i]->get_parent (X_AXIS))
105 Note_column::add_head (note_column_, rheads_[i]);
107 rheads_.set_size (0);
114 && !dotcol_->get_parent (X_AXIS))
116 Note_column::set_dotcol (note_column_, dotcol_);
120 && !stem_->get_parent (X_AXIS))
122 Note_column::set_stem (note_column_, stem_);
130 Rhythmic_column_engraver::acknowledge_grob (Grob_info i)
132 Item * item = dynamic_cast <Item *> (i.grob_);
133 if (!item || item->get_parent (X_AXIS))
135 if (Stem::has_interface (item))
139 else if (Rhythmic_head::has_interface (item))
143 else if (Dot_column::has_interface (item))
150 Rhythmic_column_engraver::stop_translation_timestep ()
156 last_spacing_ = spacing_;
166 ENTER_DESCRIPTION (Rhythmic_column_engraver,
167 /* descr */ "Generates NoteColumn, an objects that groups stems, noteheads and rests.",
168 /* creats*/ "NoteColumn NoteSpacing",
170 /* acks */ "stem-interface rhythmic-head-interface dot-column-interface",