Verovio
Source code documentation
measure.h
1 // Name: measure.h
3 // Author: Laurent Pugin
4 // Created: 2012
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_MEASURE_H__
9 #define __VRV_MEASURE_H__
10 
11 #include "atts_cmn.h"
12 #include "atts_shared.h"
13 #include "barline.h"
14 #include "facsimileinterface.h"
15 #include "horizontalaligner.h"
16 #include "object.h"
17 
18 namespace vrv {
19 
20 class ControlElement;
21 class Ending;
22 class LayerElement;
23 class ScoreDef;
24 class System;
25 class TimestampAttr;
26 
27 //----------------------------------------------------------------------------
28 // Measure
29 //----------------------------------------------------------------------------
30 
37 class Measure : public Object,
38  public FacsimileInterface,
39  public AttBarring,
40  public AttCoordX1,
41  public AttCoordX2,
42  public AttMeasureLog,
43  public AttMeterConformanceBar,
44  public AttNNumberLike,
45  public AttPointing,
46  public AttTyped {
47 private:
48  using BarlineRenditionPair = std::pair<data_BARRENDITION, data_BARRENDITION>;
49 
50 public:
55  Measure(MeasureType measuredMusic = MEASURED, int logMeasureNb = -1);
57  virtual ~Measure();
58  Object *Clone() const override { return new Measure(*this); };
59  void Reset() override;
60  std::string GetClassName() const override { return "measure"; }
62 
66  void CloneReset() override;
67 
71  FacsimileInterface *GetFacsimileInterface() override { return vrv_cast<FacsimileInterface *>(this); }
73  const FacsimileInterface *GetFacsimileInterface() const override
74  {
75  return vrv_cast<const FacsimileInterface *>(this);
76  }
78 
82  bool IsMeasuredMusic() const { return (m_measureType == MEASURED); }
83 
87  bool IsNeumeLine() const { return (m_measureType == NEUMELINE); }
88 
92  int GetIndex() const { return m_index; }
94  void SetIndex(int index) { m_index = index; }
96 
100  bool IsSupportedChild(ClassId classId) override;
101 
105  bool AddChildAdditionalCheck(Object *child) override;
106 
110  void AddChildBack(Object *object);
111 
115  bool HasCachedHorizontalLayout() const { return (m_cachedWidth != VRV_UNSET); }
116 
120  int GetDrawingX() const override;
121 
125  void ResetCachedDrawingX() const override;
126 
130  int GetDrawingXRel() const { return m_drawingXRel; }
132  void SetDrawingXRel(int drawingXRel);
133  void CacheXRel(bool restore = false);
134  int GetCachedXRel() const { return m_cachedXRel; }
135  void ResetCachedXRel() { m_cachedXRel = VRV_UNSET; }
137 
141  bool IsFirstInSystem() const;
143  bool IsLastInSystem() const;
145 
149  int GetMeasureIdx() const { return Object::GetIdx(); }
150 
160  data_BARRENDITION GetDrawingLeftBarLine() const { return m_leftBarLine.GetForm(); }
162  void SetDrawingLeftBarLine(data_BARRENDITION type) { m_leftBarLine.SetForm(type); }
163  data_BARRENDITION GetDrawingRightBarLine() const { return m_rightBarLine.GetForm(); }
164  void SetDrawingRightBarLine(data_BARRENDITION type) { m_rightBarLine.SetForm(type); }
165  data_BARRENDITION GetDrawingLeftBarLineByStaffN(int staffN) const;
166  data_BARRENDITION GetDrawingRightBarLineByStaffN(int staffN) const;
168 
172  bool HasInvisibleStaffBarlines() const { return !m_invisibleStaffBarlines.empty(); }
173 
178  BarlineRenditionPair SelectDrawingBarLines(const Measure *previous) const;
179 
184  void SetDrawingBarLines(Measure *previous, int barlineDrawingFlags);
185 
191  Measure *previous, ListOfObjects &currentInvisible, ListOfObjects &previousInvisible, int barlineDrawingFlags);
192 
199  BarLine *GetLeftBarLine() { return &m_leftBarLine; }
201  const BarLine *GetLeftBarLine() const { return &m_leftBarLine; }
202  BarLine *GetRightBarLine() { return &m_rightBarLine; }
203  const BarLine *GetRightBarLine() const { return &m_rightBarLine; }
205 
209  int GetNonJustifiableLeftMargin() const { return m_measureAligner.GetNonJustifiableMargin(); }
210 
214  int GetLeftBarLineXRel() const;
216  int GetLeftBarLineLeft() const;
217  int GetLeftBarLineRight() const;
218  int GetRightBarLineXRel() const;
219  int GetRightBarLineLeft() const;
220  int GetRightBarLineRight() const;
222 
226  int CalculateRightBarLineWidth(const Doc *doc, int staffSize) const;
227 
231  int GetWidth() const;
232 
236  int GetInnerWidth() const;
237 
241  int GetInnerCenterX() const;
242 
246  int GetCachedWidth() const { return m_cachedWidth; }
248  int GetCachedOverflow() const { return m_cachedOverflow; }
249  void ResetCachedWidth() { m_cachedWidth = VRV_UNSET; }
250  void ResetCachedOverflow() { m_cachedOverflow = VRV_UNSET; }
252 
257  int GetDrawingOverflow();
258 
262  int GetSectionRestartShift(const Doc *doc) const;
263 
267  ScoreDef *GetDrawingScoreDef() { return m_drawingScoreDef; }
269  const ScoreDef *GetDrawingScoreDef() const { return m_drawingScoreDef; }
270  void SetDrawingScoreDef(ScoreDef *drawingScoreDef);
271  void ResetDrawingScoreDef();
273 
277  Ending *GetDrawingEnding() { return m_drawingEnding; }
279  const Ending *GetDrawingEnding() const { return m_drawingEnding; }
280  void SetDrawingEnding(Ending *ending) { m_drawingEnding = ending; }
282 
287  bool HasAlignmentRefWithMultipleLayers() const { return m_hasAlignmentRefWithMultipleLayers; }
289  void HasAlignmentRefWithMultipleLayers(bool hasRef) { m_hasAlignmentRefWithMultipleLayers = hasRef; }
291 
292  /*
293  * Return the first staff of each staffGrp according to the scoreDef
294  */
295  std::vector<Staff *> GetFirstStaffGrpStaves(ScoreDef *scoreDef);
296 
301  Staff *GetTopVisibleStaff();
303  const Staff *GetTopVisibleStaff() const;
305 
310  Staff *GetBottomVisibleStaff();
312  const Staff *GetBottomVisibleStaff() const;
314 
319  int EnclosesTime(int time) const;
320 
324  Fraction GetLastTimeOffset() const { return m_scoreTimeOffset.back(); }
325 
329  double GetLastRealTimeOffset() const { return m_realTimeOffsetMilliseconds.back(); }
331  double GetRealTimeOffsetMilliseconds(int repeat) const;
333 
337  void ClearScoreTimeOffset() { m_scoreTimeOffset.clear(); }
339  void AddScoreTimeOffset(Fraction offset) { m_scoreTimeOffset.push_back(offset); }
340  void ClearRealTimeOffset() { m_realTimeOffsetMilliseconds.clear(); }
341  void AddRealTimeOffset(double milliseconds) { m_realTimeOffsetMilliseconds.push_back(milliseconds); }
343 
347  void SetCurrentTempo(double tempo) { m_currentTempo = tempo; }
349  double GetCurrentTempo() const { return m_currentTempo; }
351 
355  std::vector<std::pair<LayerElement *, LayerElement *>> GetInternalTieEndpoints();
356 
357  //----------//
358  // Functors //
359  //----------//
360 
364  FunctorCode Accept(Functor &functor) override;
366  FunctorCode Accept(ConstFunctor &functor) const override;
367  FunctorCode AcceptEnd(Functor &functor) override;
368  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
370 
371 public:
372  // flags for drawing measure barline based on visibility or other conditions
373  enum BarlineDrawingFlags {
374  SYSTEM_BREAK = 0x1,
375  SCORE_DEF_INSERT = 0x2,
376  INVISIBLE_MEASURE_CURRENT = 0x4,
377  INVISIBLE_MEASURE_PREVIOUS = 0x8
378  };
383  int m_drawingFacsX1;
385  int m_drawingFacsX2;
387 
392 
393  TimestampAligner m_timestampAligner;
394 
395 protected:
401 
406 
410  int m_cachedOverflow;
412  int m_cachedWidth;
414 
415 private:
420  MeasureType m_measureType;
421 
425  int m_index;
426 
430  BarLine m_leftBarLine;
432  BarLine m_rightBarLine;
434 
440  ScoreDef *m_drawingScoreDef;
441 
446  Ending *m_drawingEnding;
447 
451  bool m_hasAlignmentRefWithMultipleLayers;
452 
456  std::vector<Fraction> m_scoreTimeOffset;
457  std::vector<double> m_realTimeOffsetMilliseconds;
458  double m_currentTempo;
459 
460  std::map<int, BarlineRenditionPair> m_invisibleStaffBarlines;
461 };
462 
463 } // namespace vrv
464 
465 #endif
vrv::Measure::GetBottomVisibleStaff
Staff * GetBottomVisibleStaff()
Return the bottom (last) visible staff in the measure (if any).
vrv::Measure
This class represents a measure in a page-based score (Doc).
Definition: measure.h:37
vrv::Measure::SetCurrentTempo
void SetCurrentTempo(double tempo)
Setter and getter for the current tempo.
Definition: measure.h:348
vrv::Measure::IsSupportedChild
bool IsSupportedChild(ClassId classId) override
Methods for adding allowed content.
vrv::TimestampAligner
This class stores the timestamps (TimestampsAttr) in a measure.
Definition: horizontalaligner.h:664
vrv::Measure::GetMeasureIdx
int GetMeasureIdx() const
Return the index position of the measure in its system parent.
Definition: measure.h:149
vrv::Measure::SetDrawingBarLines
void SetDrawingBarLines(Measure *previous, int barlineDrawingFlags)
Set the drawing barlines for the measure.
vrv::Measure::ClearScoreTimeOffset
void ClearScoreTimeOffset()
Setter for the time offset.
Definition: measure.h:338
vrv::Measure::GetCachedWidth
int GetCachedWidth() const
Return and reset the cached width / overflow.
Definition: measure.h:247
vrv::Doc
This class is a hold the data and corresponds to the model of a MVC design pattern.
Definition: doc.h:41
vrv::Measure::CloneReset
void CloneReset() override
Overriding CloneReset() method to be called after copy / assignment calls.
vrv::Ending
This class represents a MEI ending.
Definition: ending.h:28
vrv::Measure::SelectDrawingBarLines
BarlineRenditionPair SelectDrawingBarLines(const Measure *previous) const
Select drawing barlines based on the previous right and current left barlines (to avoid duplicated do...
vrv::Measure::CalculateRightBarLineWidth
int CalculateRightBarLineWidth(const Doc *doc, int staffSize) const
Return the width of the right barline based on the barline form.
vrv::Object::GetIdx
int GetIdx() const
Return the index position of the object in its parent (-1 if not found)
vrv::Measure::GetInnerCenterX
int GetInnerCenterX() const
Return the center x of the inner of the measure.
vrv::Measure::GetLastRealTimeOffset
double GetLastRealTimeOffset() const
Return the real time offset in milliseconds.
Definition: measure.h:330
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::Measure::GetNonJustifiableLeftMargin
int GetNonJustifiableLeftMargin() const
Return the non-justifiable left margin for the measure.
Definition: measure.h:209
vrv::Measure::m_drawingFacsX1
int m_drawingFacsX1
The X absolute position of the measure for facsimile (transcription) encodings.
Definition: measure.h:384
vrv::Measure::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::Measure::EnclosesTime
int EnclosesTime(int time) const
Check if the measure encloses the given time (in millisecond) Return the playing repeat time (1-based...
vrv::Fraction
Definition: fraction.h:19
vrv::Measure::SetInvisibleStaffBarlines
void SetInvisibleStaffBarlines(Measure *previous, ListOfObjects &currentInvisible, ListOfObjects &previousInvisible, int barlineDrawingFlags)
Create mapping of original barline values to staves in the measure that are neighbored by invisible s...
vrv::Measure::ResetCachedDrawingX
void ResetCachedDrawingX() const override
Reset the cached values of the drawingX values.
vrv::Measure::GetSectionRestartShift
int GetSectionRestartShift(const Doc *doc) const
Calculates the section restart shift.
vrv::BarLine
This class models the MEI <barLine> element.
Definition: barline.h:29
vrv::Measure::GetInternalTieEndpoints
std::vector< std::pair< LayerElement *, LayerElement * > > GetInternalTieEndpoints()
Return vector with tie endpoints for ties that start and end in current measure.
vrv::Measure::AddChildAdditionalCheck
bool AddChildAdditionalCheck(Object *child) override
Additional check when adding a child.
vrv::Measure::m_cachedXRel
int m_cachedXRel
The cached value for m_drawingXRel for caching horizontal layout.
Definition: measure.h:405
vrv::Measure::GetDrawingOverflow
int GetDrawingOverflow()
Return the right overflow of the control events in the measure.
vrv::Measure::GetInnerWidth
int GetInnerWidth() const
Return the inner width of the measure.
vrv::Measure::AddChildBack
void AddChildBack(Object *object)
Specific method for measures.
vrv::MeasureAligner
This class aligns the content of a measure It contains a vector of Alignment.
Definition: horizontalaligner.h:425
vrv::Measure::GetIndex
int GetIndex() const
Get and set the measure index.
Definition: measure.h:93
vrv::Measure::Reset
void Reset() override
Virtual reset method.
vrv::Measure::GetTopVisibleStaff
Staff * GetTopVisibleStaff()
Return the top (first) visible staff in the measure (if any).
vrv::FacsimileInterface
Definition: facsimileinterface.h:27
vrv::Measure::HasCachedHorizontalLayout
bool HasCachedHorizontalLayout() const
Return true if the Measure has cached values for the horizontal layout.
Definition: measure.h:115
vrv::Measure::IsMeasuredMusic
bool IsMeasuredMusic() const
Return true if measured music (otherwise we have fake measures)
Definition: measure.h:82
vrv::Measure::GetDrawingX
int GetDrawingX() const override
Get the X drawing position.
vrv::Measure::GetLastTimeOffset
Fraction GetLastTimeOffset() const
Read only access to m_scoreTimeOffset.
Definition: measure.h:324
vrv::Measure::IsNeumeLine
bool IsNeumeLine() const
Return true if the measure represents a neume (section) line.
Definition: measure.h:87
vrv::Measure::m_drawingXRel
int m_drawingXRel
The X relative position of the measure.
Definition: measure.h:400
vrv::ScoreDef
This class represents a MEI scoreDef.
Definition: scoredef.h:129
vrv::Measure::m_measureAligner
MeasureAligner m_measureAligner
The measure aligner that holds the x positions of the content of the measure.
Definition: measure.h:391
vrv::Measure::GetWidth
int GetWidth() const
Return the width of the measure, including the barLine width.
vrv::Measure::HasInvisibleStaffBarlines
bool HasInvisibleStaffBarlines() const
Return whether there is mapping of barline values to invisible staves present in measure.
Definition: measure.h:172
vrv::Measure::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: measure.h:58