Verovio
Source code documentation
transposefunctor.h
1 // Name: transposefunctor.h
3 // Author: David Bauer
4 // Created: 2023
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_TRANSPOSEFUNCTOR_H__
9 #define __VRV_TRANSPOSEFUNCTOR_H__
10 
11 #include "functor.h"
12 
13 namespace vrv {
14 
15 //----------------------------------------------------------------------------
16 // TransposeFunctor
17 //----------------------------------------------------------------------------
18 
22 class TransposeFunctor : public DocFunctor {
23 public:
27  TransposeFunctor(Doc *doc, Transposer *transposer);
29  virtual ~TransposeFunctor() = default;
31 
32  /*
33  * Abstract base implementation
34  */
35  bool ImplementsEndInterface() const override { return false; }
36 
37  /*
38  * Setter for the transposition
39  */
40  void SetTransposition(const std::string &transposition) { m_transposition = transposition; }
41 
42  /*
43  * Functor interface
44  */
46  FunctorCode VisitHarm(Harm *harm) override;
47  FunctorCode VisitKeySig(KeySig *keySig) override;
48  FunctorCode VisitMdiv(Mdiv *mdiv) override;
49  FunctorCode VisitNote(Note *note) override;
50  FunctorCode VisitRest(Rest *rest) override;
51  FunctorCode VisitScore(Score *score) override;
52  FunctorCode VisitStaffDef(StaffDef *staffDef) override;
54 
55 protected:
56  /*
57  * Retrieve corresponding elements
58  */
60  const KeySig *GetKeySigForStaffDef(const StaffDef *staffDef) const;
61  int GetStaffNForKeySig(const KeySig *keySig) const;
63 
64 private:
65  //
66 public:
67  //
68 protected:
69  // The transposer
70  Transposer *m_transposer;
71  // The current KeySig for staffN (ScoreDef key signatures are mapped to -1)
72  std::map<int, const KeySig *> m_keySigForStaffN;
73 
74 private:
75  // The transposition to be applied
76  std::string m_transposition;
77 };
78 
79 //----------------------------------------------------------------------------
80 // TransposeSelectedMdivFunctor
81 //----------------------------------------------------------------------------
82 
87 public:
91  TransposeSelectedMdivFunctor(Doc *doc, Transposer *transposer);
93  virtual ~TransposeSelectedMdivFunctor() = default;
95 
96  /*
97  * Abstract base implementation
98  */
99  bool ImplementsEndInterface() const override { return false; }
100 
101  /*
102  * Setter for the selected Mdiv
103  */
104  void SetSelectedMdivID(const std::string &selectedID) { m_selectedMdivID = selectedID; }
105 
106  /*
107  * Functor interface
108  */
110  FunctorCode VisitMdiv(Mdiv *mdiv) override;
111  FunctorCode VisitPageMilestone(PageMilestoneEnd *pageMilestoneEnd) override;
112  FunctorCode VisitScore(Score *score) override;
113  FunctorCode VisitSystem(System *system) override;
115 
116 protected:
117  //
118 private:
119  //
120 public:
121  //
122 private:
123  // The mdiv selected for transposition
124  std::string m_selectedMdivID;
125  // The list of current (nested) mdivs
126  std::list<std::string> m_currentMdivIDs;
127 };
128 
129 //----------------------------------------------------------------------------
130 // TransposeToSoundingPitchFunctor
131 //----------------------------------------------------------------------------
132 
137 public:
143  virtual ~TransposeToSoundingPitchFunctor() = default;
145 
146  /*
147  * Abstract base implementation
148  */
149  bool ImplementsEndInterface() const override { return true; }
150 
151  /*
152  * Functor interface
153  */
155  FunctorCode VisitMdiv(Mdiv *mdiv) override;
156  FunctorCode VisitScore(Score *score) override;
157  FunctorCode VisitScoreDef(ScoreDef *scoreDef) override;
158  FunctorCode VisitScoreDefEnd(ScoreDef *scoreDef) override;
159  FunctorCode VisitStaff(Staff *staff) override;
160  FunctorCode VisitStaffDef(StaffDef *staffDef) override;
162 
163 protected:
164  //
165 private:
166  // Update the current transposition
167  void UpdateTranspositionFromStaffN(const AttNInteger *staffN);
168 
169 public:
170  //
171 private:
172  // The transposition interval for staffN
173  std::map<int, int> m_transposeIntervalForStaffN;
174 };
175 
176 } // namespace vrv
177 
178 #endif // __VRV_TRANSPOSEFUNCTOR_H__
vrv::Transposer
Definition: transposition.h:85
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::Doc
This class is a hold the data and corresponds to the model of a MVC design pattern.
Definition: doc.h:41
vrv::TransposeSelectedMdivFunctor
This class transposes the selected mdiv.
Definition: transposefunctor.h:86
vrv::TransposeFunctor
This class transposes the content.
Definition: transposefunctor.h:22
vrv::TransposeToSoundingPitchFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: transposefunctor.h:149
vrv::Mdiv
This class represent a <mdiv> in page-based MEI.
Definition: mdiv.h:24
vrv::TransposeFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: transposefunctor.h:35
vrv::TransposeToSoundingPitchFunctor
This class transposes the content to sounding pitch (by evaluating @trans.semi).
Definition: transposefunctor.h:136
vrv::TransposeSelectedMdivFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: transposefunctor.h:99
vrv::ScoreDef
This class represents a MEI scoreDef.
Definition: scoredef.h:129
vrv::Score
This class represent a <score> in MEI.
Definition: score.h:30
vrv::DocFunctor
This abstract class is the base class for all mutable functors that need access to the document.
Definition: functor.h:151