Verovio
Source code documentation
castofffunctor.h
1 // Name: castofffunctor.h
3 // Author: David Bauer
4 // Created: 2023
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_CASTOFFFUNCTOR_H__
9 #define __VRV_CASTOFFFUNCTOR_H__
10 
11 #include "functor.h"
12 
13 namespace vrv {
14 
15 //----------------------------------------------------------------------------
16 // CastOffSystemsFunctor
17 //----------------------------------------------------------------------------
18 
24 public:
28  CastOffSystemsFunctor(Page *page, Doc *doc, bool smart);
30  virtual ~CastOffSystemsFunctor() = default;
32 
33  /*
34  * Abstract base implementation
35  */
36  bool ImplementsEndInterface() const override { return true; }
37 
38  /*
39  * Retrieve the leftover system
40  */
41  System *GetLeftoverSystem() const { return m_leftoverSystem; }
42 
43  /*
44  * Set the system width
45  */
46  void SetSystemWidth(int width) { m_systemWidth = width; }
47 
48  /*
49  * Functor interface
50  */
52  FunctorCode VisitDiv(Div *div) override;
53  FunctorCode VisitEditorialElement(EditorialElement *editorialElement) override;
54  FunctorCode VisitEnding(Ending *ending) override;
55  FunctorCode VisitMeasure(Measure *measure) override;
56  FunctorCode VisitPageElement(PageElement *pageElement) override;
57  FunctorCode VisitPageMilestone(PageMilestoneEnd *pageMilestoneEnd) override;
58  FunctorCode VisitSb(Sb *sb) override;
59  FunctorCode VisitScoreDef(ScoreDef *scoreDef) override;
60  FunctorCode VisitSystem(System *system) override;
61  FunctorCode VisitSystemEnd(System *system) override;
62  FunctorCode VisitSystemElement(SystemElement *systemElement) override;
63  FunctorCode VisitSystemMilestone(SystemMilestoneEnd *systemMilestoneEnd) override;
65 
66 protected:
67  //
68 private:
69  //
70 public:
71  //
72 private:
73  // The system we are taking the content from
74  System *m_contentSystem;
75  // The page we are adding the system to
76  Page *m_page;
77  // The current system
78  System *m_currentSystem;
79  // The cumulated shift (m_drawingXRel of the first measure of the current system)
80  int m_shift;
81  // The system width
82  int m_systemWidth;
83  // The current scoreDef width
84  int m_currentScoreDefWidth;
85  // The pending elements (ScoreDef, Endings, etc.) to be placed at the beginning of a system
86  ArrayOfObjects m_pendingElements;
87  // Indicates to smartly use encoded system breaks
88  bool m_smart;
89  // The leftover system (last system with only one measure)
90  System *m_leftoverSystem;
91 };
92 
93 //----------------------------------------------------------------------------
94 // CastOffPagesFunctor
95 //----------------------------------------------------------------------------
96 
101 public:
105  CastOffPagesFunctor(Page *contentPage, Doc *doc, Page *currentPage);
107  virtual ~CastOffPagesFunctor() = default;
109 
110  /*
111  * Abstract base implementation
112  */
113  bool ImplementsEndInterface() const override { return true; }
114 
115  /*
116  * Set the leftover system
117  */
118  void SetLeftoverSystem(System *system) { m_leftoverSystem = system; }
119 
120  /*
121  * Set the page height
122  */
123  void SetPageHeight(int height) { m_pageHeight = height; }
124 
125  /*
126  * Functor interface
127  */
129  FunctorCode VisitPageEnd(Page *page) override;
130  FunctorCode VisitPageElement(PageElement *pageElement) override;
131  FunctorCode VisitPageMilestone(PageMilestoneEnd *pageMilestoneEnd) override;
132  FunctorCode VisitScore(Score *score) override;
133  FunctorCode VisitSystem(System *system) override;
135 
136 protected:
137  //
138 private:
139  /*
140  * Returns the available height for system drawing on the current page
141  */
142  int GetAvailableDrawingHeight() const;
143 
144 public:
145  //
146 private:
147  // The page we are taking the content from
148  Page *m_contentPage;
149  // The current page
150  Page *m_currentPage;
151  // Indicates whether the current page is the first
152  bool m_firstCastOffPage;
153  // The cumulated shift (m_drawingYRel of the first system of the current page)
154  int m_shift;
155  // The page heights
156  int m_pageHeight;
157  int m_pgHeadHeight;
158  int m_pgFootHeight;
159  int m_pgHead2Height;
160  int m_pgFoot2Height;
161  // The leftover system (last system with only one measure)
162  System *m_leftoverSystem;
163  // The pending elements (Mdiv, Score) to be placed at the beginning of a page
164  ArrayOfObjects m_pendingPageElements;
165 };
166 
167 //----------------------------------------------------------------------------
168 // CastOffEncodingFunctor
169 //----------------------------------------------------------------------------
170 
175 public:
179  CastOffEncodingFunctor(Doc *doc, Page *currentPage, bool usePages = true);
181  virtual ~CastOffEncodingFunctor() = default;
183 
184  /*
185  * Abstract base implementation
186  */
187  bool ImplementsEndInterface() const override { return false; }
188 
189  /*
190  * Functor interface
191  */
193  FunctorCode VisitDiv(Div *div) override;
194  FunctorCode VisitEditorialElement(EditorialElement *editorialElement) override;
195  FunctorCode VisitEnding(Ending *ending) override;
196  FunctorCode VisitMeasure(Measure *measure) override;
197  FunctorCode VisitPageElement(PageElement *pageElement) override;
198  FunctorCode VisitPageMilestone(PageMilestoneEnd *pageMilestoneEnd) override;
199  FunctorCode VisitPb(Pb *pb) override;
200  FunctorCode VisitSb(Sb *sb) override;
201  FunctorCode VisitScoreDef(ScoreDef *scoreDef) override;
202  FunctorCode VisitStaff(Staff *staff) override;
203  FunctorCode VisitSystem(System *system) override;
204  FunctorCode VisitSystemElement(SystemElement *systemElement) override;
206 
207 protected:
208  //
209 private:
210  //
211 public:
212  //
213 private:
214  // The current page
215  Page *m_currentPage;
216  // The system we are taking the content from
217  System *m_contentSystem;
218  // The current system
219  System *m_currentSystem;
220  // Indicates if we want to use the pageBreaks from the document
221  bool m_usePages;
222 };
223 
224 //----------------------------------------------------------------------------
225 // UnCastOffFunctor
226 //----------------------------------------------------------------------------
227 
232 class UnCastOffFunctor : public Functor {
233 public:
237  UnCastOffFunctor(Page *page);
239  virtual ~UnCastOffFunctor() = default;
241 
242  /*
243  * Abstract base implementation
244  */
245  bool ImplementsEndInterface() const override { return false; }
246 
247  /*
248  * Set the reset cache flag
249  */
250  void SetResetCache(bool resetCache) { m_resetCache = resetCache; }
251 
252  /*
253  * Functor interface
254  */
256  FunctorCode VisitFloatingObject(FloatingObject *floatingObject) override;
257  FunctorCode VisitMeasure(Measure *measure) override;
258  FunctorCode VisitPageElement(PageElement *pageElement) override;
259  FunctorCode VisitPageMilestone(PageMilestoneEnd *pageMilestoneEnd) override;
260  FunctorCode VisitScore(Score *score) override;
261  FunctorCode VisitSystem(System *system) override;
263 
264 protected:
265  //
266 private:
267  //
268 public:
269  //
270 private:
271  // The page we are adding systems to
272  Page *m_page;
273  // The system we are adding content to
274  System *m_currentSystem;
275  // Indicates if we need to reset the horizontal layout cache
276  bool m_resetCache;
277 };
278 
279 //----------------------------------------------------------------------------
280 // CastOffToSelectionFunctor
281 //----------------------------------------------------------------------------
282 
289 public:
293  CastOffToSelectionFunctor(Page *page, Doc *doc, const std::string &start, const std::string &end);
295  virtual ~CastOffToSelectionFunctor() = default;
297 
298  /*
299  * Abstract base implementation
300  */
301  bool ImplementsEndInterface() const override { return false; }
302 
303  /*
304  * Functor interface
305  */
307  FunctorCode VisitDiv(Div *div) override;
308  FunctorCode VisitEditorialElement(EditorialElement *editorialElement) override;
309  FunctorCode VisitMeasure(Measure *measure) override;
310  FunctorCode VisitPageElement(PageElement *pageElement) override;
311  FunctorCode VisitPageMilestone(PageMilestoneEnd *pageMilestoneEnd) override;
312  FunctorCode VisitScoreDef(ScoreDef *scoreDef) override;
313  FunctorCode VisitSystem(System *system) override;
314  FunctorCode VisitSystemElement(SystemElement *systemElement) override;
315  FunctorCode VisitSystemMilestone(SystemMilestoneEnd *systemMilestoneEnd) override;
317 
318 protected:
319  //
320 private:
321  //
322 public:
323  //
324 private:
325  // The system we are taking the content from
326  System *m_contentSystem;
327  // The page we are adding systems to
328  Page *m_page;
329  // The current system
330  System *m_currentSystem;
331  // The start measure ID of the selection
332  std::string m_start;
333  // The end measure ID of the selection
334  std::string m_end;
335  // Indicates whether we are currently in the selection range
336  bool m_isSelection;
337 };
338 
339 } // namespace vrv
340 
341 #endif // __VRV_CASTOFFFUNCTOR_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::Doc
This class is a hold the data and corresponds to the model of a MVC design pattern.
Definition: doc.h:41
vrv::SystemElement
This class represents elements appearing within a measure.
Definition: systemelement.h:25
vrv::Div
This class represents an MEI Div.
Definition: div.h:24
vrv::Ending
This class represents a MEI ending.
Definition: ending.h:28
vrv::CastOffEncodingFunctor
This class casts off the document according to the encoding provided (pb and sb).
Definition: castofffunctor.h:174
vrv::PageElement
This class represents elements appearing within a page.
Definition: pageelement.h:25
vrv::CastOffPagesFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: castofffunctor.h:113
vrv::UnCastOffFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: castofffunctor.h:245
vrv::CastOffToSelectionFunctor
This class casts off a document to selection.
Definition: castofffunctor.h:288
vrv::SystemMilestoneEnd
This class models an end milestone element at the system level.
Definition: systemmilestone.h:28
vrv::CastOffToSelectionFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: castofffunctor.h:301
vrv::Functor
This abstract class is the base class for all mutable functors.
Definition: functor.h:101
vrv::PageMilestoneEnd
This class models an end milestone element and has no MEI equivalent.
Definition: pagemilestone.h:26
vrv::CastOffEncodingFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: castofffunctor.h:187
vrv::UnCastOffFunctor
This class undoes the cast off for both pages and systems.
Definition: castofffunctor.h:232
vrv::Pb
This class represents a MEI pb in score-based MEI.
Definition: pb.h:25
vrv::CastOffSystemsFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: castofffunctor.h:36
vrv::Page
This class represents a page in a laid-out score (Doc).
Definition: page.h:31
vrv::Sb
This class represents a MEI sb in score-based MEI.
Definition: sb.h:25
vrv::System
This class represents a system in a laid-out score (Doc).
Definition: system.h:36
vrv::EditorialElement
This class is a base class for the editorial element containing musical content, for example <rgd> or...
Definition: editorial.h:38
vrv::ScoreDef
This class represents a MEI scoreDef.
Definition: scoredef.h:129
vrv::CastOffPagesFunctor
This class fills a document by adding pages with the appropriate length.
Definition: castofffunctor.h:100
vrv::CastOffSystemsFunctor
This class fills a page by adding systems with the appropriate length.
Definition: castofffunctor.h:23
vrv::DocFunctor
This abstract class is the base class for all mutable functors that need access to the document.
Definition: functor.h:151