Verovio
Source code documentation
setscoredeffunctor.h
1 // Name: setscoredeffunctor.h
3 // Author: David Bauer
4 // Created: 2022
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_SETSCOREDEFFUNCTOR_H__
9 #define __VRV_SETSCOREDEFFUNCTOR_H__
10 
11 #include "functor.h"
12 
13 namespace vrv {
14 
15 //----------------------------------------------------------------------------
16 // ReplaceDrawingValuesInStaffDefFunctor
17 //----------------------------------------------------------------------------
18 
23 public:
27  ReplaceDrawingValuesInStaffDefFunctor(const Clef *clef, const KeySig *keySig, const Mensur *mensur,
29  const MeterSig *meterSig, const MeterSigGrp *meterSigGrp);
30  virtual ~ReplaceDrawingValuesInStaffDefFunctor() = default;
32 
33  /*
34  * Abstract base implementation
35  */
36  bool ImplementsEndInterface() const override { return false; }
37 
38  /*
39  * Functor interface
40  */
42  FunctorCode VisitStaffDef(StaffDef *staffDef) override;
44 
45 protected:
46  //
47 private:
48  //
49 public:
50  //
51 private:
52  // The clef (NULL if none)
53  const Clef *m_clef;
54  // The key signature (NULL if none)
55  const KeySig *m_keySig;
56  // The mensur (NULL if none)
57  const Mensur *m_mensur;
58  // The meter signature (NULL if none)
59  const MeterSig *m_meterSig;
60  // The meter signature group (NULL if none)
61  const MeterSigGrp *m_meterSigGrp;
62 };
63 
64 //----------------------------------------------------------------------------
65 // ScoreDefSetCurrentPageFunctor
66 //----------------------------------------------------------------------------
67 
72 public:
78  virtual ~ScoreDefSetCurrentPageFunctor() = default;
80 
81  /*
82  * Abstract base implementation
83  */
84  bool ImplementsEndInterface() const override { return true; }
85 
86  /*
87  * Functor interface
88  */
90  FunctorCode VisitPageEnd(Page *page) override;
91  FunctorCode VisitScore(Score *score) override;
93 
94 protected:
95  //
96 private:
97  //
98 public:
99  //
100 private:
101  // The list of all scores
102  std::list<Score *> m_scores;
103 };
104 
105 //----------------------------------------------------------------------------
106 // ScoreDefSetCurrentFunctor
107 //----------------------------------------------------------------------------
108 
115 public:
121  virtual ~ScoreDefSetCurrentFunctor() = default;
123 
124  /*
125  * Abstract base implementation
126  */
127  bool ImplementsEndInterface() const override { return false; }
128 
129  /*
130  * Functor interface
131  */
133  FunctorCode VisitClef(Clef *clef) override;
134  FunctorCode VisitKeySig(KeySig *keySig) override;
135  FunctorCode VisitLayer(Layer *layer) override;
136  FunctorCode VisitMeasure(Measure *measure) override;
137  FunctorCode VisitMensur(Mensur *mensur) override;
138  FunctorCode VisitPage(Page *page) override;
139  FunctorCode VisitProport(Proport *proport) override;
140  FunctorCode VisitScore(Score *score) override;
141  FunctorCode VisitScoreDef(ScoreDef *scoreDef) override;
142  FunctorCode VisitStaff(Staff *staff) override;
143  FunctorCode VisitStaffDef(StaffDef *staffDef) override;
144  FunctorCode VisitStaffGrp(StaffGrp *staffGrp) override;
145  FunctorCode VisitSystem(System *system) override;
147 
148 protected:
149  //
150 private:
151  //
152 public:
153  //
154 private:
155  // The current score
156  Score *m_currentScore;
157  // The current scoreDef
158  ScoreDef *m_currentScoreDef;
159  // The current staffDef
160  StaffDef *m_currentStaffDef;
161  // The upcoming scoreDef
162  ScoreDef m_upcomingScoreDef;
163  // The previous measure (for setting cautionary scoreDef)
164  Measure *m_previousMeasure;
165  // The current system (for setting the system scoreDef)
166  System *m_currentSystem;
167  // Flag indicating whether full labels have to be drawn
168  bool m_drawLabels;
169  // Flag indicating that the scoreDef restarts (draw brace and label)
170  bool m_restart;
171  // Flag indicating if we already have a measure in the system
172  bool m_hasMeasure;
173 };
174 
175 //----------------------------------------------------------------------------
176 // ScoreDefOptimizeFunctor
177 //----------------------------------------------------------------------------
178 
184 public:
190  virtual ~ScoreDefOptimizeFunctor() = default;
192 
193  /*
194  * Abstract base implementation
195  */
196  bool ImplementsEndInterface() const override { return true; }
197 
198  /*
199  * Functor interface
200  */
202  FunctorCode VisitMeasure(Measure *measure) override;
203  FunctorCode VisitScore(Score *score) override;
204  FunctorCode VisitStaff(Staff *staff) override;
205  FunctorCode VisitStaffGrpEnd(StaffGrp *staffGrp) override;
206  FunctorCode VisitSystem(System *system) override;
207  FunctorCode VisitSystemEnd(System *system) override;
209 
210 protected:
211  //
212 private:
213  //
214 public:
215  //
216 private:
217  // The current scoreDef
218  ScoreDef *m_currentScoreDef;
219  // Flag indicating if we are optimizing encoded layout
220  bool m_encoded;
221  // Flag indicating if we consider the first scoreDef
222  bool m_firstScoreDef;
223  // Flag indicating if a Fermata element is present
224  bool m_hasFermata;
225  // Flag indicating if a Tempo element is present
226  bool m_hasTempo;
227 };
228 
229 //----------------------------------------------------------------------------
230 // SetCautionaryScoreDefFunctor
231 //----------------------------------------------------------------------------
232 
237 public:
241  SetCautionaryScoreDefFunctor(ScoreDef *currentScoreDef);
243  virtual ~SetCautionaryScoreDefFunctor() = default;
245 
246  /*
247  * Abstract base implementation
248  */
249  bool ImplementsEndInterface() const override { return false; }
250 
251  /*
252  * Functor interface
253  */
255  FunctorCode VisitObject(Object *object) override;
257 
258 protected:
259  //
260 private:
261  //
262 public:
263  //
264 private:
265  // The current scoreDef
266  ScoreDef *m_currentScoreDef;
267  // The current staffDef
268  StaffDef *m_currentStaffDef;
269 };
270 
271 //----------------------------------------------------------------------------
272 // ScoreDefSetGrpSymFunctor
273 //----------------------------------------------------------------------------
274 
279 public:
285  virtual ~ScoreDefSetGrpSymFunctor() = default;
287 
288  /*
289  * Abstract base implementation
290  */
291  bool ImplementsEndInterface() const override { return false; }
292 
293  /*
294  * Functor interface
295  */
297  FunctorCode VisitGrpSym(GrpSym *grpSym) override;
298  FunctorCode VisitSystem(System *system) override;
300 
301 protected:
302  //
303 private:
304  //
305 public:
306  //
307 private:
308  //
309 };
310 
311 //----------------------------------------------------------------------------
312 // ScoreDefUnsetCurrentFunctor
313 //----------------------------------------------------------------------------
314 
319 public:
325  virtual ~ScoreDefUnsetCurrentFunctor() = default;
327 
328  /*
329  * Abstract base implementation
330  */
331  bool ImplementsEndInterface() const override { return false; }
332 
333  /*
334  * Functor interface
335  */
337  FunctorCode VisitAlignmentReference(AlignmentReference *alignmentReference) override;
338  FunctorCode VisitLayer(Layer *layer) override;
339  FunctorCode VisitMeasure(Measure *measure) override;
340  FunctorCode VisitPage(Page *page) override;
341  FunctorCode VisitStaff(Staff *staff) override;
342  FunctorCode VisitSystem(System *system) override;
344 
345 protected:
346  //
347 private:
348  //
349 public:
350  //
351 private:
352  //
353 };
354 
355 //----------------------------------------------------------------------------
356 // SetStaffDefRedrawFlagsFunctor
357 //----------------------------------------------------------------------------
358 
359 enum StaffDefRedrawFlags {
360  REDRAW_CLEF = 0x1,
361  REDRAW_KEYSIG = 0x2,
362  REDRAW_MENSUR = 0x4,
363  REDRAW_METERSIG = 0x8,
364  REDRAW_METERSIGGRP = 0x10,
365  // all flags
366  REDRAW_ALL = REDRAW_CLEF | REDRAW_KEYSIG | REDRAW_MENSUR | REDRAW_METERSIG | REDRAW_METERSIGGRP,
367  //
368  FORCE_REDRAW = 0x100
369 };
370 
376 public:
380  SetStaffDefRedrawFlagsFunctor(int redrawFlags);
382  virtual ~SetStaffDefRedrawFlagsFunctor() = default;
384 
385  /*
386  * Abstract base implementation
387  */
388  bool ImplementsEndInterface() const override { return false; }
389 
390  /*
391  * Functor interface
392  */
394  FunctorCode VisitStaffDef(StaffDef *staffDef) override;
396 
397 protected:
398  //
399 private:
400  //
401 public:
402  //
403 private:
404  // The staffDef redraw flags
405  int m_redrawFlags;
406 };
407 
408 } // namespace vrv
409 
410 #endif // __VRV_SETSCOREDEFFUNCTOR_H__
vrv::StaffDef
This class represents a MEI staffDef.
Definition: staffdef.h:26
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::ScoreDefSetCurrentFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: setscoredeffunctor.h:127
vrv::ScoreDefSetGrpSymFunctor
This class prepares the group symbol starting and ending staffDefs for drawing.
Definition: setscoredeffunctor.h:278
vrv::ScoreDefUnsetCurrentFunctor
This class unsets the initial scoreDef for each system and measure.
Definition: setscoredeffunctor.h:318
vrv::Doc
This class is a hold the data and corresponds to the model of a MVC design pattern.
Definition: doc.h:41
vrv::ScoreDefOptimizeFunctor
This class optimizes the scoreDef for each system.
Definition: setscoredeffunctor.h:183
vrv::MeterSig
This class models the MEI <meterSig> element.
Definition: metersig.h:27
vrv::ScoreDefSetCurrentPageFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: setscoredeffunctor.h:84
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::ScoreDefOptimizeFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: setscoredeffunctor.h:196
vrv::MeterSigGrp
This class represents a MEI meterSigGrp.
Definition: metersiggrp.h:28
vrv::ScoreDefSetGrpSymFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: setscoredeffunctor.h:291
vrv::ScoreDefUnsetCurrentFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: setscoredeffunctor.h:331
vrv::Mensur
This class models the MEI <mensur> element.
Definition: mensur.h:27
vrv::AlignmentReference
This class stores a references of LayerElements for a staff.
Definition: horizontalaligner.h:290
vrv::SetCautionaryScoreDefFunctor
This class sets the cautionary scoreDef wherever needed.
Definition: setscoredeffunctor.h:236
vrv::SetStaffDefRedrawFlagsFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: setscoredeffunctor.h:388
vrv::Clef
This class models the MEI <clef> element.
Definition: clef.h:27
vrv::Functor
This abstract class is the base class for all mutable functors.
Definition: functor.h:101
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::ReplaceDrawingValuesInStaffDefFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: setscoredeffunctor.h:36
vrv::SetStaffDefRedrawFlagsFunctor
This class sets drawing flags for the StaffDef for indicating whether clefs, keysigs,...
Definition: setscoredeffunctor.h:375
vrv::System
This class represents a system in a laid-out score (Doc).
Definition: system.h:36
vrv::SetCautionaryScoreDefFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: setscoredeffunctor.h:249
vrv::GrpSym
This class represents a MEI grpSym.
Definition: grpsym.h:25
vrv::ScoreDef
This class represents a MEI scoreDef.
Definition: scoredef.h:129
vrv::ReplaceDrawingValuesInStaffDefFunctor
This class sets the current drawing clef, key signature, etc.
Definition: setscoredeffunctor.h:22
vrv::Score
This class represent a <score> in MEI.
Definition: score.h:30
vrv::KeySig
This class models the MEI <keySig> element.
Definition: keysig.h:44
vrv::StaffGrp
This class represents a MEI staffGrp.
Definition: staffgrp.h:31
vrv::ScoreDefSetCurrentPageFunctor
This class sets the Page::m_score and Page::m_scoreEnd pointers.
Definition: setscoredeffunctor.h:71
vrv::Layer
This class represents a layer in a laid-out score (Doc).
Definition: layer.h:33
vrv::ScoreDefSetCurrentFunctor
This class sets the current scoreDef wherever needed.
Definition: setscoredeffunctor.h:114
vrv::DocFunctor
This abstract class is the base class for all mutable functors that need access to the document.
Definition: functor.h:151