]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/beaming-pattern.hh
Merge branch 'master' into lilypond/translation
[lilypond.git] / lily / include / beaming-pattern.hh
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 1999--2011 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 #ifndef BEAMING_PATTERN_HH
21 #define BEAMING_PATTERN_HH
22
23 #include "std-vector.hh"
24 #include "moment.hh"
25 #include "lily-proto.hh"
26
27 struct Beaming_options
28 {
29   SCM grouping_;
30   bool subdivide_beams_;
31   Moment base_moment_;
32   Moment measure_length_;
33
34   Beaming_options ();
35   void from_context (Context *);
36 };
37
38 struct Beam_rhythmic_element
39 {
40   Moment start_moment_;
41   Drul_array<int> beam_count_drul_;
42
43   int rhythmic_importance_;
44   bool invisible_;
45
46   Rational factor_;
47
48   Beam_rhythmic_element (Moment, int, bool, Rational);
49   Beam_rhythmic_element ();
50
51   int count (Direction d) const;
52   void de_grace ();
53 };
54
55 /*
56   Generate beaming given durations of notes. Beam uses this to
57   set_beaming () for each of its stems.
58 */
59 class Beaming_pattern
60 {
61 public:
62   Beaming_pattern ();
63
64   void beamify (Beaming_options const &);
65   void de_grace ();
66   void add_stem (Moment d, int beams, bool invisible, Rational factor);
67   int beamlet_count (int idx, Direction d) const;
68   bool invisibility (int idx) const;
69   Rational factor (int idx) const;
70   Moment start_moment (int idx) const;
71   Moment end_moment (int idx) const;
72   Beaming_pattern *split_pattern (int idx);
73
74 private:
75   vector<Beam_rhythmic_element> infos_;
76   Direction flag_direction (Beaming_options const &, vsize) const;
77   void find_rhythmic_importance (Beaming_options const &);
78   void unbeam_invisible_stems ();
79 };
80
81 #endif /* BEAMING_PATTERN_HH */