]> git.donarmstrong.com Git - lilypond.git/blob - lily/glissando-engraver.cc
Allows for individual glissandi between members of NoteColumns.
[lilypond.git] / lily / glissando-engraver.cc
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 2000--2011 Jan Nieuwenhuizen <janneke@gnu.org>
5
6   LilyPond is free software: you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation, either version 3 of the License, or
9   (at your option) any later version.
10
11   LilyPond is distributed in the hope that it will be useful,
12   but WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   GNU General Public License for more details.
15
16   You should have received a copy of the GNU General Public License
17   along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #include "engraver.hh"
21
22 #include "international.hh"
23 #include "pointer-group-interface.hh"
24 #include "rhythmic-head.hh"
25 #include "spanner.hh"
26 #include "stream-event.hh"
27 #include "warn.hh"
28 #include "item.hh"
29
30 #include "translator.icc"
31
32 class Glissando_engraver : public Engraver
33 {
34 public:
35   TRANSLATOR_DECLARATIONS (Glissando_engraver);
36
37 protected:
38   DECLARE_TRANSLATOR_LISTENER (glissando);
39   DECLARE_ACKNOWLEDGER (note_column);
40   virtual void finalize ();
41
42   void stop_translation_timestep ();
43   void process_music ();
44
45 private:
46   vector<Spanner *> lines_;
47   bool start_glissandi;
48   bool stop_glissandi;
49
50   Stream_event *event_;
51   SCM map;
52   vector<vsize> note_column_1;
53   vector<vsize> note_column_2;
54 };
55
56 Glissando_engraver::Glissando_engraver ()
57 {
58   event_ = 0;
59   map = SCM_EOL;
60   start_glissandi = false;
61   stop_glissandi = false;
62 }
63
64 IMPLEMENT_TRANSLATOR_LISTENER (Glissando_engraver, glissando);
65 void
66 Glissando_engraver::listen_glissando (Stream_event *ev)
67 {
68   ASSIGN_EVENT_ONCE (event_, ev);
69 }
70
71 void
72 Glissando_engraver::process_music ()
73 {
74   if (event_)
75     start_glissandi = true;
76 }
77
78 void
79 Glissando_engraver::acknowledge_note_column (Grob_info info)
80 {
81   Grob *g = info.grob ();
82   if (start_glissandi)
83     {
84       extract_grob_set (g, "note-heads", note_heads);
85       map = get_property ("glissandoMap");
86       if (map == SCM_EOL)
87         for (vsize i = 0; i < note_heads.size (); i++)
88           {
89             note_column_1.push_back (i);
90             note_column_2.push_back (i);
91           }
92       else
93         for (SCM m = map; scm_is_pair (m); m = scm_cdr (m))
94           {
95             SCM candidate = scm_car (m);
96             if (!scm_is_pair (candidate))
97               continue;
98             int n1 = robust_scm2int (scm_car (candidate), -1);
99             int n2 = robust_scm2int (scm_cdr (candidate), -1);
100             if (n1 < 0 || n2 < 0 || n1 >= note_heads.size ())
101               continue;
102             note_column_1.push_back (vsize (n1));
103             note_column_2.push_back (vsize (n2));
104           }
105       for (vsize i=0; i < note_column_1.size (); i++)
106         {
107           lines_.push_back (make_spanner ("Glissando", event_->self_scm ()));
108           lines_.back ()->set_bound (LEFT, note_heads[note_column_1[i]]);
109         }
110     }
111
112   if (stop_glissandi)
113     {
114       extract_grob_set (g, "note-heads", note_heads);
115       int glissando_index = 0;
116       for (vsize i=0; i < note_column_1.size (); i++)
117         {
118           if (note_column_2[i] >= note_heads.size ())
119             lines_[i]->suicide ();
120           else
121             {
122               lines_[i]->set_bound (RIGHT, note_heads[note_column_2[i]]);
123               lines_[i]->set_property ("glissando-index", scm_from_int (glissando_index));
124               glissando_index++;
125               announce_end_grob (lines_[i], note_heads[note_column_2[i]]->self_scm ());
126             }
127         }
128       lines_.clear ();
129       note_column_1.clear ();
130       note_column_2.clear ();
131       stop_glissandi = false;
132     }      
133 }
134
135 void
136 Glissando_engraver::stop_translation_timestep ()
137 {
138
139   if (start_glissandi)
140     {
141       if (stop_glissandi)
142         programming_error ("overwriting glissando");
143       stop_glissandi = true;
144     }
145
146   start_glissandi = false;
147   event_ = 0;
148 }
149
150 void
151 Glissando_engraver::finalize ()
152 {
153   if (!lines_.empty ())
154     {
155       string msg = _ ("unterminated glissando");
156
157       if (event_)
158         event_->origin ()->warning (msg);
159       else
160         warning (msg);
161
162       for (vsize i=0; i < lines_.size (); i++)
163         lines_[i]->suicide ();
164     }
165 }
166
167 ADD_ACKNOWLEDGER (Glissando_engraver, note_column);
168 ADD_TRANSLATOR (Glissando_engraver,
169                 /* doc */
170                 "Engrave glissandi.",
171
172                 /* create */
173                 "Glissando ",
174
175                 /* read */
176                 "glissandoMap ",
177
178                 /* write */
179                 ""
180                 );