]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/spring-spacer.hh
release: 0.1.47
[lilypond.git] / lily / include / spring-spacer.hh
1 /*
2   spring-spacer.hh -- declare Spring_spacer
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
7 */
8
9
10 #ifndef SPRING_SPACER_HH
11 #define SPRING_SPACER_HH
12
13 #include "line-spacer.hh"
14 #include "plist.hh"
15 #include "col-info.hh"
16 #include "colhpos.hh"
17 #include "moment.hh"
18
19 /** 
20   Determine positions of columns connected by springs and held apart by rods.
21   
22   
23     Generate a spacing which
24     \begin{itemize}
25     \item
26     Satisfies spacing constraints (notes can't be printed through each other)
27     \item
28     Looks good, ie tries to conform to  an ideal spacing as much as possible.
29     \end{itemize}
30   
31     This is converted by regarding idealspacing as "springs" attached
32     to columns. The equilibrium of one spring is the ideal
33     distance. The columns have a size, this imposes "hard" constraints
34     on the distances. This transforms the problem into a quadratic
35     programming problem with linear constraints.
36
37     The quality is given by the total potential energy in the
38     springs. The lower the energy, the better the configuration.
39
40     TODO: make item widths work per Staff.
41
42 */
43
44 class Spring_spacer : public Line_spacer {
45   friend class Durations_iter;
46     
47   Pointer_list<Idealspacing *> ideal_p_list_;
48   Array<Colinfo> cols;
49   Array<Colinfo> loose_col_arr_;
50     
51   /// mark column #i# as being loose.
52   void loosen_column (int i);
53   /// the index of #c# in #cols#
54   int col_id (Paper_column const *c) const;
55
56   /// generate an (nonoptimal) solution
57   Vector find_initial_solution() const;
58
59   /// does #this# contain the column #w#? 
60   bool contains (Paper_column const *w);
61
62   /// make the energy function
63   void make_matrices (Matrix &quad, Vector &lin,Real&) const;
64   void get_ruling_durations(Array<Moment>&, Array<Moment>&);
65
66   /// generate the LP constraints
67   void make_constraints (Mixed_qp& lp) const;
68
69
70   void handle_loose_cols();
71   void position_loose_cols (Vector &) const;
72   Vector try_initial_solution() const;
73   void calc_idealspacing();
74   void set_fixed_cols (Mixed_qp&) const;
75
76   Score_column* scol_l (int);
77   void connect (int i,int j, Real,Real);
78   Line_of_cols error_pcol_l_arr() const;
79   Real calculate_energy_f (Vector) const;
80 public:
81   static Line_spacer *constructor();
82
83   virtual void solve (Col_hpositions*) const;
84   virtual void lower_bound_solution (Col_hpositions*) const;
85   virtual void add_column (Paper_column  *, bool fixed=false, Real fixpos=0.0);
86  
87
88   virtual Vector default_solution() const;
89   virtual bool check_constraints (Vector v) const;
90   virtual void OK() const;
91   virtual void print() const;
92   virtual void prepare();
93   virtual ~Spring_spacer(){}
94 };
95
96 #endif // SPRING_SPACER_HH