Verovio
Source code documentation
verticalaligner.h
1 // Name: verticalaligner.h
3 // Author: Laurent Pugin
4 // Created: 2013
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_VERTICAL_ALIGNER_H__
9 #define __VRV_VERTICAL_ALIGNER_H__
10 
11 #include "object.h"
12 
13 namespace vrv {
14 
15 class AttSpacing;
16 class FloatingObject;
17 class ScoreDef;
18 class StaffAlignment;
19 class StaffDef;
20 class System;
21 class SystemAligner;
22 
23 //----------------------------------------------------------------------------
24 // SystemAligner
25 //----------------------------------------------------------------------------
26 
31 class SystemAligner : public Object {
32 public:
36  enum class SpacingType { System, Staff, Brace, Bracket, None };
37 
38  // constructors and destructors
39  SystemAligner();
40  virtual ~SystemAligner();
41 
45  bool IsSupportedChild(ClassId classId) override;
46 
50  bool CopyChildren() const override { return false; }
51 
55  void Reset() override;
56 
61  StaffAlignment *GetBottomAlignment() { return m_bottomAlignment; }
63  const StaffAlignment *GetBottomAlignment() const { return m_bottomAlignment; }
65 
73  StaffAlignment *GetStaffAlignment(int idx, Staff *staff, const Doc *doc);
74 
80  void ReorderBy(const std::vector<int> &staffNs);
81 
86  StaffAlignment *GetStaffAlignmentForStaffN(int staffN);
88  const StaffAlignment *GetStaffAlignmentForStaffN(int staffN) const;
90 
95  System *GetSystem();
96 
100  void FindAllPositionerPointingTo(ArrayOfFloatingPositioners *positioners, const FloatingObject *object);
101 
106  SegmentedLine &line, const BoundingBox &boundingBox, const std::vector<ClassId> &classIds, int margin) const;
110  int GetOverflowAbove(const Doc *doc, bool scoreDefClef = false) const;
111  int GetOverflowBelow(const Doc *doc, bool scoreDefClef = false) const;
112 
116  double GetJustificationSum(const Doc *doc) const;
117 
121  void SetSpacing(const ScoreDef *scoreDef);
122 
123  //----------//
124  // Functors //
125  //----------//
126 
130  FunctorCode Accept(Functor &functor) override;
132  FunctorCode Accept(ConstFunctor &functor) const override;
133  FunctorCode AcceptEnd(Functor &functor) override;
134  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
136 
137 private:
142  SpacingType GetAboveSpacingType(const Staff *staff);
146  SpacingType CalculateSpacingAbove(const StaffDef *staffDef) const;
147 
148 public:
149  //
150 private:
154  StaffAlignment *m_bottomAlignment;
158  std::map<int, SpacingType> m_spacingTypes;
162  System *m_system;
163 };
164 
165 //----------------------------------------------------------------------------
166 // StaffAlignment
167 //----------------------------------------------------------------------------
168 
172 class StaffAlignment : public Object {
173 public:
178  StaffAlignment();
180  virtual ~StaffAlignment();
182 
186  void SetYRel(int yRel);
187  int GetYRel() const { return m_yRel; }
188 
197  void AddVerseN(int verseN, data_STAFFREL place);
199  int GetVerseCount(bool collapse) const;
200  int GetVerseCountAbove(bool collapse) const;
201  int GetVerseCountBelow(bool collapse) const;
202  int GetVersePositionAbove(int verseN, bool collapse) const;
203  int GetVersePositionBelow(int verseN, bool collapse) const;
205 
209  void SetCurrentFloatingPositioner(FloatingObject *object, Object *objectX, Object *objectY, char spanningType);
210 
214  const ArrayOfFloatingPositioners &GetFloatingPositioners() { return m_floatingPositioners; }
215 
222  const FloatingPositioner *FindFirstFloatingPositioner(ClassId classId) const;
224 
228  ArrayOfFloatingPositioners FindAllFloatingPositioners(ClassId classId);
229 
238 
243  Staff *GetStaff() { return m_staff; }
245  const Staff *GetStaff() const { return m_staff; }
246  void SetStaff(Staff *staff, const Doc *doc, SystemAligner::SpacingType spacingType);
248 
252  System *GetParentSystem() { return m_system; }
254  const System *GetParentSystem() const { return m_system; }
255  void SetParentSystem(System *system);
257 
261  int GetStaffSize() const;
262 
266  const AttSpacing *GetAttSpacing() const;
267 
273  int CalcOverflowAbove(const BoundingBox *box) const;
275  int CalcOverflowBelow(const BoundingBox *box) const;
277 
281  int GetMinimumSpacing(const Doc *doc) const;
283  int CalcMinimumRequiredSpacing(const Doc *doc) const;
284  SystemAligner::SpacingType GetSpacingType() const { return m_spacingType; }
286 
290  void SetOverflowAbove(int overflowAbove);
292  int GetOverflowAbove() const { return m_overflowAbove; }
293  void SetOverflowBelow(int overflowBottom);
294  int GetOverflowBelow() const { return m_overflowBelow; }
295  void SetOverlap(int overlap);
296  int GetOverlap() const { return m_overlap; }
297  void SetRequestedSpaceAbove(int space);
298  int GetRequestedSpaceAbove() const { return m_requestedSpaceAbove; }
299  void SetRequestedSpaceBelow(int space);
300  int GetRequestedSpaceBelow() const { return m_requestedSpaceBelow; }
301  void SetRequestedSpacing(int spacing) { m_requestedSpacing = spacing; }
302  int GetRequestedSpacing() const { return m_requestedSpacing; }
303  int GetStaffHeight() const { return m_staffHeight; }
304  void SetScoreDefClefOverflowAbove(int overflowAbove) { m_scoreDefClefOverflowAbove = overflowAbove; }
305  int GetScoreDefClefOverflowAbove() const { return m_scoreDefClefOverflowAbove; }
306  void SetScoreDefClefOverflowBelow(int overflowBelow) { m_scoreDefClefOverflowBelow = overflowBelow; }
307  int GetScoreDefClefOverflowBelow() const { return m_scoreDefClefOverflowBelow; }
309 
313  double GetJustificationFactor(const Doc *doc) const;
316 
320  void AddBBoxAbove(BoundingBox *box) { m_overflowAboveBBoxes.push_back(box); }
322  void AddBBoxBelow(BoundingBox *box) { m_overflowBelowBBoxes.push_back(box); }
323  void ClearBBoxesAbove() { m_overflowAboveBBoxes.clear(); }
324  void ClearBBoxesBelow() { m_overflowBelowBBoxes.clear(); }
325  ArrayOfBoundingBoxes &GetBBoxesAboveForModification() { return m_overflowAboveBBoxes; }
326  ArrayOfBoundingBoxes &GetBBoxesBelowForModification() { return m_overflowBelowBBoxes; }
327  const ArrayOfBoundingBoxes &GetBBoxesAbove() { return m_overflowAboveBBoxes; }
328  const ArrayOfBoundingBoxes &GetBBoxesBelow() { return m_overflowBelowBBoxes; }
330 
334  void ClearPositioners();
335 
339  void SortPositioners();
340 
345  SegmentedLine &line, const BoundingBox &boundingBox, const std::vector<ClassId> &classIds, int margin) const;
346 
350  void AdjustBracketGroupSpacing(const Doc *doc, const StaffAlignment *previous, int spacing);
351 
352  //----------//
353  // Functors //
354  //----------//
355 
359  FunctorCode Accept(Functor &functor) override;
361  FunctorCode Accept(ConstFunctor &functor) const override;
362  FunctorCode AcceptEnd(Functor &functor) override;
363  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
365 
366 private:
370  int GetMinimumStaffSpacing(const Doc *doc, const AttSpacing *attSpacing) const;
371 
375  bool IsInBracketGroup(bool isFirst) const;
376 
377 public:
378  //
379 private:
383  SystemAligner::SpacingType m_spacingType = SystemAligner::SpacingType::None;
384 
388  ArrayOfFloatingPositioners m_floatingPositioners;
392  bool m_floatingPositionersSorted;
397  Staff *m_staff;
402  System *m_system;
406  int m_yRel;
410  std::set<int> m_verseAboveNs;
411  std::set<int> m_verseBelowNs;
412 
416  int m_overflowAbove;
418  int m_overflowBelow;
419  int m_overlap;
420  int m_requestedSpaceAbove;
421  int m_requestedSpaceBelow;
422  int m_requestedSpacing;
423  int m_staffHeight;
424  int m_scoreDefClefOverflowAbove;
425  int m_scoreDefClefOverflowBelow;
427 
431  ArrayOfBoundingBoxes m_overflowAboveBBoxes;
432  ArrayOfBoundingBoxes m_overflowBelowBBoxes;
433 };
434 
435 } // namespace vrv
436 
437 #endif
vrv::SystemAligner::GetOverflowAbove
int GetOverflowAbove(const Doc *doc, bool scoreDefClef=false) const
Get System Overflows.
vrv::Staff
This class represents a staff in a laid-out score (Doc).
Definition: staff.h:102
vrv::SystemAligner::GetStaffAlignmentForStaffN
StaffAlignment * GetStaffAlignmentForStaffN(int staffN)
Get the StaffAlignment for the staffN.
vrv::StaffAlignment::AdjustBracketGroupSpacing
void AdjustBracketGroupSpacing(const Doc *doc, const StaffAlignment *previous, int spacing)
Find overflow for the alignments taking bracket group elements into account.
vrv::SystemAligner::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::SystemAligner::IsSupportedChild
bool IsSupportedChild(ClassId classId) override
Override the method of adding AlignmentReference children.
vrv::StaffAlignment::FindAllIntersectionPoints
void FindAllIntersectionPoints(SegmentedLine &line, const BoundingBox &boundingBox, const std::vector< ClassId > &classIds, int margin) const
Find all the intersection points with a vertical line (top to bottom)
vrv::StaffAlignment::GetStaffSize
int GetStaffSize() const
Returns the staff size (100 if no staff object is refered to)
vrv::StaffAlignment::SortPositioners
void SortPositioners()
Sort the FloatingPositioner objects.
vrv::StaffAlignment::GetCorrespFloatingPositioner
FloatingPositioner * GetCorrespFloatingPositioner(const FloatingObject *object)
Look for the FloatingPositioner corresponding to the FloatingObject.
vrv::StaffAlignment::ClearPositioners
void ClearPositioners()
Deletes all the FloatingPositioner objects.
vrv::SystemAligner::GetStaffAlignment
StaffAlignment * GetStaffAlignment(int idx, Staff *staff, const Doc *doc)
Get the StaffAlignment at index idx.
vrv::SystemAligner::SetSpacing
void SetSpacing(const ScoreDef *scoreDef)
Calculates and sets spacing for specified ScoreDef.
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::SystemAligner::FindAllPositionerPointingTo
void FindAllPositionerPointingTo(ArrayOfFloatingPositioners *positioners, const FloatingObject *object)
Find all the positioners pointing to an object;.
vrv::SystemAligner::GetJustificationSum
double GetJustificationSum(const Doc *doc) const
Get justification sum.
vrv::StaffAlignment::FindAllFloatingPositioners
ArrayOfFloatingPositioners FindAllFloatingPositioners(ClassId classId)
Find all FloatingPositioner corresponding to a FloatingObject with given ClassId.
vrv::SystemAligner::GetSystem
System * GetSystem()
Get pointer to the parent system.
vrv::StaffAlignment::GetFloatingPositioners
const ArrayOfFloatingPositioners & GetFloatingPositioners()
Retrieve all FloatingPositioner.
Definition: verticalaligner.h:214
vrv::SystemAligner::GetBottomAlignment
StaffAlignment * GetBottomAlignment()
Get bottom StaffAlignment for the system.
Definition: verticalaligner.h:62
vrv::StaffAlignment::GetAttSpacing
const AttSpacing * GetAttSpacing() const
Returns the spacing attribute object of correspond ScoreDef.
vrv::StaffAlignment::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::SystemAligner::Reset
void Reset() override
Reset the aligner (clear the content) and creates the end (bottom) alignement.
vrv::FloatingObject
This class represents elements appearing within a measure.
Definition: floatingobject.h:28
vrv::SystemAligner::SpacingType
SpacingType
Declares different spacing types between staves.
Definition: verticalaligner.h:36
vrv::StaffAlignment::SetCurrentFloatingPositioner
void SetCurrentFloatingPositioner(FloatingObject *object, Object *objectX, Object *objectY, char spanningType)
Retrieves or creates the FloatingPositioner for the FloatingObject on this staff.
vrv::SystemAligner::FindAllIntersectionPoints
void FindAllIntersectionPoints(SegmentedLine &line, const BoundingBox &boundingBox, const std::vector< ClassId > &classIds, int margin) const
Find all the intersection points with a vertical line (top to bottom)
vrv::StaffAlignment::FindFirstFloatingPositioner
FloatingPositioner * FindFirstFloatingPositioner(ClassId classId)
Look for the first FloatingPositioner corresponding to the FloatingObject of the ClassId.
vrv::SystemAligner::CopyChildren
bool CopyChildren() const override
Do not copy children for HorizontalAligner.
Definition: verticalaligner.h:50
vrv::System
This class represents a system in a laid-out score (Doc).
Definition: system.h:36
vrv::SystemAligner::ReorderBy
void ReorderBy(const std::vector< int > &staffNs)
Reorder the staff alignment as given in the staffNs.
vrv::StaffAlignment
This class stores an alignement position staves will point to.
Definition: verticalaligner.h:172
vrv::SystemAligner
This class aligns the content of a system It contains a vector of StaffAlignment.
Definition: verticalaligner.h:31
vrv::FloatingPositioner
This class represents a basic object in the layout domain.
Definition: floatingobject.h:165