]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/constrained-breaking.hh
56c673705de4e6e79b049e45d9af149db767d9f5
[lilypond.git] / lily / include / constrained-breaking.hh
1 /*
2   constrained-breaking.hh -- declare a line breaker that
3   supports limits on the number of systems
4
5   source file of the GNU LilyPond music typesetter
6
7   (c) 2006 Joe Neeman <joeneeman@gmail.com>
8 */
9
10 #ifndef CONSTRAINED_BREAKING_HH
11 #define CONSTRAINED_BREAKING_HH
12
13 #include "lily-guile.hh"
14 #include "matrix.hh"
15 #include "prob.hh"
16
17 struct Line_details {
18   Real force_;
19   Interval extent_;   /* Y-extent of the system */
20   Real padding_;  /* compulsory space after this system (if we're not last on a page) */
21   Real bottom_padding_;
22   Real space_;    /* spring length */
23   Real inverse_hooke_;
24
25   SCM break_permission_;
26   SCM page_permission_;
27   SCM turn_permission_;
28   Real break_penalty_;
29   Real page_penalty_;
30   Real turn_penalty_;
31
32   Line_details ()
33   {
34     force_ = infinity_f;
35     padding_ = 0;
36     bottom_padding_ = 0;
37     space_ = 0;
38     inverse_hooke_ = 1;
39     break_permission_ = ly_symbol2scm ("allow");
40     page_permission_ = ly_symbol2scm ("allow");
41     turn_permission_ = ly_symbol2scm ("allow");
42     break_penalty_ = 0;
43     page_penalty_ = 0;
44     turn_penalty_ = 0;
45   }
46
47   Line_details (Prob *pb)
48   {
49     force_ = 0;
50     extent_ = unsmob_stencil (pb->get_property ("stencil")) ->extent (Y_AXIS);
51     padding_ = 0;
52     space_ = 1.0;
53     inverse_hooke_ = 1.0;
54     break_permission_ = ly_symbol2scm ("allow");
55     page_permission_ = pb->get_property ("page-break-permission");
56     turn_permission_ = pb->get_property ("page-turn-permission");
57     break_penalty_ = 0;
58     page_penalty_ = robust_scm2double (pb->get_property ("page-break-penalty"), 0);
59     turn_penalty_ = robust_scm2double (pb->get_property ("page-turn-penalty"), 0);
60   }
61 };
62
63 /*
64    Helper to trace back an optimal path
65 */
66 struct Constrained_break_node
67 {
68   /* the number of bars in all the systems before this one
69   */
70   int prev_;
71
72   /* unlike the Gourlay breaker, this is the sum of all demerits up to,
73    * and including, this line */
74   Real demerits_;
75   struct Line_details details_;
76
77   Constrained_break_node ()
78   {
79     prev_ = -1;
80     demerits_ = infinity_f;
81   }
82
83   void print () const
84   {
85     printf ("prev break %d, demerits %f\n", prev_, demerits_);
86   }
87 };
88
89 /*
90    A dynamic programming solution to breaking scores into lines
91 */
92 class Constrained_breaking
93 {
94 public:
95   vector<Column_x_positions> solve ();
96   Constrained_breaking (Paper_score *ps);
97   Constrained_breaking (Paper_score *ps, vector<vsize> const &start_col_posns);
98
99   vector<Column_x_positions> get_solution (vsize start, vsize end, vsize sys_count);
100   vector<Column_x_positions> get_best_solution (vsize start, vsize end);
101   vector<Line_details> get_details (vsize start, vsize end, vsize sys_count);
102   int get_max_systems (vsize start, vsize end);
103   int get_min_systems (vsize start, vsize end);
104
105   void resize (vsize systems);
106
107 private:
108   Paper_score *pscore_;
109   vsize valid_systems_;
110   vsize systems_;
111   bool ragged_right_;
112   bool ragged_last_;
113
114   /* the (i,j)th entry is the configuration for breaking between
115     columns i and j */
116   Matrix<Line_details> lines_;
117
118   /* the [i](j,k)th entry is the score for fitting the first k bars onto the
119     first j systems, starting at the i'th allowed starting column */
120   vector<Matrix<Constrained_break_node> > state_;
121
122   vector<vsize> start_;         /* the columns at which we might be asked to start breaking */
123   vector<vsize> starting_breakpoints_; /* the corresponding index in breaks_ */
124
125   vector<Grob*> all_;
126   vector<vsize> breaks_;
127
128   void initialize ();
129
130   Column_x_positions space_line (vsize start_col, vsize end_col);
131   vsize prepare_solution (vsize start, vsize end, vsize sys_count);
132
133   Real combine_demerits (Real force, Real prev_force);
134
135   bool calc_subproblem(vsize start, vsize systems, vsize max_break_index);
136 };
137 #endif /* CONSTRAINED_BREAKING_HH */