Verovio
Source code documentation
scoringupfunctor.h
1 // Name: scoringupfunctor.h
3 // Author: Martha E. M. Thomae Elias
4 // Created: 2024
5 // Copyright (c) Authors and others. All rights reserved.
8 #ifndef __VRV_SCORINGUPFUNCTOR_H__
9 #define __VRV_SCORINGUPFUNCTOR_H__
10 
11 #include "functor.h"
12 
13 namespace vrv {
14 
15 //----------------------------------------------------------------------------
16 // ScoringUpFunctor
17 //----------------------------------------------------------------------------
18 
22 class ScoringUpFunctor : public Functor {
23 public:
29  virtual ~ScoringUpFunctor() = default;
31 
32  /*
33  * Abstract base implementation
34  */
35  bool ImplementsEndInterface() const override { return true; }
36 
37  /*
38  * Methods
39  */
43  void ProcessPerfectMensurPassage(
45  const ArrayOfElementDurPairs &m_dursInVoiceWithSameMensur, data_DURATION noteLevel);
46  std::vector<ArrayOfElementDurPairs> SubdivideIntoBoundedSequences(
47  const ArrayOfElementDurPairs &dursInVoiceSameMensur, data_DURATION boundUnit);
48  void ProcessBoundedSequences(const std::vector<ArrayOfElementDurPairs> &listOfSequences, data_DURATION boundUnit);
49  void ProcessBoundedSequences(const ArrayOfElementDurPairs &sequence, data_DURATION boundUnit);
50  ArrayOfElementDurPairs GetBoundedNotes(const ArrayOfElementDurPairs &sequence, data_DURATION boundUnit);
52 
57  bool EvalDotOfDiv(const ArrayOfElementDurPairs &middleSeq, const ArrayOfElementDurPairs &sequence, int dotInd,
59  data_DURATION unit);
60  void FindDurQuals(const ArrayOfElementDurPairs &middleSeq, double valueInUnit, data_DURATION boundUnit);
62 
66  double GetDurNumberValue(
68  const std::pair<LayerElement *, data_DURATION> &elementDurPair, bool followedByDot, LayerElement *nextElement);
69  double GetValueInMinims(const ArrayOfElementDurPairs &middleSeq);
70  double GetValueInUnit(double valueInMinims, data_DURATION unit);
72 
76  Note *ImperfectionAPP(const ArrayOfElementDurPairs &sequence, data_DURATION boundUnit);
78  Note *ImperfectionAPA(const ArrayOfElementDurPairs &sequence, data_DURATION boundUnit);
79  Note *Alteration(const ArrayOfElementDurPairs &sequence, data_DURATION boundUnit);
80  bool LeavePerfect(const ArrayOfElementDurPairs &sequence, data_DURATION boundUnit);
81  void ApplyAugmentationsAndPerfections();
83 
84  /*
85  * Functor interface
86  */
88  FunctorCode VisitLayerEnd(Layer *layer) override;
89  FunctorCode VisitLayerElement(LayerElement *layerElement) override;
92 
93 protected:
94  //
95 private:
96  // Simplified structure for a Mensur
97  struct MensInfo {
98  int prolatio = 2;
99  int tempus = 2;
100  int modusminor = 2;
101  int modusmaior = 2;
102  };
103 
104 public:
105  //
106 
107 private:
108  // The current Mensur
109  Mensur *m_currentMensur;
110  // The current mensuration info
111  MensInfo m_mensInfo;
112  // The data of each voice in the form of an array of pairs made up of mensuratin info
113  // and the notes/rests/dots in that voice that follows that mensuration
114  // (m_dursInVoiceWithSameMensur)
115  std::vector<std::pair<MensInfo, ArrayOfElementDurPairs>> m_voiceData;
116  // Vector of pairs of elements (that are notes, rests, or dots) and their durations
117  ArrayOfElementDurPairs m_dursInVoiceWithSameMensur;
118  // Vector of vectors of pairs of elements (that are notes, rests, or dots) and their durations
119  std::vector<ArrayOfElementDurPairs> m_listOfSequences;
120  // List of pairs made of the form {note, following_dot} for notes followed by dots of augmentation
121  std::list<std::pair<Note *, Dot *>> m_listOfAugNotesDotsPairs;
122  // List of pairs made of the form {note, following_dot} for notes followed by dots of perfection
123  std::list<std::pair<Note *, Dot *>> m_listOfPerfNotesDotsPairs;
124 };
125 
126 } // namespace vrv
127 
128 #endif /* scoringupfunctor_h */
vrv::Functor
This abstract class is the base class for all mutable functors.
Definition: functor.h:101
vrv::ScoringUpFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: scoringupfunctor.h:35
vrv::Note
This class models the MEI <note> element.
Definition: note.h:47
vrv::ScoringUpFunctor
This class...
Definition: scoringupfunctor.h:22
vrv::LayerElement
This class is a base class for the Layer (<layer>) content.
Definition: layerelement.h:46
vrv::Layer
This class represents a layer in a laid-out score (Doc).
Definition: layer.h:33