11 #include "controlelement.h"
12 #include "timeinterface.h"
29 std::vector<const LayerElement *> elements;
30 std::set<int> layersN;
42 bool endPointsAdjusted;
46 enum class SlurCurveDirection { None, Above, Below, AboveBelow, BelowAbove };
47 enum class PortatoSlurType { None, StemSide, Centered };
57 public AttLineRendBase {
65 Slur(ClassId classId);
68 void Reset()
override;
69 std::string GetClassName()
const override {
return "slur"; }
75 TimePointInterface *GetTimePointInterface()
override {
return vrv_cast<TimePointInterface *>(
this); }
77 const TimePointInterface *GetTimePointInterface()
const override
79 return vrv_cast<const TimePointInterface *>(
this);
81 TimeSpanningInterface *GetTimeSpanningInterface()
override {
return vrv_cast<TimeSpanningInterface *>(
this); }
82 const TimeSpanningInterface *GetTimeSpanningInterface()
const override
84 return vrv_cast<const TimeSpanningInterface *>(
this);
91 SlurCurveDirection GetDrawingCurveDir()
const {
return m_drawingCurveDir; }
93 void SetDrawingCurveDir(SlurCurveDirection curveDir) { m_drawingCurveDir = curveDir; }
94 bool HasDrawingCurveDir()
const {
return (m_drawingCurveDir != SlurCurveDirection::None); }
95 curvature_CURVEDIR CalcDrawingCurveDir(
char spanningType)
const;
101 bool HasMixedCurveDir()
const
104 return (m_drawingCurveDir == SlurCurveDirection::AboveBelow)
105 || (m_drawingCurveDir == SlurCurveDirection::BelowAbove);
107 bool HasEndpointAboveStart()
const
109 return (m_drawingCurveDir == SlurCurveDirection::Above)
110 || (m_drawingCurveDir == SlurCurveDirection::AboveBelow);
112 bool HasEndpointBelowStart()
const
114 return (m_drawingCurveDir == SlurCurveDirection::Below)
115 || (m_drawingCurveDir == SlurCurveDirection::BelowAbove);
117 bool HasEndpointAboveEnd()
const
119 return (m_drawingCurveDir == SlurCurveDirection::Above)
120 || (m_drawingCurveDir == SlurCurveDirection::BelowAbove);
122 bool HasEndpointBelowEnd()
const
124 return (m_drawingCurveDir == SlurCurveDirection::Below)
125 || (m_drawingCurveDir == SlurCurveDirection::AboveBelow);
132 bool HasInnerSlur(
const Slur *innerSlur)
const;
137 void CalcInitialCurve(
const Doc *doc, FloatingCurvePositioner *curve, NearEndCollision *nearEndCollision = NULL);
162 const Staff *GetBoundaryCrossStaff()
const;
177 FunctorCode
Accept(Functor &functor)
override;
179 FunctorCode
Accept(ConstFunctor &functor)
const override;
180 FunctorCode AcceptEnd(Functor &functor)
override;
181 FunctorCode AcceptEnd(ConstFunctor &functor)
const override;
190 SpannedElements CollectSpannedElements(
const Staff *staff,
int xMin,
int xMax)
const;
192 void AddSpannedElements(
193 FloatingCurvePositioner *curve,
const SpannedElements &elements, Staff *staff,
int xMin,
int xMax);
195 bool IsElementBelow(
const LayerElement *element,
const Staff *startStaff,
const Staff *endStaff)
const;
196 bool IsElementBelow(
const FloatingPositioner *positioner,
const Staff *startStaff,
const Staff *endStaff)
const;
198 void DiscardTupletElements(FloatingCurvePositioner *curve,
int xMin,
int xMax);
206 std::pair<Point, Point> CalcEndPoints(
const Doc *doc,
const Staff *staff, NearEndCollision *nearEndCollision,
207 int x1,
int x2, curvature_CURVEDIR drawingCurveDir,
char spanningType)
const;
209 bool ConsiderMelodicDirection()
const;
211 std::pair<int, int> GetStartEndLocs(
212 const Note *startNote,
const Chord *startChord,
const Note *endNote,
const Chord *endChord)
const;
214 int CalcPitchDifference(
const Staff *staff,
int startLoc,
int endLoc)
const;
216 PortatoSlurType IsPortatoSlur(
const Doc *doc,
const Note *startNote,
const Chord *startChord)
const;
218 bool StartsOnBeam()
const {
return this->HasBoundaryOnBeam(
true); }
219 bool EndsOnBeam()
const {
return this->HasBoundaryOnBeam(
false); }
220 bool HasBoundaryOnBeam(
bool isStart)
const;
222 float GetAdjustedSlurAngle(
const Doc *doc, Point &p1, Point &p2, curvature_CURVEDIR curveDir)
const;
233 SlurCurveDirection m_drawingCurveDir;