]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/beam.hh
release: 0.1.63
[lilypond.git] / lily / include / beam.hh
index 5d605937c169113c4bf1299c0942295ccd46fc56..e4bad88c1caee13781d2ac97578eff4037ad654c 100644 (file)
 #include "directional-spanner.hh"
 #include "plist.hh"
 
-/** a beam connects multiple stems Beam adjusts the stems its owns to
-  make sure that they reach the beam and that point in the correct
-  direction */
+/** a beam connects multiple stems.
+
+  Beam adjusts the stems its owns to make sure that they reach the
+  beam and that point in the correct direction */
 class Beam:  public Directional_spanner {
 public:
-  Link_array<Stem> stems;
+  /** 
+    The beams should be prevented to conflict with the stafflines, 
+    especially at small slopes.
+    */
+  enum Quantisation { NONE, NORMAL, TRADITIONAL, TEST };
+
+  Link_array<Stem> stems_;
   /// the slope of the beam in posns / point (dimension)   
-  Real slope;
+  Real slope_f_;
+  /// the slope as solved; not quantised or damped
+  Real solved_slope_f_;
 
   /// position of leftmost end of beam  
-  Real left_pos;
-   
+  Real left_y_;
+  /// should beam slope be damped? 0: no, 1: yes, 100000: horizontal beams
+  int damping_i_;
+  /// should beam pos / slope be quantised? 0: no, 1: yes, 2: traditional
+  Quantisation quantisation_;
+  /// maximum number of beams (for opening-up of beam-spacing)
+  int multiple_i_;
+
 
-  /* *************** */
   DECLARE_MY_RUNTIME_TYPEINFO;
   Beam();
   void add (Stem*);
 
   void set_grouping (Rhythmic_grouping def, Rhythmic_grouping current);
-  void set_stemlens();
-  SCORE_ELEM_CLONE(Beam);
+  void set_stemlens ();
+  SCORE_ELEM_CLONE (Beam);
 
 protected:
-  virtual Interval do_width() const;    
-  Offset center() const;
-  void set_default_dir();
-  virtual void do_pre_processing();
-  virtual void do_post_processing();
+  virtual Interval do_width () const;    
+  Offset center () const;
+  void set_default_dir ();
+  virtual void do_pre_processing ();
+  virtual void do_post_processing ();
   virtual void do_substitute_dependent (Score_elem*, Score_elem*);
 
   virtual void do_print() const;
 
+  virtual void quantise_left_y (bool extend_b);
   virtual Molecule stem_beams (Stem *here, Stem *next, Stem *prev) const;
-  virtual void solve_slope();
-  virtual Molecule*brew_molecule_p() const;
+  virtual void solve_slope ();
+  virtual void quantise_dy ();
+  virtual Molecule*brew_molecule_p () const;
 };
 
 #endif // BEAM_HH