Verovio
Source code documentation
neume.h
1 // Name: neume.h
3 // Author: Andrew Tran
4 // Created: 2017
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_NEUME_H__
9 #define __VRV_NEUME_H__
10 
11 #include <cassert>
12 
13 //----------------------------------------------------------------------------
14 
15 #include "accid.h"
16 #include "atts_mensural.h"
17 #include "atts_shared.h"
18 #include "beam.h"
19 #include "chord.h"
20 #include "durationinterface.h"
21 #include "layerelement.h"
22 #include "pitchinterface.h"
23 
24 namespace vrv {
25 
26 class Accid;
27 class Chord;
28 class Slur;
29 class Tie;
30 class Verse;
31 class Neume;
32 
33 //----------------------------------------------------------------------------
34 // Note
35 //----------------------------------------------------------------------------
36 
37 enum NeumeGroup {
38  NEUME_ERROR = 0,
39  PUNCTUM,
40  CLIVIS,
41  PES,
42  PRESSUS,
43  CLIMACUS,
44  PORRECTUS,
45  SCANDICUS,
46  TORCULUS,
47  SCANDICUS_FLEXUS,
48  PORRECTUS_FLEXUS,
49  TORCULUS_RESUPINUS,
50  CLIMACUS_RESUPINUS,
51  PES_SUBPUNCTIS,
52  PORRECTUS_SUBPUNCTIS,
53  SCANDICUS_SUBPUNCTIS
54 };
55 
60 class Neume : public LayerElement, public ObjectListInterface, public AttColor {
61 public:
66  Neume();
68  virtual ~Neume();
69  void Reset() override;
70  Object *Clone() const override { return new Neume(*this); }
71  std::string GetClassName() const override { return "neume"; }
73 
78  bool IsSupportedChild(ClassId classId) override;
79 
80  int GetLigatureCount(int position);
81  bool IsLastInNeume(const LayerElement *element) const;
82 
83  bool GenerateChildMelodic();
84 
85  NeumeGroup GetNeumeGroup() const;
86 
87  std::vector<int> GetPitchDifferences() const;
88 
89  PitchInterface *GetHighestPitch();
90  PitchInterface *GetLowestPitch();
91 
95  FunctorCode Accept(Functor &functor) override;
97  FunctorCode Accept(ConstFunctor &functor) const override;
98  FunctorCode AcceptEnd(Functor &functor) override;
99  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
101 
102 private:
103  int GetPosition(const LayerElement *element) const;
104 
105 public:
106  //----------------//
107  // Static members //
108  //----------------//
109 
113  static const std::map<std::string, NeumeGroup> s_neumes;
114 
115  static std::string NeumeGroupToString(NeumeGroup group);
116 
117 private:
118 };
119 } // namespace vrv
120 
121 #endif
vrv::Neume::IsSupportedChild
bool IsSupportedChild(ClassId classId) override
Add an element (a note or a rest) to a syllable.
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::Neume
This class models the MEI <neume> element.
Definition: neume.h:60
vrv::Neume::Reset
void Reset() override
Virtual reset method.
vrv::ObjectListInterface
This class is an pseudo interface for elements maintaining a flat list of children LayerElement for p...
Definition: object.h:873
vrv::Neume::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::Neume::s_neumes
static const std::map< std::string, NeumeGroup > s_neumes
String keys come from the contours of neume groupings as defined in MEI4.
Definition: neume.h:113
vrv::LayerElement
This class is a base class for the Layer (<layer>) content.
Definition: layerelement.h:46
vrv::Neume::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: neume.h:70