]> git.donarmstrong.com Git - lilypond.git/blob - lily/span-arpeggio-engraver.cc
* lily/context.cc (where_defined): also assign value in
[lilypond.git] / lily / span-arpeggio-engraver.cc
1 /*
2   span-arpeggio-engraver.cc -- implement Span_arpeggio_engraver
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2000--2005 Jan Nieuwenhuizen <janneke@gnu.org>
7
8   Han-Wen Nienhuys <hanwen@xs4all.nl>
9 */
10
11 #include "engraver.hh"
12 #include "arpeggio.hh"
13 #include "pointer-group-interface.hh"
14 #include "side-position-interface.hh"
15 #include "staff-symbol-referencer.hh"
16
17 /**
18    Make arpeggios that span multiple staves.  Catch arpeggios, and span a
19    Span_arpeggio over them if we find more than two arpeggios.
20 */
21 class Span_arpeggio_engraver : public Engraver
22 {
23 public:
24   TRANSLATOR_DECLARATIONS (Span_arpeggio_engraver);
25   DECLARE_ACKNOWLEDGER(arpeggio);
26
27 protected:
28   PRECOMPUTED_VIRTUAL void process_acknowledged ();
29   PRECOMPUTED_VIRTUAL void stop_translation_timestep ();
30
31 private:
32   Item *span_arpeggio_;
33   Link_array<Grob> arpeggios_;
34 };
35
36 Span_arpeggio_engraver::Span_arpeggio_engraver ()
37 {
38   span_arpeggio_ = 0;
39 }
40
41 void
42 Span_arpeggio_engraver::acknowledge_arpeggio (Grob_info info)
43 {
44   if (info.origin_contexts (this).size ()) // huh? what's this test for? 
45     {
46       arpeggios_.push (info.grob ());
47     }
48 }
49
50 void
51 Span_arpeggio_engraver::process_acknowledged ()
52 {
53   /*
54     connectArpeggios is slightly brusque; we should really read a grob
55     property of the caught non-span arpeggios. That way, we can have
56
57     both non-connected and connected arps in one pianostaff.
58
59   */
60   if (!span_arpeggio_ && arpeggios_.size () > 1
61       && to_boolean (get_property ("connectArpeggios")))
62     {
63       span_arpeggio_ = make_item ("Arpeggio", SCM_EOL);
64     }
65 }
66
67 void
68 Span_arpeggio_engraver::stop_translation_timestep ()
69 {
70   if (span_arpeggio_)
71     {
72       /*
73         we do this very late, to make sure we also catch `extra'
74         side-pos support like accidentals.
75       */
76       for (int j = 0; j < arpeggios_.size (); j++)
77         {
78           extract_grob_set (arpeggios_[j], "stems", stems);
79           for (int i = stems.size() ; i--;)
80             Pointer_group_interface::add_grob (span_arpeggio_, ly_symbol2scm ("stems"),
81                                                stems[i]);
82
83           extract_grob_set (arpeggios_[j], "side-support-elements", sses);
84           for (int i = sses.size() ; i--;)
85             Pointer_group_interface::add_grob (span_arpeggio_, ly_symbol2scm ("side-support-elements"),
86                                                sses[i]);
87
88           /*
89             we can't kill the children, since we don't want to the
90             previous note to bump into the span arpeggio; so we make
91             it transparent.  */
92           arpeggios_[j]->set_property ("print-function", SCM_EOL);
93         }
94
95       span_arpeggio_ = 0;
96     }
97   arpeggios_.clear ();
98 }
99
100 #include "translator.icc"
101
102 ADD_ACKNOWLEDGER(Span_arpeggio_engraver,arpeggio);
103 ADD_TRANSLATOR (Span_arpeggio_engraver,
104                 /* descr */ "",
105                 /* creats*/ "Arpeggio",
106                 /* accepts */ "",
107                 /* reads */ "connectArpeggios",
108                 /* write */ "");