Verovio
Source code documentation
iocmme.h
1 // Name: iocmme.h
3 // Author: Laurent Pugin
4 // Created: 2024
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_IOCMME_H__
9 #define __VRV_IOCMME_H__
10 
11 #include <string>
12 #include <utility>
13 #include <vector>
14 
15 //----------------------------------------------------------------------------
16 
17 #include "iobase.h"
18 #include "pugixml.hpp"
19 #include "vrvdef.h"
20 
21 namespace vrv {
22 
23 class Chord;
24 class Clef;
25 class KeySig;
26 class Layer;
27 class Measure;
28 class Note;
29 class Score;
30 
31 namespace cmme {
32 
33  struct mensInfo {
34  int prolatio = 2;
35  int tempus = 2;
36  int modusminor = 2;
37  int modusmaior = 2;
38  int proportNum = 1;
39  int proportDen = 1;
40  };
41 
42 } // namespace cmme
43 
44 //----------------------------------------------------------------------------
45 // CmmeInput
46 //----------------------------------------------------------------------------
47 
48 class CmmeInput : public Input {
49 public:
50  // constructors and destructors
51  CmmeInput(Doc *doc);
52  virtual ~CmmeInput();
53 
54  bool Import(const std::string &cmme) override;
55 
56 private:
57  void CreateMetadata(pugi::xml_node metadataNode);
58  void CreateSection(pugi::xml_node musicSectionNode);
59  void CreateStaff(pugi::xml_node voiceNode);
60  void CreateApp(pugi::xml_node appNode);
61  void CreateLemOrRdg(pugi::xml_node lemOrRdgNode, bool isFirst);
62 
63  void ReadEvents(pugi::xml_node eventsNode);
64  void ReadEditorialCommentary(pugi::xml_node evenNode, Object *object);
65 
66  void CreateAccid(pugi::xml_node accidNode);
67  void CreateColorChange(pugi::xml_node colorChangeNode);
68  void CreateBarline(pugi::xml_node barlineNode);
69  void CreateBreak(pugi::xml_node breakNode);
70  void CreateChord(pugi::xml_node chordNode);
71  void CreateClef(pugi::xml_node clefNode);
72  void CreateCustos(pugi::xml_node custosNode);
73  void CreateDot(pugi::xml_node dotNode);
74  void CreateEllipsis();
75  void CreateKeySig(pugi::xml_node keyNode);
76  void CreateLacuna(pugi::xml_node lacunaNode);
77  void CreateMensuration(pugi::xml_node mensurationNode);
78  void CreateOriginalText(pugi::xml_node originalTextNode);
79  void CreateProport(pugi::xml_node proportNode);
80  void CreateNote(pugi::xml_node noteNode);
81  void CreateRest(pugi::xml_node restNode);
82 
83  void CreateVerse(pugi::xml_node verseNode);
84 
85  data_DURATION ReadDuration(pugi::xml_node durationNode, int &num, int &numbase) const;
86  bool IsClef(pugi::xml_node clefNode) const;
87 
92  std::string AsString(const pugi::xml_node node) const;
94  std::string ChildAsString(const pugi::xml_node node, const std::string &child) const;
95  int AsInt(const pugi::xml_node node) const;
96  int ChildAsInt(const pugi::xml_node node, const std::string &child) const;
98 
102  void PostProcessProport();
103 
104 public:
105  //
106 private:
108  Score *m_score;
110  Measure *m_currentSection;
112  Object *m_currentContainer;
114  KeySig *m_currentSignature;
116  Note *m_currentNote;
118  bool m_isInSyllable;
120  std::vector<cmme::mensInfo> m_mensInfos;
122  cmme::mensInfo *m_mensInfo;
124  std::string m_currentColor;
125 
127  int m_numVoices;
129  std::vector<std::string> m_voices;
131  bool m_activeTempoChange;
132 };
133 
134 } // namespace vrv
135 
136 #endif
vrv::Measure
This class represents a measure in a page-based score (Doc).
Definition: measure.h:37
vrv::Doc
This class is a hold the data and corresponds to the model of a MVC design pattern.
Definition: doc.h:41
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::cmme::mensInfo
Definition: iocmme.h:33
vrv::Input
This class is a base class for input classes.
Definition: iobase.h:63
vrv::Note
This class models the MEI <note> element.
Definition: note.h:47
vrv::CmmeInput
Definition: iocmme.h:48
vrv::Score
This class represent a <score> in MEI.
Definition: score.h:30
vrv::KeySig
This class models the MEI <keySig> element.
Definition: keysig.h:44