Verovio
Source code documentation
alignfunctor.h
1 // Name: alignfunctor.h
3 // Author: David Bauer
4 // Created: 2023
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_ALIGNFUNCTOR_H__
9 #define __VRV_ALIGNFUNCTOR_H__
10 
11 #include "functor.h"
12 
13 namespace vrv {
14 
15 //----------------------------------------------------------------------------
16 // AlignMeterParams
17 //----------------------------------------------------------------------------
22  const MeterSig *meterSig = NULL;
23  const Mensur *mensur = NULL;
24  // Not const since we are cumulating proportion
25  Proport *proport = NULL;
26  data_DURATION equivalence = DURATION_brevis;
27 };
28 
29 //----------------------------------------------------------------------------
30 // AlignHorizontallyFunctor
31 //----------------------------------------------------------------------------
32 
40 public:
46  virtual ~AlignHorizontallyFunctor() = default;
48 
49  /*
50  * Abstract base implementation
51  */
52  bool ImplementsEndInterface() const override { return true; }
53 
54  /*
55  * Functor interface
56  */
58  FunctorCode VisitLayer(Layer *layer) override;
59  FunctorCode VisitLayerEnd(Layer *layer) override;
60  FunctorCode VisitLayerElement(LayerElement *layerElement) override;
61  FunctorCode VisitMeasure(Measure *measure) override;
62  FunctorCode VisitMeasureEnd(Measure *measure) override;
63  FunctorCode VisitMeterSigGrp(MeterSigGrp *meterSigGrp) override;
64  FunctorCode VisitStaff(Staff *staff) override;
65  FunctorCode VisitSystem(System *system) override;
67 
68 protected:
69  //
70 private:
71  //
72 public:
73  //
74 private:
75  // The measureAligner
76  MeasureAligner *m_measureAligner;
77  // The time
78  Fraction m_time;
79  // The current MeterSig, Mensur and Proport
80  AlignMeterParams m_currentParams;
81  // The current notation type
82  data_NOTATIONTYPE m_notationType;
83  // Indicates the state in processing the caution scoreDef
84  ElementScoreDefRole m_scoreDefRole;
85  // Indicates if we are in the first measure (for the scoreDef role)
86  bool m_isFirstMeasure;
87  // Indicates if we have multiple layer alignment references in the measure
88  bool m_hasMultipleLayer;
89 };
90 
91 //----------------------------------------------------------------------------
92 // AlignMeasuresFunctor
93 //----------------------------------------------------------------------------
94 
100 public:
106  virtual ~AlignMeasuresFunctor() = default;
108 
109  /*
110  * Abstract base implementation
111  */
112  bool ImplementsEndInterface() const override { return true; }
113 
114  /*
115  * Set if castoff system widths should be stored
116  */
117  void StoreCastOffSystemWidths(bool storeWidths) { m_storeCastOffSystemWidths = storeWidths; }
118 
119  /*
120  * Functor interface
121  */
123  FunctorCode VisitDiv(Div *div) override;
124  FunctorCode VisitMeasure(Measure *measure) override;
125  FunctorCode VisitScoreDef(ScoreDef *scoreDef) override;
126  FunctorCode VisitSection(Section *section) override;
127  FunctorCode VisitSystem(System *system) override;
128  FunctorCode VisitSystemEnd(System *system) override;
130 
131 protected:
132  //
133 private:
134  //
135 public:
136  //
137 private:
138  // The cumulated shift
139  int m_shift;
140  // The cumulated justifiable width
141  int m_justifiableWidth;
142  // Shift next measure due to section restart?
143  bool m_applySectionRestartShift;
144  // Store castoff system widths if true
145  bool m_storeCastOffSystemWidths;
146 };
147 
148 //----------------------------------------------------------------------------
149 // AlignVerticallyFunctor
150 //----------------------------------------------------------------------------
151 
157 public:
163  virtual ~AlignVerticallyFunctor() = default;
165 
166  /*
167  * Abstract base implementation
168  */
169  bool ImplementsEndInterface() const override { return true; }
170 
171  /*
172  * Functor interface
173  */
175  FunctorCode VisitDiv(Div *div) override;
176  FunctorCode VisitFig(Fig *fig) override;
177  FunctorCode VisitMeasure(Measure *measure) override;
178  FunctorCode VisitPageEnd(Page *page) override;
179  FunctorCode VisitRend(Rend *rend) override;
180  FunctorCode VisitRunningElement(RunningElement *runningElement) override;
181  FunctorCode VisitStaff(Staff *staff) override;
182  FunctorCode VisitStaffAlignmentEnd(StaffAlignment *staffAlignment) override;
183  FunctorCode VisitSyllable(Syllable *syllable) override;
184  FunctorCode VisitSystem(System *system) override;
185  FunctorCode VisitSystemEnd(System *system) override;
186  FunctorCode VisitVerse(Verse *verse) override;
188 
189 protected:
190  //
191 private:
192  //
193 public:
194  //
195 private:
196  // The systemAligner
197  SystemAligner *m_systemAligner;
198  // The staff index
199  int m_staffIdx;
200  // The staffN
201  int m_staffN;
202  // The cumulated shift for the default alignment
203  int m_cumulatedShift;
204  // The sum of justification factors per page
205  int m_justificationSum;
206  // The page width - used for setting the horizontal position of <rend> withing text layout elements
207  int m_pageWidth;
208 };
209 
210 //----------------------------------------------------------------------------
211 // AlignSystemsFunctor
212 //----------------------------------------------------------------------------
213 
218 public:
222  AlignSystemsFunctor(Doc *doc);
224  virtual ~AlignSystemsFunctor() = default;
226 
227  /*
228  * Abstract base implementation
229  */
230  bool ImplementsEndInterface() const override { return true; }
231 
232  /*
233  * Setter for shift and spacing
234  */
236  void SetShift(int shift) { m_shift = shift; }
237  void SetSystemSpacing(int spacing) { m_systemSpacing = spacing; }
239 
240  /*
241  * Functor interface
242  */
244  FunctorCode VisitPage(Page *page) override;
245  FunctorCode VisitPageEnd(Page *page) override;
246  FunctorCode VisitSystem(System *system) override;
248 
249 protected:
250  //
251 private:
252  //
253 public:
254  //
255 private:
256  // The cumulated shift
257  int m_shift;
258  // The system margin
259  int m_systemSpacing;
260  // The (clef) overflow below of the previous system
261  int m_prevBottomOverflow;
262  int m_prevBottomClefOverflow;
263  // The sum of justification factors per page
264  double m_justificationSum;
265 };
266 
267 } // namespace vrv
268 
269 #endif // __VRV_ALIGNFUNCTOR_H__
vrv::Staff
This class represents a staff in a laid-out score (Doc).
Definition: staff.h:102
vrv::Measure
This class represents a measure in a page-based score (Doc).
Definition: measure.h:37
vrv::Syllable
This class models the MEI <mensur> element.
Definition: syllable.h:25
vrv::Doc
This class is a hold the data and corresponds to the model of a MVC design pattern.
Definition: doc.h:41
vrv::MeterSig
This class models the MEI <meterSig> element.
Definition: metersig.h:27
vrv::Verse
Definition: verse.h:23
vrv::AlignMeterParams
Regroup pointers to meterSig, mensur and proport objects.
Definition: alignfunctor.h:21
vrv::Div
This class represents an MEI Div.
Definition: div.h:24
vrv::AlignHorizontallyFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: alignfunctor.h:52
vrv::MeterSigGrp
This class represents a MEI meterSigGrp.
Definition: metersiggrp.h:28
vrv::Fraction
Definition: fraction.h:19
vrv::Mensur
This class models the MEI <mensur> element.
Definition: mensur.h:27
vrv::AlignMeasuresFunctor
This class aligns the measures by adjusting the m_drawingXRel position looking at the MeasureAligner.
Definition: alignfunctor.h:99
vrv::AlignMeasuresFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: alignfunctor.h:112
vrv::RunningElement
This class represents running elements (headers and footers).
Definition: runningelement.h:28
vrv::Fig
This class models the MEI <fig> element.
Definition: fig.h:23
vrv::AlignHorizontallyFunctor
This class aligns horizontally the content of a page.
Definition: alignfunctor.h:39
vrv::Proport
This class models the MEI <proport> element.
Definition: proport.h:23
vrv::Page
This class represents a page in a laid-out score (Doc).
Definition: page.h:31
vrv::MeasureAligner
This class aligns the content of a measure It contains a vector of Alignment.
Definition: horizontalaligner.h:425
vrv::AlignVerticallyFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: alignfunctor.h:169
vrv::System
This class represents a system in a laid-out score (Doc).
Definition: system.h:36
vrv::AlignSystemsFunctor
This class aligns the system by adjusting the m_drawingYRel position looking at the SystemAligner.
Definition: alignfunctor.h:217
vrv::StaffAlignment
This class stores an alignement position staves will point to.
Definition: verticalaligner.h:172
vrv::LayerElement
This class is a base class for the Layer (<layer>) content.
Definition: layerelement.h:46
vrv::Layer
This class represents a layer in a laid-out score (Doc).
Definition: layer.h:33
vrv::Rend
This class models the MEI <rend> element.
Definition: rend.h:25
vrv::AlignSystemsFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: alignfunctor.h:230
vrv::SystemAligner
This class aligns the content of a system It contains a vector of StaffAlignment.
Definition: verticalaligner.h:31
vrv::DocFunctor
This abstract class is the base class for all mutable functors that need access to the document.
Definition: functor.h:151
vrv::AlignVerticallyFunctor
This class vertically aligns the content of a page.
Definition: alignfunctor.h:156