lilypond-1.3.16
[lilypond.git] / lily / request-iterator.cc
blob9cbf798a4b3fa71b6995ddd86c216c75cb6d4966
1 /*
2 request-iterator.cc -- implement Request_chord_iterator
4 source file of the GNU LilyPond music typesetter
6 (c) 1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
9 #include "translator-group.hh"
10 #include "debug.hh"
11 #include "request-iterator.hh"
12 #include "music-list.hh"
13 #include "request.hh"
17 void
18 Request_chord_iterator::construct_children()
20 elt_length_mom_ =elt_l ()->length_mom ();
21 get_req_translator_l();
24 Request_chord*
25 Request_chord_iterator::elt_l () const
27 return (Request_chord*) music_l_;
30 Request_chord_iterator::Request_chord_iterator ()
32 last_b_ = false;
33 // cursor_ = elt_l ()->music_p_list_p_->head_;
34 cursor_ = 0;
38 bool
39 Request_chord_iterator::ok() const
41 return (elt_length_mom_ && !last_b_) || first_b_;
44 Moment
45 Request_chord_iterator::next_moment() const
47 Moment m (0);
48 if (!first_b_)
49 m = elt_length_mom_;
50 return m;
53 Music*
54 Request_chord_iterator::next_music_l ()
56 if (first_b_)
58 cursor_ = elt_l ()->music_p_list_p_->head_;
59 first_b_ = false;
61 else
63 if (cursor_)
64 cursor_ = cursor_->next_;
66 if (cursor_)
67 return cursor_->car_;
68 else
69 return 0;
72 void
73 Request_chord_iterator::do_print() const
75 #ifndef NPRINT
76 DOUT << "duration: " << elt_length_mom_;
77 #endif
80 void
81 Request_chord_iterator::do_process_and_next (Moment mom)
83 if (first_b_)
85 for (Cons<Music> *i = elt_l ()->music_p_list_p_->head_; i; i = i->next_)
87 if (Request * req_l = dynamic_cast<Request*> (i->car_))
89 bool gotcha = report_to_l()->try_music (req_l);
90 if (!gotcha)
91 req_l->warning (_f ("junking request: `%s\'", classname( req_l)));
93 else
94 i->car_->warning (_f ("Huh? Not a Request: `%s\'",
95 classname (i->car_)));
97 first_b_ = false;
100 if (mom >= elt_length_mom_)
101 last_b_ = true;