]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/unfolded-repeat-iterator.hh
release: 1.3.92
[lilypond.git] / lily / include / unfolded-repeat-iterator.hh
1 /*   
2   unfolded-repeat-iterator.hh -- declare Unfolded_repeat_iterator
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 1999--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #ifndef UNFOLDED_REPEAT_ITERATOR_HH
11 #define UNFOLDED_REPEAT_ITERATOR_HH
12
13 #include "music-iterator.hh"
14
15 /**
16    Iterate repeats.  First do body, then alternatives one by one,
17    optionally interspersed by the body.
18  */
19 class Unfolded_repeat_iterator : public Music_iterator
20 {
21   void add_repeat_command (SCM);
22
23 public:
24   VIRTUAL_COPY_CONS (Music_iterator);
25   /**
26      How often have we done the body (assuming bodies are interspersed.)?
27    */
28   int done_count_;
29
30   /*
31     are we now busy doing the body?
32
33    */
34   bool do_main_b_;
35
36   /** How far have we progressed into the repeat.
37       This excludes the elt currently being iterated.
38   */
39   Moment here_mom_;
40   int alternative_count_i_;
41   Music_iterator * current_iter_p_;
42   
43   /// pointer to the alternative that will be processed next.
44   SCM alternative_cons_;
45   ~Unfolded_repeat_iterator();
46   Unfolded_repeat_iterator ();
47
48 protected:  
49   virtual void construct_children ();
50   virtual Moment pending_moment () const;
51   virtual void process (Moment);
52   virtual Music_iterator *try_music_in_children (Music *) const;
53   virtual void skip (Moment);
54   virtual SCM get_music (Moment) const;
55   
56   virtual bool ok () const;
57   virtual void next_element (bool side_effect);
58 };
59 #endif /* UNFOLDED_REPEAT_ITERATOR_HH */
60