Verovio
Source code documentation
adjustbeamsfunctor.h
1 // Name: adjustbeamsfunctor.h
3 // Author: David Bauer
4 // Created: 2023
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_ADJUSTBEAMSFUNCTOR_H__
9 #define __VRV_ADJUSTBEAMSFUNCTOR_H__
10 
11 #include "functor.h"
12 
13 namespace vrv {
14 
15 //----------------------------------------------------------------------------
16 // AdjustBeamsFunctor
17 //----------------------------------------------------------------------------
18 
23 public:
27  AdjustBeamsFunctor(Doc *doc);
29  virtual ~AdjustBeamsFunctor() = default;
31 
32  /*
33  * Abstract base implementation
34  */
35  bool ImplementsEndInterface() const override { return true; }
36 
37  /*
38  * Functor interface
39  */
41  FunctorCode VisitBeam(Beam *beam) override;
42  FunctorCode VisitBeamEnd(Beam *beam) override;
43  FunctorCode VisitClef(Clef *clef) override;
44  FunctorCode VisitFTrem(FTrem *fTrem) override;
45  FunctorCode VisitFTremEnd(FTrem *fTrem) override;
46  FunctorCode VisitLayerElement(LayerElement *layerElement) override;
47  FunctorCode VisitRest(Rest *rest) override;
49 
50 protected:
51  //
52 private:
53  // Get the drawing interface of the outer beam or the outer ftrem
54  BeamDrawingInterface *GetOuterBeamInterface() const;
55 
60  int CalcLayerOverlap(const LayerElement *beamElement) const;
61 
62  // Rounds the overlap to the closest multiple of a half unit
63  int AdjustOverlapToHalfUnit(int overlap, int unit) const;
64 
65 public:
66  //
67 private:
68  // The top-level beam or ftrem that should be adjusted
69  Beam *m_outerBeam;
70  FTrem *m_outerFTrem;
71  // The y coordinates of the beam left and right side
72  int m_y1;
73  int m_y2;
74  // The x coordinates of the beam left and right side
75  int m_x1;
76  int m_x2;
77  // The slope of the beam
78  double m_beamSlope;
79  // The direction bias
80  int m_directionBias;
81  // The overlap margin that the beam needs to be displaced by
82  int m_overlapMargin;
83  // Indicates whether an element from a different layer is processed
84  bool m_isOtherLayer;
85 };
86 
87 } // namespace vrv
88 
89 #endif // __VRV_ADJUSTBEAMSFUNCTOR_H__
vrv::Doc
This class is a hold the data and corresponds to the model of a MVC design pattern.
Definition: doc.h:41
vrv::FTrem
This class models the MEI <fTrem> element.
Definition: ftrem.h:25
vrv::AdjustBeamsFunctor
This class calculates the vertical position adjustment for beams if they overlap with layer elements.
Definition: adjustbeamsfunctor.h:22
vrv::Clef
This class models the MEI <clef> element.
Definition: clef.h:27
vrv::Beam
Definition: beam.h:279
vrv::BeamDrawingInterface
This class is an interface for MEI beam elements (beam, beamSpan).
Definition: drawinginterface.h:97
vrv::Rest
This class models the MEI <rest> element.
Definition: rest.h:37
vrv::LayerElement
This class is a base class for the Layer (<layer>) content.
Definition: layerelement.h:46
vrv::AdjustBeamsFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: adjustbeamsfunctor.h:35
vrv::DocFunctor
This abstract class is the base class for all mutable functors that need access to the document.
Definition: functor.h:151