]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/beaming-pattern.hh
Split WWW target in two stages WWW-1 and WWW-2
[lilypond.git] / lily / include / beaming-pattern.hh
1 /*
2   beaming-pattern.hh -- declare beaming-pattern.hh
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1999--2007 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #ifndef BEAMING_PATTERN_HH
10 #define BEAMING_PATTERN_HH
11
12 #include "std-vector.hh"
13 #include "moment.hh"
14 #include "lily-proto.hh"
15
16 struct Beaming_options
17 {
18   SCM grouping_;
19   bool subdivide_beams_;
20   Moment beat_length_;
21   Moment measure_length_;
22
23   Beaming_options ();
24   void from_context (Context*);  
25 };
26
27 struct Beam_rhythmic_element
28 {
29   Moment start_moment_;
30   Drul_array<int> beam_count_drul_;
31
32   Moment beat_start_;
33   Moment beat_length_;
34   Moment group_start_;
35   
36   Beam_rhythmic_element (Moment, int);
37   Beam_rhythmic_element ();
38
39   int count (Direction d);
40   void de_grace ();
41 };
42
43 /*
44   Generate beaming given durations of notes. Beam uses this to
45   set_beaming () for each of its stems.
46 */
47 class Beaming_pattern
48 {
49 public:
50   Beaming_pattern ();
51   
52   void beamify (Beaming_options const&);
53   void de_grace ();
54   void add_stem (Moment d, int beams);
55   int beamlet_count (int idx, Direction d) const;
56   
57 private:
58   vector<Beam_rhythmic_element> infos_;
59   void beamify (bool);
60   int beam_extend_count (Direction) const;
61   int best_splitpoint_index (bool *split) const;
62 };
63
64 #endif /* BEAMING_PATTERN_HH */