]> git.donarmstrong.com Git - lilypond.git/blob - lily/auto-change-iterator.cc
Issue 4429: fix timekeeping in Auto_change_iterator and Part_combine_iterator
[lilypond.git] / lily / auto-change-iterator.cc
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 1999--2015 Han-Wen Nienhuys <hanwen@xs4all.nl>
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 "change-iterator.hh"
21 #include "context.hh"
22 #include "direction.hh"
23 #include "international.hh"
24 #include "music.hh"
25 #include "music-wrapper-iterator.hh"
26
27 class Auto_change_iterator : public Music_wrapper_iterator
28 {
29 public:
30   DECLARE_SCHEME_CALLBACK (constructor, ());
31
32   Auto_change_iterator ();
33
34 protected:
35   virtual void do_quit ();
36   virtual void construct_children ();
37   virtual void process (Moment);
38   vector<Pitch> pending_pitch (Moment) const;
39 private:
40   SCM split_list_;
41   Direction where_dir_;
42
43   Context_handle up_;
44   Context_handle down_;
45 };
46
47 void
48 Auto_change_iterator::process (Moment m)
49 {
50   Music_wrapper_iterator::process (m);
51
52   Moment *splitm = 0;
53
54   for (; scm_is_pair (split_list_); split_list_ = scm_cdr (split_list_))
55     {
56       splitm = unsmob<Moment> (scm_caar (split_list_));
57       if (*splitm > m)
58         break;
59
60       SCM tag = scm_cdar (split_list_);
61       Direction d = to_dir (tag);
62
63       if (d && d != where_dir_)
64         {
65           where_dir_ = d;
66           string to_id = (d >= 0) ? "up" : "down";
67           // N.B. change_to() returns an error message. Silence is the legacy
68           // behavior here, but maybe that should be changed.
69           Change_iterator::change_to (*child_iter_,
70                                       ly_symbol2scm ("Staff"),
71                                       to_id);
72         }
73     }
74 }
75
76 Auto_change_iterator::Auto_change_iterator ()
77 {
78   where_dir_ = CENTER;
79   split_list_ = SCM_EOL;
80 }
81
82 void
83 Auto_change_iterator::construct_children ()
84 {
85   split_list_ = get_music ()->get_property ("split-list");
86
87   SCM props = get_outlet ()->get_property ("trebleStaffProperties");
88   Context *up = get_outlet ()->find_create_context (ly_symbol2scm ("Staff"),
89                                                     "up", props);
90
91   props = get_outlet ()->get_property ("bassStaffProperties");
92   Context *down = get_outlet ()->find_create_context (ly_symbol2scm ("Staff"),
93                                                       "down", props);
94
95   up_.set_context (up);
96   down_.set_context (down);
97
98   Context *voice = up->find_create_context (ly_symbol2scm ("Voice"),
99                                             "", SCM_EOL);
100   set_context (voice);
101   Music_wrapper_iterator::construct_children ();
102 }
103
104 void
105 Auto_change_iterator::do_quit ()
106 {
107   up_.set_context (0);
108   down_.set_context (0);
109 }
110
111 IMPLEMENT_CTOR_CALLBACK (Auto_change_iterator);