Verovio
Source code documentation
adjustslursfunctor.h
1 // Name: adjustslursfunctor.h
3 // Author: David Bauer
4 // Created: 2023
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_ADJUSTSLURSFUNCTOR_H__
9 #define __VRV_ADJUSTSLURSFUNCTOR_H__
10 
11 #include "functor.h"
12 #include "slur.h"
13 
14 namespace vrv {
15 
16 //----------------------------------------------------------------------------
17 // ControlPointConstraint
18 //----------------------------------------------------------------------------
24  double a;
25  double b;
26  double c;
27 };
28 
29 //----------------------------------------------------------------------------
30 // ControlPointAdjustment
31 //----------------------------------------------------------------------------
36  int leftShift;
37  int rightShift;
38  bool moveUpwards;
39  int requestedStaffSpace;
40 };
41 
42 //----------------------------------------------------------------------------
43 // AdjustSlursFunctor
44 //----------------------------------------------------------------------------
45 
50 public:
54  AdjustSlursFunctor(Doc *doc);
56  virtual ~AdjustSlursFunctor() = default;
58 
59  /*
60  * Abstract base implementation
61  */
62  bool ImplementsEndInterface() const override { return false; }
63 
64  /*
65  * Check existence of cross-staff slurs
66  */
67  bool HasCrossStaffSlurs() const { return m_crossStaffSlurs; }
68 
69  /*
70  * Reset the current slur and curve
71  */
72  void ResetCurrent();
73 
74  /*
75  * Functor interface
76  */
78  FunctorCode VisitStaffAlignment(StaffAlignment *staffAlignment) override;
79  FunctorCode VisitSystem(System *system) override;
81 
82 protected:
83  //
84 private:
88  void AdjustSlur(int unit) const;
90 
91  void AdjustOuterSlur(const ArrayOfFloatingCurvePositioners &innerCurves, int unit) const;
93 
97  // Discard certain spanned elements
99  void FilterSpannedElements(const BezierCurve &bezierCurve, int margin) const;
100 
101  // Detect collisions near the endpoints
102  NearEndCollision DetectCollisionsNearEnd(const BezierCurve &bezierCurve, int margin) const;
103 
104  // Calculate the vertical shift of the slur end points
105  std::pair<int, int> CalcEndPointShift(const BezierCurve &bezierCurve, double flexibility, int margin) const;
106 
107  // Apply the vertical shift of the slur end points
108  void ApplyEndPointShift(BezierCurve &bezierCurve, int endPointShiftLeft, int endPointShiftRight) const;
109 
110  // Calculate slur from bulge values
111  void AdjustSlurFromBulge(BezierCurve &bezierCurve, int unit) const;
112 
113  // Check whether control points should be adjusted horizontally
114  bool AllowControlOffsetAdjustment(const BezierCurve &bezierCurve, double symmetry, int unit) const;
115 
116  // Calculate the horizontal control point offset
117  std::tuple<bool, int, int> CalcControlPointOffset(const BezierCurve &bezierCurve, int margin) const;
118 
119  // Calculate the vertical control point shift
120  ControlPointAdjustment CalcControlPointVerticalShift(
121  const BezierCurve &bezierCurve, double symmetry, int margin) const;
122 
123  // Solve the constraints for vertical control point adjustment
124  std::pair<int, int> SolveControlPointConstraints(
125  const std::list<ControlPointConstraint> &constraints, double symmetry = 0.0) const;
126 
127  // Improve the slur shape by adjusting the control point heights
128  void AdjustSlurShape(BezierCurve &bezierCurve, curvature_CURVEDIR dir, int unit) const;
130 
134  // Calculate the vertical control point shift
136  ControlPointAdjustment CalcControlPointShift(const BezierCurve &bezierCurve,
137  const ArrayOfFloatingCurvePositioners &innerCurves, double symmetry, int margin) const;
138 
139  // Calculate the vertical shift of the slur end points
140  std::pair<int, int> CalcEndPointShift(const BezierCurve &bezierCurve,
141  const ArrayOfFloatingCurvePositioners &innerCurves, double flexibility, int margin) const;
143 
147  // Shift end points for collisions nearby
149  void ShiftEndPoints(int &shiftLeft, int &shiftRight, double ratio, int intersection, double flexibility,
150  bool isBelow, char spanningType) const;
151 
152  // Calculate the full and partial shift radii
153  std::pair<double, double> CalcShiftRadii(bool forShiftLeft, double flexibility, char spanningType) const;
154 
155  // Determine a quadratic interpolation function between zero and one and evaluate it
156  double CalcQuadraticInterpolation(double zeroAt, double oneAt, double arg) const;
157 
158  // Rotate the slope by a given number of degrees, but choose smaller angles if already close to the vertical axis
159  // Choose doublingBound as the positive slope value where doubling has the same effect as rotating:
160  // tan(atan(doublingBound) + degrees * PI / 180.0) ≈ 2.0 * doublingBound
161  double RotateSlope(double slope, double degrees, double doublingBound, bool upwards) const;
162 
163  // Calculate the minimal angle <)C1P1P2 or <)P1P2C2
164  float GetMinControlPointAngle(const BezierCurve &bezierCurve, float angle, int unit) const;
166 
167 public:
168  //
169 private:
170  // Indicates that there is at least one cross-staff slur
171  bool m_crossStaffSlurs;
172  // The current slur
173  Slur *m_currentSlur;
174  // The curve positioner
175  FloatingCurvePositioner *m_currentCurve;
176 };
177 
178 } // namespace vrv
179 
180 #endif // __VRV_ADJUSTSLURSFUNCTOR_H__
vrv::Doc
This class is a hold the data and corresponds to the model of a MVC design pattern.
Definition: doc.h:41
vrv::ControlPointAdjustment
A vertical adjustment of bezier control points.
Definition: adjustslursfunctor.h:35
vrv::ControlPointConstraint
This represents a constraint ax + by >= c where x and y are vertical control point adjustments.
Definition: adjustslursfunctor.h:23
vrv::AdjustSlursFunctor
This class adjusts the position of slurs.
Definition: adjustslursfunctor.h:49
vrv::AdjustSlursFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: adjustslursfunctor.h:62
vrv::DocFunctor
This abstract class is the base class for all mutable functors that need access to the document.
Definition: functor.h:151