]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/page-breaking.hh
Run `make grand-replace'.
[lilypond.git] / lily / include / page-breaking.hh
index 4930c99d9ed97c2cede324985e975d5d6f8939a3..249693a05cc9b33631db6268c4cacf3f8127c776 100644 (file)
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 2006 Joe Neeman <joeneeman@gmail.com>
+  (c) 2006--2008 Joe Neeman <joeneeman@gmail.com>
 */
 
 #ifndef PAGE_BREAKING_HH
 #define PAGE_BREAKING_HH
 
 #include "constrained-breaking.hh"
-#include "lily-guile.hh"
+#include "page-spacing.hh"
 
 /* Either a paper-score, markup or header.
  */
 struct System_spec
 {
-  System_spec (Paper_score*, int);
-  System_spec (Prob*);
-  System_spec ();
+  System_spec (Paper_score *ps)
+  {
+    pscore_ = ps;
+    prob_ = NULL;
+  }
+
+  System_spec (Prob *pb)
+  {
+    prob_ = pb;
+    pscore_ = NULL;
+  }
+
+  System_spec ()
+  {
+    pscore_ = NULL;
+    prob_ = NULL;
+  }
 
   Paper_score *pscore_;
   Prob *prob_;
-
-  vsize score_break_count_; /* for scores, this is the number of start-points our line-
-                               breaker has */
 };
 
 struct Break_position
 {
-  vsize sys_; /* the index in our all_ list */
-  vsize score_break_; /* if sys_ is a score, then we start at the score_brk_'th
-                         possible page-break in the score */
+  /*
+    index in system_spec_index_, if VPOS start of book. 
+   */
+  vsize system_spec_index_;
+
+  /* if system_spec_index_ is a score, then we start at the score_brk_'th possible
+     page-break in the score */
+  vsize score_break_; 
+
+  /* if system_spec_index_ is a score, this points to the broken column */
+  Grob *col_;  
+  bool score_ender_;
 
-  Break_position (vsize s=VPOS, vsize brk=VPOS)
+  Break_position (vsize s=VPOS, vsize brk=VPOS, Grob *g=NULL, bool end=false)
   {
-    sys_ = s;
+    system_spec_index_ = s;
     score_break_ = brk;
+    col_ = g;
+    score_ender_ = end;
+  }
+
+  /*
+    lexicographic in (system_spec_index_, score_break_)
+   */
+  bool operator< (const Break_position &other)
+  {
+    return (system_spec_index_ == VPOS && other.system_spec_index_ != VPOS)
+      || (system_spec_index_ < other.system_spec_index_)
+      || (system_spec_index_ == other.system_spec_index_ && score_break_ < other.score_break_);
+  }
+
+  bool operator<= (const Break_position &other)
+  {
+    return (system_spec_index_ == VPOS)
+      || (system_spec_index_ < other.system_spec_index_ && other.system_spec_index_ != VPOS)
+      || (system_spec_index_ == other.system_spec_index_ && score_break_ <= other.score_break_);
   }
 };
 
 class Page_breaking
 {
 public:
+  typedef bool (*Break_predicate) (Grob *);
+  typedef vector<vsize> Line_division;
+  
+  /*
+    TODO: naming.
+
+    determine the page breaking, and break scores into lines
+    appropriately.
+   */
   virtual SCM solve () = 0;
 
-  Page_breaking (Paper_book *pb, bool allow_intra_score_breaks);
+  Page_breaking (Paper_book *pb, Break_predicate);
   virtual ~Page_breaking ();
 
-protected:
-  std::vector<Break_position> breaks_;
-  std::vector<System_spec> all_;
-  std::vector<Constrained_breaking> line_breaking_;
+  bool ragged () const;
+  bool ragged_last () const;
+  bool is_last () const;
+  bool ends_score () const;
+  Real page_height (int page_number, bool last) const;
+  Real page_top_space () const;
+  vsize system_count () const;
 
+protected:
   Paper_book *book_;
 
-  Real page_height (int page_number, bool last);
-  vsize next_system (vsize starting_break_index) const;
-
-  void create_system_list (bool allow_intra_score_breaks);
-  std::vector<vsize> find_page_break_indices (Paper_score *pscore);
+  vsize next_system (Break_position const &break_pos) const;
 
   SCM make_pages (vector<vsize> lines_per_page, SCM lines);
 
-  void calc_system_count_bounds (vsize start, vsize end,
-                                 vector<vsize> *min,
-                                 vector<vsize> *max);
-
-  void divide_systems (vsize system_count, vector<vsize> const &min,
-                                           vector<vsize> const &max,
-                                           vector<vector<vsize> > *result,
-                                           vector<vsize> *cur);
-
-  void line_breaker_args (vsize i, vsize *break_st, vsize *break_end);
-  vsize get_min_systems (vsize sys, vsize break_start, vsize break_end);
-  vsize get_max_systems (vsize sys, vsize break_start, vsize break_end);
-  vector<Column_x_positions> get_line_breaks (vsize sys, vsize sys_count, vsize st, vsize end);
-  vector<Line_details> get_line_details (vsize start_break, vsize end_break, vector<vsize> const &div);
+  vsize min_system_count (vsize start, vsize end);
+  vsize max_system_count (vsize start, vsize end);
+
+
+  void break_into_pieces (vsize start, vsize end, Line_division const &div);
+  SCM systems ();
+
+  void set_current_breakpoints (vsize start,
+                               vsize end,
+                               vsize system_count,
+                               Line_division lower_bound = Line_division (),
+                               Line_division upper_bound = Line_division ());
+  void set_to_ideal_line_configuration (vsize start, vsize end);
+
+  vsize current_configuration_count () const;
+  Line_division current_configuration (vsize configuration_index) const;
+  Page_spacing_result space_systems_on_n_pages (vsize configuration_index,
+                                          vsize n, vsize first_page_num);
+  Page_spacing_result space_systems_on_n_or_one_more_pages (vsize configuration_index, vsize n,
+                                                      vsize first_page_num);
+  Page_spacing_result space_systems_on_best_pages (vsize configuration_index,
+                                             vsize first_page_num);
+  Page_spacing_result pack_systems_on_least_pages (vsize configuration_index,
+                                                  vsize first_page_num);
+  vsize min_page_count (vsize configuration_index, vsize first_page_num);
+  bool all_lines_stretched (vsize configuration_index);
+  Real blank_page_penalty () const;
+
+  SCM breakpoint_property (vsize breakpoint, char const *str);
+
+  vsize last_break_position () const;
+private:
+  vector<Break_position> breaks_;
+  vector<Break_position> chunks_;
+  vector<System_spec> system_specs_;
+  vector<Constrained_breaking> line_breaking_;
+  bool ragged_;
+  bool ragged_last_;
+  Real page_top_space_;
+  vsize system_count_;
+
+  vector<Line_division> current_configurations_;
+  vector<Break_position> current_chunks_;
+  vsize current_start_breakpoint_;
+  vsize current_end_breakpoint_;
+
+  void cache_line_details (vsize configuration_index);
+  void clear_line_details_cache ();
+  vsize cached_configuration_index_;
+  vector<Line_details> cached_line_details_;
+  vector<Line_details> uncompressed_line_details_;
+
+  vector<Break_position> chunk_list (vsize start, vsize end);
+  Line_division system_count_bounds (vector<Break_position> const &chunks, bool min);
+  void line_breaker_args (vsize i,
+                         Break_position const &start,
+                         Break_position const &end,
+                         vsize *line_breaker_start,
+                         vsize *line_breaker_end);
+
+  void line_divisions_rec (vsize system_count,
+                          Line_division const &min,
+                          Line_division const &max,
+                          Line_division *cur);
+
+  vector<Line_details> line_details (vsize start, vsize end, Line_division const &div);
+  Page_spacing_result space_systems_on_1_page (vector<Line_details> const &lines, Real page_height, bool ragged);
+  Page_spacing_result space_systems_on_2_pages (vsize configuration_index, vsize first_page_num);
+  Page_spacing_result finalize_spacing_result (vsize configuration_index, Page_spacing_result);
+  void create_system_list ();
+  void find_chunks_and_breaks (Break_predicate);
 };
 #endif /* PAGE_BREAKING_HH */