Verovio
Source code documentation
iohumdrum.h
1 // Name: iohumdrum.h
3 // Author: Craig Stuart Sapp
4 // Created: 06/06/2015
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_IOHUMDRUM_H__
9 #define __VRV_IOHUMDRUM_H__
10 
11 #include <map>
12 #include <string>
13 #include <tuple>
14 #include <vector>
15 
16 //----------------------------------------------------------------------------
17 
18 #include "accid.h"
19 #include "attdef.h"
20 #include "beamspan.h"
21 #include "beatrpt.h"
22 #include "clef.h"
23 #include "dir.h"
24 #include "ending.h"
25 #include "fing.h"
26 #include "ftrem.h"
27 #include "harm.h"
28 #include "iobase.h"
29 #include "keysig.h"
30 #include "label.h"
31 #include "metersig.h"
32 #include "options.h"
33 #include "pedal.h"
34 #include "reh.h"
35 #include "rend.h"
36 #include "runningelement.h"
37 #include "section.h"
38 #include "slur.h"
39 #include "symbol.h"
40 #include "tempo.h"
41 #include "tie.h"
42 #include "verse.h"
43 #include "vrvdef.h"
44 
45 //----------------------------------------------------------------------------
46 
47 #ifndef NO_HUMDRUM_SUPPORT
48 #include "humlib.h"
49 #include "pugixml.hpp"
50 // #include "tool-musicxml2hum.h"
51 #endif /* NO_HUMDRUM_SUPPORT */
52 
53 //----------------------------------------------------------------------------
54 
55 namespace vrv {
56 
57 #ifndef NO_HUMDRUM_SUPPORT
58 
59 class Beam;
60 class Chord;
61 class Layer;
62 class Measure;
63 class ScoreDef;
64 class Note;
65 class Hairpin;
66 class MRest;
67 class Rest;
68 class Score;
69 class Section;
70 class Space;
71 class Staff;
72 class StaffDef;
73 class StaffGrp;
74 class Tie;
75 
76 //----------------------------------------------------------------------------
77 // namespace for local IoHumdrum classes
78 //----------------------------------------------------------------------------
79 
80 namespace humaux {
81 
82  class HumdrumTie {
83  public:
84  HumdrumTie();
85  HumdrumTie(const HumdrumTie &anothertie);
86  ~HumdrumTie();
87  HumdrumTie &operator=(const HumdrumTie &anothertie);
88  vrv::Tie *insertTieIntoDom();
89  void setStart(const std::string &id, Measure *starting, int layer, const std::string &token, int pitch,
90  hum::HumNum starttime, hum::HumNum endtime, int subindex, hum::HTp starttok, int metertop,
91  hum::HumNum meterbot);
92  void setEnd(const std::string &id, Measure *ending, int layer, const std::string &token, int pitch,
93  hum::HumNum starttime, hum::HumNum endtime, int subindex, hum::HTp starttok, int metertop,
94  hum::HumNum meterbot);
95  vrv::Tie *setEndAndInsert(const std::string &id, Measure *ending, int layer, const std::string &token,
96  int pitch, hum::HumNum starttime, hum::HumNum endtime, int subindex, hum::HTp starttok, int metertop,
97  hum::HumNum meterbot);
98 
99  hum::HumNum getEndTime();
100  hum::HumNum getMeterUnit();
101  hum::HumNum getStartTime();
102  std::string getEndId();
103  void setEndId(const std::string &id);
104  hum::HTp getEndToken();
105  hum::HumNum getDuration();
106  std::string getStartToken();
107  hum::HTp getStartTokenPointer();
108  Measure *getStartMeasure();
109  Measure *getEndMeasure();
110  void setEndMeasure(Measure *measure);
111  int getStartSubindex();
112  int getEndSubindex();
113  int getPitch();
114  int getLayer();
115  bool isInserted();
116  void clear();
117  void setTieAbove();
118  void setTieBelow();
119  int getMeterTop();
120  hum::HumNum getMeterBottom();
121  void setMeterTop(int metertop);
122  void setMeterBottom(hum::HumNum meterbot);
123 
124  private:
125  std::string m_starttoken;
126  std::string m_endtoken;
127  hum::HumNum m_starttime;
128  hum::HumNum m_endtime;
129  int m_pitch;
130  int m_layer;
131  bool m_inserted;
132  bool m_above;
133  bool m_below;
134  std::string m_startid;
135  std::string m_endid;
136  Measure *m_startmeasure;
137  Measure *m_endmeasure;
138  hum::HTp m_starttokenpointer = NULL;
139  int m_subindex; // the subtoken index for the start of the tie
140  int m_meter_top;
141  hum::HumNum m_meter_bottom;
142  };
143 
144  class HumdrumBeamAndTuplet {
145  public:
146  int group; // tuplet group for layer
147  int bracket; // -1=undefined, 0=none, 1=show
148  int num; // @num
149  int numbase; // @numbase
150  int numscale; // for converting triplets into sextuplets for example
151  int tupletstart;
152  int tupletend;
153  int beamstart;
154  int beamend;
155  int gbeamstart;
156  int gbeamend;
157  char priority;
158  bool force;
159  hum::HTp token;
160  hum::HumNum duration;
161  hum::HumNum durationnodots;
162 
163  HumdrumBeamAndTuplet() { clear(); }
164  ~HumdrumBeamAndTuplet() { clear(); }
165  void clear()
166  {
167  group = bracket = 0;
168  numbase = num = 1;
169  numscale = 1;
170  tupletstart = tupletend = 0;
171  beamstart = beamend = 0;
172  gbeamstart = gbeamend = 0;
173  force = false;
174  priority = ' ';
175  duration = 0;
176  durationnodots = 0;
177  token = NULL;
178  }
179  };
180 
181  // StaffStateVariables is a data structure used in the HumdrumInput
182  // class to store state variables for processing staves.
183  class StaffStateVariables {
184  public:
185  StaffStateVariables();
186  ~StaffStateVariables();
187  void clear();
188  ostream &print(ostream &out = std::cout, const std::string &prefix = "SS> ");
189 
190  // verse == keeps track of whether or not staff contains associated
191  // **text spines which will be converted into lyrics.
192  bool verse;
193 
194  // verse_labels == List of verse labels that need to be added to the
195  // current staff.
196  std::vector<hum::HTp> verse_labels;
197 
198  // verse_abbr_labels == List of verse abbreviation labels that
199  // need to be added to the current staff.
200  std::vector<hum::HTp> verse_abbr_labels;
201 
202  // suppress_tuplet_number == keeps track of whether or not beams should
203  // display beam tuplet numbers.
204  bool suppress_tuplet_number;
205 
206  // suppress_tuplet_bracket == keeps track of whether or not tuplet
207  // brackets should be displayed.
208  bool suppress_tuplet_bracket;
209 
210  // Used for tremolo compression
211  bool tremolo;
212 
213  bool suppress_articulations;
214 
215  // Used for sustain pedal
216  bool pedal;
217 
218  // cue_size == keeps track of whether or not the notes in the current
219  // staff/layer should be cue sized. Index 0 is used to control all
220  // layers.
221  std::vector<bool> cue_size;
222 
223  // stem_type == keeps track of what type of stem to automatically
224  // add to a note/chord. The states are:
225  // '\' == down stem
226  // '/' == up stem
227  // 'x' == no stem (better to use *Xstem instead)
228  // 'X' == no automatic assignments (assignment will be done automatically by verovio) (better to use *stem
229  // instead to cancel *Xstem)
230  std::vector<char> stem_type;
231 
232  // stem_visible == keeps track of whether the stem should be made
233  // invisible or not for a staff.
234  std::vector<bool> stem_visible;
235 
236  // ligature_recta == true if in a recta ligature
237  bool ligature_recta = false;
238  // ligature_obliqua == true if in a obliqua ligature
239  bool ligature_obliqua = false;
240 
241  // last_clef == keep track of last clef on staff to avoid duplications.
242  // Probably better to convert to hum::HTp so its location can be utilized.
243  std::string last_clef;
244 
245  // acclev == In **mens data, controls the accidental level conversion
246  // from gestural to editorial.
247  // *acclev:0 == no editorial acccidentals visible (all converted to gestural)
248  // *acclev:1 == accidentals marked with YY are displayed as editorial accidentals (above notes)
249  // *acclev:2 == accidentals marked with Y are displayed as editorial accidentals (above notes)
250  // *acclev:3 == accidentals marked with yy are displayed as editorial accidentals (above notes)
251  // *acclev:4 == accidentals marked with y are displayed as editorial accidentals (above notes)
252  // meaning of the accidental marks:
253  // y = algorithmic interpretation of an implicit accidental, primarily used for notes
254  // with accidentals not shown but assigned by the key signature.
255  // yy = a cautionary type of accidental, such as returning to the accidental within the
256  // key signature (such as a b-flat coming after a b-natural in a 1-flat key signature).
257  // Y = a performance interpretation accidental (musica ficta) that is not indicated or
258  // directly implied in the source, but is needed due to performance practice.
259  // YY = an accidental that should be added due to what the editor thinks is an error.
260  //
261  // Equivalences to numbers:
262  // *Xacclev == *acclev:0 all levels are mapped to @accid.ges
263  // *acclev == *acclev:0 all levels are mapped to @accid.ges
264  // *acclev: == *acclev:0 all levels are mapped to @accid.ges
265  // *acclev:YY == *acclev:1 levels 2-4 are mapped to @accid.ges and level 1 to @accd+@edit
266  // *acclev:Y == *acclev:2 levels 3-4 are mapped to @accid.ges and levels 1-2 to @accd+@edit
267  // *acclev:yy == *acclev:3 level 4 is mapped to @accid.ges and levels 1-3 to @accd+@edit
268  // *acclev:y == *acclev:4 all levels are mapped to @accid+@edit
269  //
270  // The default level is *acclev:1 (YY will show as editorial accidental, y, yy, and Y will be @accid.ges)
271  int acclev = 1;
272 
273  // righthalfstem == true means to place half-note stems always on right side
274  // of noteheads. False is standard modern style.
275  bool righthalfstem;
276 
277  // ottavanote == keep track of ottava marks: stores the starting note of
278  // an ottava line which will be turned off later. ottavameasure == the
279  // starting measure of the ottava mark.
280  Note *ottavanotestart;
281  std::string ottavanotestartid;
282  Note *ottavanoteend;
283  hum::HumNum ottavaendtimestamp;
284  Measure *ottavameasure;
285 
286  // ottavadownnote == keep track of ottava down marks: stores the starting note of
287  // an ottava down line which will be turned off later. ottavadownmeasure == the
288  // starting measure of the ottava down mark.
289  Note *ottavadownnotestart;
290  std::string ottavadownnotestartid;
291  Note *ottavadownnoteend;
292  hum::HumNum ottavadownendtimestamp;
293  Measure *ottavadownmeasure;
294 
295  // ottava2note == keep track of ottava2 marks: stores the starting note of
296  // an ottava2 line which will be turned off later. ottava2measure == the
297  // starting measure of the ottava2 mark.
298  Note *ottava2notestart;
299  std::string ottava2notestartid;
300  Note *ottava2noteend;
301  hum::HumNum ottava2endtimestamp;
302  Measure *ottava2measure;
303 
304  // ottava2downnote == keep track of ottava2 down marks: stores the starting note of
305  // an ottava2 down line which will be turned off later. ottava2downmeasure == the
306  // starting measure of the ottava2 down mark.
307  Note *ottava2downnotestart;
308  std::string ottava2downnotestartid;
309  Note *ottava2downnoteend;
310  hum::HumNum ottava2downendtimestamp;
311  Measure *ottava2downmeasure;
312 
313  // meter_bottom == Used to keep track of bottom value of time signature.
314  // This is needed to calculate tstamps (meter.unit).
315  hum::HumNum meter_bottom = 4;
316 
317  // meter_top == The top number of the time signature (meter.count).
318  int meter_top = 4;
319 
320  // Active **mens rhythmic level divisions:
321  int maximodus = 0; // how many longs in a maxima
322  int modus = 0; // how many breves in a long
323  int tempus = 0; // how many semibreves in a breve
324  int prolatio = 0; // how many minims in a semibreve
325 
326  // tiestarts == Keep track of ties for each staff/layer/pitch
327  // and allow for cross-layer ties (no cross staff ties, but that
328  // could be easy to implement.
329  // dimensions:
330  // 1: staff
331  // 2: all open ties for the staff
332  std::list<humaux::HumdrumTie> tiestarts;
333 
334  // tieends == Keep track of tie ends for each staff/layer/pitch.
335  // This is used to store tie ends in earlier layers before tie starts
336  // have been processed in later layers for a measure.
337  std::list<humaux::HumdrumTie> tieends;
338 
339  // m_dynampos == Dynamic position relativ to the staff:
340  // +1 = above, -1=below, 2=centered (deal center between staves later)
341  int m_dynampos = 0;
342  int m_dynamstaffadj = 0; // used for grand staff movement of dynamics to lower staff
343  bool m_dynamposdefined = false; // used for undefined positions since 0 used for center
344 
345  // m_notehead == Notehead shape for notes on the staff. This could be
346  // expanded later into separate control by subspine and/or by pitch (staff/line).
347  std::string m_notehead;
348 
349  // auto_custos == Whether or not to generate automatic custodes
350  // at line breaks.
351  bool auto_custos = false;
352 
353  // suppress_manual_custos == Do not render manually encoded custodes.
354  // at line breaks.
355  bool suppress_manual_custos = false;
356 
357  // toggle for black/white mensural notation. 0=white, 1=black
358  int mensuration_type = 0;
359 
360  // join layers into chords or shared notes.
361  bool join = false;
362 
363  // glissando start tokens
364  std::vector<hum::HTp> glissStarts;
365  };
366 } // namespace humaux
367 
369 public:
370  bool empty = true;
371 
372  // boolean switches:
373  std::string nostem; // !!!RDF**kern: N = no stem
374  std::string cuesize; // !!!RDF**kern: @ = cue size
375 
376  std::string kernTerminalLong; // !!!RDF**kern: l = terminal long
377  std::string kernTerminalBreve; // !!!RDF**kern: l = terminal breve
378 
379  std::string mensTerminalLong; // !!!RDF**mens: l = terminal long
380  std::string mensTerminalBreve; // !!!RDF**mens: l = terminal breve
381 
382  std::vector<string> editaccKern; // !!!RDF**kern: i = editorial accidental
383  std::vector<string> editaccMens; // !!!RDF**mens: z = editorial accidental
384  std::vector<std::string> edittypeKern; // !!!RDF**kern: i = editoral accidental, brack[ets]/paren[theses]
385  std::vector<std::string> edittypeMens; // !!!RDF**mens: z = editoral accidental, brack[ets]/paren[theses]
386 
387  // for **dynam:
388  std::string cresctext; // !!!RDF**kern: > = "cresc."
389  std::string crescfontstyle; // !!!RDF**kern: < = "cresc." fontstyle="normal|italic|bold|bold-italic"
390  std::string decresctext; // !!!RDF**kern: > = "decresc."
391  std::string decrescfontstyle; // !!!RDF**kern: < = "decresc." fontstyle="normal|italic|bold|bold-italic"
392 
393  std::string below; // !!!RDF**kern: < = below (previous signifier is "below")
394  std::string above; // !!!RDF**kern: > = above (previous signifier is "above")
395 
396  std::string phrase_color; // for global stying of phrase markers
397  std::string phrase_style; // for global stying of phrase markers
398  std::string phrase_slur; // for global stying of phrase markers
399 
400  std::string space_color; // !!!RDF**kern: show spaces color=hotpink
401  std::string ispace_color; // !!!RDF**kern: show invisible rests color=chartreuse
402  std::string irest_color; // !!!RDF**kern: show implicit spaces color=blueviolet
403  std::string rspace_color; // !!!RDF**kern: show recip spaces color=royalblue
404 
405  // Coloring of notes/rests in **kern:
406  // !!!RDF**kern: i = marked note, color="#553325"
407  // !!!RDF**kern: i = matched note, color=red
408  // !!!RDF**kern: i = color="blue"
409  // default is red if no color given:
410  // !!!RDF**kern: i = matched note
411  // !!!RDF**kern: i = marked note
412  std::vector<string> mark;
413  std::vector<std::string> mcolor;
414  std::vector<std::string> markdir;
415 
416  // Coloring of **mens notes (not for coloration).
417  // default color is hotpink, since red is used for
418  // colored notes in black notation.
419  std::vector<string> mens_mark;
420  std::vector<std::string> mens_mcolor;
421  std::vector<std::string> mens_markdir;
422 
423  // Coloring of **text:
424  std::vector<string> textmark;
425  std::vector<std::string> textcolor;
426 
427  // Articulation signfiers
428  std::string hairpinAccent; // For <> accent on a note.
429  std::string verticalStroke; // For horizontal stroke ornament
430  std::string lhpizz; // For left-hand pizzicato
431  std::string tremolo; // For unmeasured tremolo slashes
432 };
433 
434 #endif /* NO_HUMDRUM_SUPPORT */
435 
437  std::string lineText; // the full text of the HumdrumLine containing this item,
438  // e.g. "!!!OTL2@FR:Le deuxième titre Français"
439  std::string key; // the interpreted key, with key, index, isTranslated, language stripped out
440  // e.g. "OTL" (if not parseable, we get everything between "!!!" and ":")
441  std::string value; // the value (everything after the ':')
442  // e.g. "Le deuxième titre Français"
443  bool isParseable = false; // true if we could parse out key, index, isTranslated, language
444  // e.g. true
445  bool isHumdrumKey = false; // true if isParseable and key is in the known list of Humdrum keys
446  // e.g. true
447  bool isTranslated = false; // true if single '@' (not '@@') is present
448  // e.g. true
449  std::string language; // the language, if present, lowercased
450  // e.g. "fr"
451  int index = -1; // the index (0 if not present)
452  // e.g. 2
453 };
454 
456  bool valid = false; // if false, ignore everything here, the date was not parseable.
457  std::string dateError; // error of the entire date ("", "approximate", "uncertain")
458  int year;
459  std::string yearError; // error of the year ("", "approximate", "uncertain")
460  int month;
461  std::string monthError; // error of the month ("", "approximate", "uncertain")
462  int day;
463  std::string dayError; // error of the day ("", "approximate", "uncertain")
464  int hour;
465  std::string hourError; // error of the hour ("", "approximate", "uncertain")
466  int minute;
467  std::string minuteError; // error of the minute ("", "approximate", "uncertain")
468  int second;
469  std::string secondError; // error of the second ("", "approximate", "uncertain")
470 };
471 
473  // constructType can be any of "" (invalid), "DateSingle" (one date), "DateRelative"
474  // (one date, qualifier="before" or "after"), "DateBetween" (two dates), "DateSelection"
475  // (N dates, qualifier="and" or "or"), or "DateConstructRange" (two DateConstructs).
476  std::string constructType; // if type is "", ignore everything here, the date construct was not parseable.
477  std::string dateConstructError; // error of the entire DateConstruct
478  std::string qualifier;
479  std::vector<DateWithErrors> dates; // empty for "DateConstructRange"
480  std::vector<DateConstruct> dateConstructs; // only used for "DateConstructRange" (has two elements in that case)
481 };
482 
483 //----------------------------------------------------------------------------
484 // HumdrumInput
485 //----------------------------------------------------------------------------
486 
487 class HumdrumInput : public vrv::Input {
488 public:
489  // constructors and destructors
490  HumdrumInput(vrv::Doc *doc);
491  virtual ~HumdrumInput();
492 
493  bool Import(const std::string &humdrum) override;
494 
495  void parseEmbeddedOptions(vrv::Doc *doc);
496  void finalizeDocument(vrv::Doc *doc);
497 
498 #ifndef NO_HUMDRUM_SUPPORT
499 
500  std::string GetHumdrumString();
501  std::string GetMeiString();
502 
503 protected:
504  void clear();
505  bool convertHumdrum();
506  void setupMeiDocument();
507  int getMeasureEndLine(int startline);
508  bool convertSystemMeasure(int &line);
509  bool convertMeasureStaves(int startline, int endline);
510  bool convertMeasureStaff(int track, int startline, int endline, int n, int layercount);
511  void setupSystemMeasure(int startline, int endline);
512  bool convertStaffLayer(int track, int startline, int endline, int layerindex);
513  int getMeasureNumber(int startline, int endline);
514  bool fillContentsOfLayer(int track, int startline, int endline, int layerindex);
515  void calculateLayout();
516  void setSystemMeasureStyle(int startline, int endline);
517  std::vector<int> getStaffLayerCounts();
518  void prepareStaffGroups(int top, int bot);
519  void setClef(StaffDef *staff, const std::string &clef, hum::HTp cleftok = NULL, hum::HTp striatok = NULL);
520  void setDynamicTransposition(int staffindex, StaffDef *staff, const std::string &itranspose);
521  void setTransposition(StaffDef *staffDef, const std::string &transpose);
522  void setTimeSig(StaffDef *part, const std::string &timesig, const std::string &metersig = "",
523  hum::HTp partstart = NULL, hum::HTp timetok = NULL, hum::HTp metertok = NULL);
524  void fillStaffInfo(hum::HTp staffstart, int staffnumber, int staffcount);
525  void storeStaffLayerTokensForMeasure(int startline, int endline);
526  void calculateReverseKernIndex();
527  void prepareTimeSigDur(int &top, int &bot);
528  void printMeasureTokens();
529  int characterCount(const std::string &text, char symbol);
530  int characterCount(hum::HTp token, char symbol);
531  int characterCountInSubtoken(hum::HTp token, char symbol);
532  int characterCountInSubtoken(const std::string &text, char symbol);
533  bool emptyMeasures();
534  bool hasFullMeasureRest(std::vector<hum::HTp> &layerdata, hum::HumNum timesigdur, hum::HumNum measuredur);
535  void convertNote(vrv::Note *note, hum::HTp token, int staffadj, int staffindex, int subtoken = -1);
536  void addCautionaryAccidental(Accid *accid, hum::HTp token, int acount);
537  void convertRest(vrv::Rest *rest, hum::HTp token, int subtoken, int staffindex);
538  void convertMRest(MRest *rest, hum::HTp token, int subtoken, int staffindex);
539  void processTieStart(Note *note, hum::HTp token, const std::string &tstring, int subindex);
540  void processTieEnd(Note *note, hum::HTp token, const std::string &tstring, int subindex);
541  void addFermata(hum::HTp token, vrv::Object *parent = NULL);
542  void addBreath(hum::HTp token, vrv::Object *parent = NULL);
543  void addTrill(vrv::Object *linked, hum::HTp token);
544  void addTurn(hum::HTp token, const std::string &tok, int noteIndex);
545  void addMordent(vrv::Object *linked, hum::HTp token);
546  void addOrnaments(vrv::Object *object, hum::HTp token);
547  void addArpeggio(vrv::Object *object, hum::HTp token);
548  void getTimingInformation(std::vector<hum::HumNum> &prespace, std::vector<hum::HTp> &layerdata,
549  hum::HumNum layerstarttime, hum::HumNum layerendtime);
550  void convertChord(Chord *chord, hum::HTp token, int staffindex);
551  void prepareVerses();
552  void checkForOmd(int startline, int endline);
553  void handleOttavaMark(hum::HTp token, Note *note);
554  void handlePedalMark(hum::HTp token);
555  void handleLigature(hum::HTp token);
556  void handleColoration(hum::HTp token);
557  void prepareBeamAndTupletGroups(
558  std::vector<humaux::HumdrumBeamAndTuplet> &tg, const std::vector<hum::HTp> &layerdata);
559  void assignScalingToTupletGroup(std::vector<humaux::HumdrumBeamAndTuplet *> &tggroup);
560  void printGroupInfo(const std::vector<humaux::HumdrumBeamAndTuplet> &tg);
561  void insertTuplet(std::vector<std::string> &elements, std::vector<void *> &pointers,
562  const std::vector<humaux::HumdrumBeamAndTuplet> &tgs, std::vector<hum::HTp> layerdata, int layerindex,
563  bool suppressTupletNumber, bool suppressBracketTuplet);
564  vrv::Beam *insertBeam(
565  std::vector<std::string> &elements, std::vector<void *> &pointers, const humaux::HumdrumBeamAndTuplet &tg);
566  vrv::Beam *insertGBeam(
567  std::vector<std::string> &elements, std::vector<void *> &pointers, const humaux::HumdrumBeamAndTuplet &tg);
568  void analyzeLayerBeams(
569  std::vector<int> &beamnum, std::vector<int> &gbeamnum, const std::vector<hum::HTp> &layerdata);
570  void storeBreaksec(std::vector<int> &beamstate, std::vector<int> &gbeamstate,
571  const std::vector<hum::HTp> &layerdata, bool grace = false);
572  void setBeamDirection(int direction, const std::vector<humaux::HumdrumBeamAndTuplet> &tgs,
573  std::vector<hum::HTp> &layerdata, int layerindex, bool grace);
574  void handleGroupStarts(const std::vector<humaux::HumdrumBeamAndTuplet> &tgs, std::vector<std::string> &elements,
575  std::vector<void *> &pointers, std::vector<hum::HTp> &layerdata, int layerindex);
576  bool checkForTremolo(
577  std::vector<hum::HTp> &layerdata, const std::vector<humaux::HumdrumBeamAndTuplet> &tgs, int startindex);
578  void handleGroupEnds(
579  const humaux::HumdrumBeamAndTuplet &tg, std::vector<std::string> &elements, std::vector<void *> &pointers);
580  void handleStaffStateVariables(hum::HTp token);
581  void handleStaffDynamStateVariables(hum::HTp token);
582  void removeTuplet(std::vector<std::string> &elements, std::vector<void *> &pointers);
583  void removeGBeam(std::vector<std::string> &elements, std::vector<void *> &pointers);
584  void removeBeam(std::vector<std::string> &elements, std::vector<void *> &pointers);
585  vrv::Clef *insertClefElement(
586  std::vector<std::string> &elements, std::vector<void *> &pointers, hum::HTp clef, hum::HTp lastnote);
587  void insertMeterSigElement(std::vector<std::string> &elements, std::vector<void *> &pointers,
588  std::vector<hum::HTp> &layeritems, int index);
589  void processSlurs(hum::HTp token);
590  std::string generateSlurId(hum::HTp token, int count, int number);
591  void processPhrases(hum::HTp token);
592  int getSlurEndNumber(hum::HTp startslur, int slurstartnumber);
593  void addHarmFloatsForMeasure(int startine, int endline);
594  void addFingeringsForMeasure(int startline, int endline);
595  void insertFingerNumberInMeasure(
596  const std::string &text, int staffindex, hum::HTp token, int maxstaff, bool aboveQ);
597  void addStringNumbersForMeasure(int startline, int endline);
598  void addFiguredBassForMeasure(int startline, int endline);
599  void processDynamics(hum::HTp token, int staffindex);
600  void processDirections(hum::HTp token, int staffindex);
601  void processLinkedDirection(int index, hum::HTp token, int staffindex);
602  void processGlobalDirections(hum::HTp token, int staffindex);
603  void processChordSignifiers(Chord *chord, hum::HTp token, int staffindex);
604  hum::HumNum getMeasureTstamp(hum::HTp token, int staffindex, hum::HumNum frac = 0);
605  hum::HumNum getMeasureTstamp(hum::HTp token, hum::HumNum extraduration, int staffindex, hum::HumNum frac = 0);
606  hum::HumNum getMeasureTstampPlusDur(hum::HTp token, int staffindex, hum::HumNum fract = 0);
607  hum::HumNum getMeasureEndTstamp(int staffindex);
608  hum::HumNum getMeasureFactor(int staffindex);
609  hum::HTp getPreviousDataToken(hum::HTp token);
610  hum::HTp getHairpinEnd(hum::HTp token, const std::string &endchar);
611  hum::HTp getDecrescendoEnd(hum::HTp token);
612  hum::HTp getCrescendoEnd(hum::HTp token);
613  int getMeasureDifference(hum::HTp starttok, hum::HTp endtok);
614  int getMeasureDifference(hum::HTp starttok, hum::HumNum meterunit, hum::HumNum tieduration, hum::HumNum &tstamp);
615  void storeOriginalClefMensurationKeyApp();
616  void addSpace(std::vector<std::string> &elements, std::vector<void *> &pointers, hum::HumNum duration,
617  const std::string &typestring = "");
618  void setLocationId(vrv::Object *object, hum::HTp token, int subtoken = -1);
619  void setLocationId(vrv::Object *object, int lineindex, int fieldindex, int subtokenindex);
620  std::string getLocationId(vrv::Object *object, hum::HTp token, int subtoken = -1);
621  std::string getLocationId(Object *object, int lineindex, int fieldindex, int subtokenindex);
622  std::string getLocationId(const std::string &prefix, hum::HTp token, int subtoken = -1);
623  std::string getLocationId(const std::string &prefix, int lineindex, int fieldindex, int subtokenindex);
624  void setLocationIdNSuffix(vrv::Object *object, hum::HTp token, int number);
625  void setSlurLocationId(
626  vrv::Object *object, hum::HTp slurstart, hum::HTp slurend, int eindex, const std::string &prefix = "");
627  void setTieLocationId(vrv::Object *object, hum::HTp tiestart, int sindex, hum::HTp tieend, int eindex);
628  void setBeamLocationId(vrv::Object *object, const std::vector<humaux::HumdrumBeamAndTuplet> &tgs,
629  std::vector<hum::HTp> &layerdata, int startindex);
630  void setTupletLocationId(vrv::Object *object, const std::vector<humaux::HumdrumBeamAndTuplet> &tgs,
631  std::vector<hum::HTp> &layerdata, int startindex);
632  void addMidiTempo(vrv::ScoreDef *scoreDef, hum::HTp kernpart, int top, int bot);
633  void addInstrumentDefinition(vrv::StaffDef *staffdef, hum::HTp partstart);
634  void addOrnamentMarkers(hum::HTp token);
635  void setNextLeftBarStyle(data_BARRENDITION style);
636  void parseSignifiers(hum::HumdrumFile &infile);
637  std::string getAutoClef(hum::HTp partstart, int partnumber);
638  void colorNote(vrv::Note *note, hum::HTp token, const std::string &subtoken, int line, int field);
639  void colorRest(vrv::Rest *rest, const std::string &token, int line, int field);
640  void colorVerse(Verse *verse, std::string &token);
641  std::string getSpineColor(int line, int field);
642  void checkForColorSpine(hum::HumdrumFile &infile);
643  std::vector<int> analyzeMultiRest(hum::HumdrumFile &infile);
644  bool analyzeBreaks(hum::HumdrumFile &infile);
645  void addSystemClefKeyTimeChange(int startline, int endline);
646  void prepareSections();
647  int getDirection(const std::string &token, const std::string &target);
648  void resolveTupletBeamTie(std::vector<humaux::HumdrumBeamAndTuplet> &tg);
649  void resolveTupletBeamStartTie(std::vector<humaux::HumdrumBeamAndTuplet> &tg, int index);
650  void resolveTupletBeamEndTie(std::vector<humaux::HumdrumBeamAndTuplet> &tg, int index);
651  void mergeTupletsCuttingBeam(std::vector<humaux::HumdrumBeamAndTuplet> &tg);
652  void embedQstampInClass(vrv::Note *note, hum::HTp token, const std::string &tstring);
653  void embedQstampInClass(vrv::Rest *note, hum::HTp token, const std::string &tstring);
654  void embedQstampInClass(vrv::MRest *mrest, hum::HTp token, const std::string &tstring);
655  void embedQstampInClass(vrv::Space *irest, hum::HTp token, const std::string &tstring);
656  void embedPitchInformationInClass(vrv::Note *note, const std::string &token);
657  void embedTieInformation(Note *note, const std::string &token);
658  void splitSyllableBySpaces(std::vector<std::string> &vtext, char spacer = ' ');
659  void addDefaultTempo(ScoreDef *scoreDef);
660  int getChordNoteCount(hum::HTp token);
661  bool isLeftmostSystemArpeggio(hum::HTp token);
662  bool isLeftmostStaffArpeggio(hum::HTp token);
663  std::vector<hum::HTp> getSystemArpeggioTokens(hum::HTp token);
664  std::vector<hum::HTp> getStaffArpeggioTokens(hum::HTp token);
665  void addDirection(const std::string &text, const std::string &placement, bool bold, bool italic, hum::HTp token,
666  int staffindex, int justification = 0, const std::string &color = "", int vgroup = -1,
667  const std::string &label = "");
668  bool addTempoDirection(const std::string &text, const std::string &placement, bool bold, bool italic,
669  hum::HTp token, int staffindex, int justification, const std::string &color);
670  bool setTempoContent(Tempo *tempo, const std::string &text);
671  bool setLabelContent(Label *label, const std::string &text);
672  std::vector<std::string> convertMusicSymbolNameToSmuflName(const std::string &text);
673  void processTerminalLong(hum::HTp token);
674  void processTerminalBreve(hum::HTp token);
675  void removeCharacter(hum::HTp token, char removechar);
676  std::string getSystemDecoration(const std::string &tag);
677  bool processStaffDecoration(const std::string &decoration);
678  int getStaffNumberLabel(hum::HTp spinestart);
679  int getGroupNumberLabel(hum::HTp spinestart);
680  int getPartNumberLabel(hum::HTp spinestart);
681  bool isFirstTokenOnStaff(hum::HTp token);
682  bool hasAboveParameter(hum::HTp token, const std::string &category);
683  bool hasAboveParameter(hum::HTp token, const std::string &category, int &output);
684  bool hasBelowParameter(hum::HTp token, const std::string &category);
685  bool hasBelowParameter(hum::HTp token, const std::string &category, int &output);
686  bool hasCenterParameter(hum::HTp token, const std::string &category, int &output);
687  void prepareHeaderFooter();
688  bool prepareHeader(
689  std::vector<std::pair<std::string, std::string>> &biblist, std::map<std::string, std::string> &refmap);
690  bool prepareFooter(
691  std::vector<std::pair<std::string, std::string>> &biblist, std::map<std::string, std::string> &refmap);
692  std::string processReferenceTemplate(const std::string &input,
693  std::vector<std::pair<std::string, std::string>> &biblist, std::map<std::string, std::string> &refmap);
694  std::string processTemplateOperator(const std::string &value, const std::string &op);
695  std::string automaticHeaderLeft(std::vector<std::pair<std::string, std::string>> &biblist,
696  std::map<std::string, std::string> &refmap, int linecount);
697  std::string automaticHeaderCenter(
698  std::vector<std::pair<std::string, std::string>> &biblist, std::map<std::string, std::string> &refmap);
699  std::string automaticHeaderRight(std::vector<std::pair<std::string, std::string>> &biblist,
700  std::map<std::string, std::string> &refmap, int &linecount);
701  void convertMensuralToken(
702  std::vector<std::string> &elements, std::vector<void *> &pointers, hum::HTp token, int staffindex);
703  void initializeSpineColor(hum::HumdrumFile &infile);
704  void setStemLength(Note *note, hum::HTp token);
705  void storeExpansionLists(Section *section, hum::HTp starting);
706  int getStaffAdjustment(hum::HTp token);
707  void calculateNoteIdForSlur(std::string &idstring, std::vector<pair<int, int>> &sortednotes, int index);
708  void promoteInstrumentNamesToGroup();
709  void promoteInstrumentsForStaffGroup(StaffGrp *group);
710  void promoteInstrumentAbbreviationsToGroup();
711  void promoteInstrumentAbbreviationsForStaffGroup(StaffGrp *group);
712  void setGroupSymbol(StaffGrp *sg, staffGroupingSym_SYMBOL symbol);
713  std::string getInstrumentName(StaffDef *sd);
714  std::string getInstrumentAbbreviation(StaffDef *sd);
715  std::string getInstrumentClass(hum::HTp start);
716  void removeInstrumentName(StaffDef *sd);
717  void removeInstrumentAbbreviation(StaffDef *sd);
718  std::string getStartIdForOttava(hum::HTp token);
719  std::string getEndIdForOttava(hum::HTp token);
720  void prepareInitialOttavas(hum::HTp measure);
721  void linkFingeringToNote(Fing *fing, hum::HTp token, int xstaffindex);
722  bool checkForTupletForcedBreak(const std::vector<hum::HTp> &duritems, int index);
723  void extractSlurNoteAttachmentInformation(std::vector<std::pair<int, bool>> &data, hum::HTp token, char slurtype);
724  void extractPhraseNoteAttachmentInformation(
725  std::vector<std::pair<int, bool>> &data, hum::HTp token, char phrasetype);
726  bool getNoteStateSlur(hum::HTp token, int slurnumber);
727  bool getNoteStatePhrase(hum::HTp token, int phrasenumber);
728  void assignVerticalGroup(Pedal *ped, hum::HTp token);
729  void storeAcclev(const std::string value, int staffindex);
730  void storeStemInterpretation(const std::string &value, int staffindex, int layernumber);
731  bool getBooleanParameter(hum::HTp token, const std::string &category, const std::string &key);
732  std::string getStringParameter(hum::HTp token, const std::string &category, const std::string &key);
733  bool shouldHideBeamBracket(
734  const std::vector<humaux::HumdrumBeamAndTuplet> &tgs, std::vector<hum::HTp> &layerdata, int layerindex);
735  void checkBeamWith(Beam *beam, const std::vector<humaux::HumdrumBeamAndTuplet> &tgs,
736  std::vector<hum::HTp> &layerdata, int startindex);
737  std::string getTrackText(hum::HTp token);
738  void checkForLayoutBreak(int line);
739  std::string removeCommas(const std::string &input);
740  void extractNullInformation(vector<bool> &nulls, hum::HumdrumFile &infile);
741  void initializeIgnoreVector(hum::HumdrumFile &infile);
742  bool hasIndent(hum::HTp tok);
743  void prepareNonStandardKeySignature(KeySig *vrvkeysig, const std::string &ks, hum::HTp keytok);
744  void fixLargeTuplets(std::vector<humaux::HumdrumBeamAndTuplet> &tg);
745  void addSlurLineStyle(Slur *element, hum::HTp token, int slurindex);
746  void addTieLineStyle(Tie *element, hum::HTp token, int noteindex);
747  void setAccid(Accid *accid, const std::string &loaccid);
748  bool phraseIsInvisible(hum::HTp token, int pindex);
749  hum::HumNum getLeftNoteDuration(hum::HTp token);
750  void checkClefBufferForSameAs();
751  void suppressBufferedClef(int index);
752  void addExplicitStemDirection(FTrem *ftrem, hum::HTp start);
753  void addSlur(FTrem *ftrem, hum::HTp start, hum::HTp ending);
754  void addFTremSlurs();
755  std::vector<int> getStaffNumbers(std::string &deco);
756  int insertRepetitionElement(
757  std::vector<string> &elements, std::vector<void *> &pointers, std::vector<hum::HTp> tokens, int index);
758  void setRepeatSlashes(BeatRpt *repeat, std::vector<hum::HTp> &tokens, int index);
759  std::string getLabelFromInstrumentCode(hum::HTp icode, const std::string &transpose);
760  void checkForGlobalRehearsal(int line);
761  bool isBlackNotation(hum::HTp starting);
762  std::string checkNoteForScordatura(const std::string &token);
763  bool checkForScordatura(hum::HumdrumFile &infile);
764  void adjustMeasureTimings(hum::HumdrumFile &infile);
765  void fillEmptyLayer(
766  int staffindex, int layerindex, std::vector<std::string> &elements, std::vector<void *> &pointers);
767  bool processOverfillingNotes(hum::HTp token);
768  bool isNextBarIgnored(hum::HTp token);
769  void hideTerminalBarlines(hum::HumdrumFile &infile);
770  void hideBarlinesInTiedGroup(hum::HTp startnote);
771  int getMultiEndline(int startindex);
772  void processHangingTieEnd(
773  Note *note, hum::HTp token, const std::string &tstring, int subindex, hum::HumNum meterunit);
774  void processHangingTieStarts();
775  void processHangingTieStart(humaux::HumdrumTie &tieinfo);
776  bool atEndingBoundaryStart(hum::HTp token);
777  bool atEndingBoundaryEnd(hum::HTp token);
778  Tie *tieToPreviousItem(hum::HTp token, int subindex, hum::HumNum meterunit, Measure *measure = NULL);
779  Tie *addHangingTieToNextItem(hum::HTp token, int subindex, hum::HumNum meterunit, Measure *measure);
780  bool inDifferentEndings(hum::HTp token1, hum::HTp token2);
781  bool checkIfSlurIsInvisible(hum::HTp stoken, int snumber, hum::HTp etoken, int enumber);
782  void checkForTupletMergesAndSplits(std::vector<int> &tupletgroups, std::vector<hum::HTp> &duritems,
783  std::vector<hum::HumNum> &durations, std::vector<bool> &durforce);
784  bool hasLayoutParameter(hum::HTp token, const std::string &category, const std::string &param);
785  void assignTupletScalings(std::vector<humaux::HumdrumBeamAndTuplet> &tg);
786  std::string getLayoutParameter(hum::HTp token, const std::string &category, const std::string &catkey,
787  const std::string &trueString, const std::string &falseString = "");
788  void analyzeClefNulls(hum::HumdrumFile &infile);
789  void markAdjacentNullsWithClef(hum::HTp clef);
790  void markOtherClefsAsChange(hum::HTp clef);
791  int getCurrentLayerCount(hum::HTp token);
792  void checkForBreak(hum::HumdrumFile &infile, int line);
793  bool hasMensuralStaff(hum::HLp line);
794  int getNextBarlineIndex(hum::HumdrumFile &infile, int startline);
795  std::string escapeFreeAmpersand(const std::string &value);
796  void addHairpinAccent(hum::HTp token);
797  void handleCustos(
798  std::vector<string> &elements, std::vector<void *> &pointers, std::vector<hum::HTp> tokens, int index);
799  hum::HTp getAssociatedDynamSpine(hum::HTp stafftok);
800  hum::HTp getPreviousStaffToken(hum::HTp parttok);
801  void checkForVerseLabels(hum::HTp token);
802  std::vector<hum::HTp> getVerseLabels(hum::HTp token, int staff);
803  std::vector<hum::HTp> getVerseAbbrLabels(hum::HTp token, int staff);
804  std::string getVerseLabelText(hum::HTp token);
805  void addPlicaUp(Note *note);
806  void addPlicaDown(Note *note);
807  void setLayoutSlurDirection(Slur *slur, hum::HTp token);
808  void setFontStyle(Rend *rend, const std::string &fontstyle);
809  void setFontWeight(Rend *rend, const std::string &fontweight);
810  void importVerovioOptions(Doc *doc);
811  void adjustChordNoteDurations(Chord *chord, std::vector<Note *> &notes, std::vector<string> &tstrings);
812  void adjustChordNoteDuration(Note *note, hum::HumNum hdur, int dur, int dots, hum::HumNum chorddur,
813  const std::string &tstring, hum::HumNum factor);
814  void setNoteMeiDur(Note *note, int meidur);
815  void storeExpansionListsInChoice(Section *section, std::vector<hum::HTp> &expansions);
816  double getMmTempo(hum::HTp token, bool checklast = false);
817  double getMmTempoForward(hum::HTp token);
818  bool isNearOmd(hum::HTp token);
819  void handleTempoChange(hum::HTp token);
820  bool hasTempoTextAfter(hum::HTp token);
821  bool isTempoishText(hum::HTp token);
822  bool isLastStaffTempo(hum::HTp token);
823  void addMensuralQuality(Note *note, hum::HTp token);
824  bool checkForMens(hum::HumdrumFile &infile);
825  bool layerOnlyContainsNullStuff(std::vector<hum::HTp> &data);
826  int getNoteStaff(hum::HTp token, int homestaff);
827  void addBarLineElement(hum::HTp bartok, std::vector<std::string> &elements, std::vector<void *> &pointers);
828  void prepareFingerings(hum::HumdrumFile &infile);
829  void prepareFingerings(hum::HTp fstart);
830  std::string getLoColor(hum::HTp token, const std::string &category, int subtoken = 0);
831  bool isTieAllowedToHang(hum::HTp token);
832  void analyzeVerseColor(hum::HumdrumFile &infile);
833  void analyzeVerseColor(hum::HTp &token);
834  void processHangingTieEnds();
835  bool checkForInvisibleBeam(Beam *beam, const std::vector<humaux::HumdrumBeamAndTuplet> &tgs, int layerindex);
836  void insertBeamSpan(hum::HTp token);
837  std::string getDataTokenId(hum::HTp token);
838  void checkForFingeredHarmonic(Chord *chord, hum::HTp token);
839  double getGlobalTempoScaling(hum::HumdrumFile &infile);
840  bool isTacet(hum::HTp spinestart);
841  void storeBeamSpansInStartingMeasure();
842  hum::HTp getNextNonNullDataOrMeasureToken(hum::HTp tok);
843  void setBeamSpanPlist(BeamSpan *beamspan, hum::HTp starttok, hum::HTp etok);
844  void checkMeterSigParameters(MeterSig *msig, hum::HTp timesigtok);
845  bool checkForJoin(Note *note, hum::HTp token);
846  bool checkForLayerJoin(int staffindex, int layerindex);
847  void storeTupletAndBeamInfoInTokens(std::vector<humaux::HumdrumBeamAndTuplet> &tgs);
848  std::vector<hum::HTp> getBeamNotes(hum::HTp token, int beamstart);
849  bool checkForBeamSameas(Beam *beam, std::vector<hum::HTp> &layerdata, int layerindex);
850  bool checkForBeamStemSameas(std::vector<hum::HTp> &layerdata, int layerindex);
851  void processInterpretationStuff(hum::HTp token, int staffindex);
852  void insertGlissandos(std::vector<hum::HTp> &tokens);
853  void createGlissando(hum::HTp glissStart, hum::HTp glissEnd);
854  void setSmuflContent(Symbol *symbol, const std::string &name);
855  data_DURATION oneOverDenominatorToDur(int denominator);
856  bool isExpressibleDuration(hum::HumNum duration);
857  pair<data_DURATION, int> getDurAndDots(hum::HumNum duration);
858  void checkForClefStyling(Clef *clef, hum::HTp token);
859  void setClefColorOrEditorial(
860  hum::HTp token, Clef *clef, std::vector<std::string> &elements, std::vector<void *> &pointers);
861  void setClefOctaveDisplacement(Clef *clef, const std::string &token);
862  void setClefBasicShape(Clef *clef, const std::string &tok);
863  void setClefStaffLine(Clef *clef, const std::string &tok);
864  void analyzeHarmInterpretations(hum::HTp starttok);
865  void analyzeDegreeInterpretations(hum::HTp starttok);
866  void analyzeTextInterpretation(hum::HTp starttok);
867  void addHarmLabel(hum::HumNum timestamp, const std::string &label, const std::string &labelStyle,
868  const std::string &n, const std::string &place, int staffNum);
869  std::u32string getMoveableDoName(hum::HTp token, int degree, int semitones);
870  void setFontsizeForHarm(Harm *harm, const std::string &fontsize);
871  void setFontStyleForHarm(Harm *harm, const std::string &style);
872  std::u32string addSemitoneAdjustmentsToDeg(
873  hum::HTp token, int arrowQ, int accidQ, int solfegeQ, int sharps, int flats);
874  int hasParallelNote(hum::HTp token);
875  void setHarmContent(Rend *rend, hum::HTp token);
876  std::string removeRecipFromHarmContent(const std::string &input);
877  void setMxHarmContent(Rend *rend, const std::string &content);
878  void setDegreeContent(Rend *rend, hum::HTp token, int n = 0);
879  std::u32string cleanStringString(const std::string &content);
880  std::vector<std::u32string> cleanFBString(std::vector<std::string> &pieces, hum::HTp token);
881  std::u32string cleanFBString2(std::vector<std::string> &pieces, hum::HTp token);
882  std::vector<std::string> splitFBString(const std::string &content, const std::string &separator = " ");
883  std::u32string getVisualFBAccidental(int accidental);
884  std::u32string convertFBNumber(const std::string &input, hum::HTp token);
885  void checkForLineContinuations(hum::HTp token);
886  std::u32string convertNumberToWstring(int number);
887  void appendTextToRend(Rend *rend, const std::string &content);
888  void parseMultiVerovioOptions(std::map<std::string, std::string> &parameters, const std::string &input);
889  void addSforzandoToNote(hum::HTp token, int staffindex);
890  void addDynamicsMark(hum::HTp dyntok, hum::HTp token, hum::HLp line, const std::string &letters, int staffindex,
891  int staffadj, int trackdiff);
892  bool hasNoStaves(hum::HumdrumFile &infile);
893  hum::HTp getVisualKeySignature(hum::HTp keysigtok);
894  bool isNotAtStartOfMeasure(std::vector<hum::HTp> &layerdata, int index);
895  void analyzeFingerings(hum::HumdrumFile &infile);
896  void analyzeFingerings(hum::HTp sstart);
897  void insertMidMeasureKeySignature(
898  int staffindex, std::vector<std::string> &elements, std::vector<void *> &pointers, hum::HTp token);
899  int getKeySignatureNumber(const std::string &humkeysig);
900  int getStaffNumForSpine(hum::HTp token);
901  bool checkIfReversedSpineOrder(std::vector<hum::HTp> &staffstarts);
902  bool hasOmdText(int startline, int endline);
903  void processMeiOptions(hum::HumdrumFile &infile);
904  std::string getInstrumentNumber(hum::HTp icode);
905  void insertTextWithNewlines(Label *label, const std::string &text);
906  bool hasBounceAfter(hum::HTp token);
907  bool hasBounceBefore(hum::HTp token);
908  void analyzeDefaultLayoutStyles(hum::HumdrumFile &infile);
909  std::string getDefaultLayoutParameter(const std::string &category, const std::string &parameter);
910 
911  // header related functions: ///////////////////////////////////////////
912  void createHeader();
913  void createFileDesc(pugi::xml_node meiHead);
914  void createDigitalSource(pugi::xml_node sourceDesc);
915  void createPrintedSource(pugi::xml_node sourceDesc);
916  void createRecordedSource(pugi::xml_node sourceDesc);
917  void createUnpublishedSource(pugi::xml_node sourceDesc);
918  void createEncodingDesc(pugi::xml_node meiHead);
919  void createWorkList(pugi::xml_node meiHead);
920  void createHumdrumVerbatimExtMeta(pugi::xml_node meiHead);
921  void createBackMatter();
922  void createSimpleTitleElement();
923  void createSimpleComposerElements();
924  void createTitleElements(pugi::xml_node element);
925  void createComposerElements(pugi::xml_node element);
926  void fillInIsoDate(pugi::xml_node element, const std::string &dateString);
927  std::map<std::string, std::string> isoDateAttributesFromHumdrumDate(
928  const std::string &inHumdrumDate, bool edtf = false);
929  DateConstruct dateConstructFromHumdrumDate(const std::string &dateString);
930  std::map<std::string, std::string> isoDateAttributesFromDateConstruct(
931  const DateConstruct &dateConstruct, bool edtf, bool isEdgeOfDateConstructRange = false);
932  std::string isoDateFromDateWithErrors(const DateWithErrors &dateWithErrors, bool edtf);
933  DateWithErrors dateWithErrorsFromHumdrumDate(const std::string &dateString);
934  bool sanityCheckDate(int year, int month, int day, int hour, int minute, int second);
935  std::string stripDateError(std::string &value);
936  std::string getTextListLanguage(const std::vector<HumdrumReferenceItem> &textItems);
937  std::map<std::string, std::vector<HumdrumReferenceItem>> getAllReferenceItems(hum::HumdrumFile &infile);
938  std::vector<HumdrumReferenceItem> getReferenceItems(const std::string &key);
939  bool anyReferenceItemsExist(const std::vector<string> &keys);
940  int getBestItem(const std::vector<HumdrumReferenceItem> &items, const std::string &requiredLanguage);
941  bool isStandardHumdrumKey(const std::string &key);
942  void appendText(pugi::xml_node element, std::string text);
943  void addDefaultTempoDist(double distance);
944 
946  template <class ELEMENT> void verticalRest(ELEMENT rest, const std::string &token);
947  template <class ELEMENT>
948  void setKeySig(
949  int partindex, ELEMENT element, const std::string &keysig, hum::HTp keysigtok, hum::HTp keytok, bool secondary);
950  template <class ELEMENT> void setKeySig(ELEMENT *element, hum::HTp keysigtok);
951  template <class PARENT, class CHILD> void appendElement(PARENT parent, CHILD child);
952  template <class ELEMENT> void addArticulations(ELEMENT element, hum::HTp token);
953  template <class ELEMENT> hum::HumNum convertRhythm(ELEMENT element, hum::HTp token, int subtoken = -1);
954  template <class ELEMENT> void setRhythmFromDuration(ELEMENT element, hum::HumNum dur);
955  template <class ELEMENT>
956  void setVisualAndGesturalRhythmFromDuration(ELEMENT element, hum::HumNum visdur, hum::HumNum gesdur);
957  template <class ELEMENT> hum::HumNum convertMensuralRhythm(ELEMENT element, hum::HTp token, int subtoken = -1);
958  template <class ELEMENT> hum::HumNum setDuration(ELEMENT element, hum::HumNum duration);
959  template <class ELEMENT> void setStaff(ELEMENT element, int staffnum);
960  template <class ELEMENT> void setStaffBetween(ELEMENT element, int staffnum);
961  template <class ELEMENT> void setN(ELEMENT element, int nvalue, hum::HTp tok = NULL);
962  template <class ELEMENT> void assignAutomaticStem(ELEMENT element, hum::HTp tok, int staffindex);
963  template <class ELEMENT> KeySig *getKeySig(ELEMENT element);
964  template <class ELEMENT> MeterSig *getMeterSig(ELEMENT element);
965  template <class ELEMENT> Clef *getClef(ELEMENT element);
966  template <class ELEMENT> Mensur *getMensur(ELEMENT element, hum::HTp token = NULL);
967  template <class ELEMENT>
968  void insertPhrase(ELEMENT phrase, hum::HTp phrasestart, hum::HTp phraseend, Measure *startmeasure,
969  std::vector<pair<int, int>> &endchordsorted, std::vector<std::pair<int, int>> &startchordsorted,
970  std::vector<pair<int, bool>> &phrasestartnoteinfo, std::vector<pair<int, bool>> &phraseendnoteinfo, int ndex,
971  std::vector<std::vector<int>> &phraseindex, int i, int j, std::vector<int> &startpitches,
972  std::vector<int> &endpitches, std::vector<bool> &indexused);
973  template <class ELEMENT> void convertVerses(ELEMENT element, hum::HTp token);
974  template <class ELEMENT>
975  void setTimeSig(ELEMENT element, hum::HTp timesigtok, hum::HTp metersigtok, int staffindex);
976  template <class ELEMENT> void addChildBackMeasureOrSection(ELEMENT element);
977  template <class ELEMENT> void addChildMeasureOrSection(ELEMENT element, Measure *measure = NULL);
978  template <class CHILD>
979  void appendElement(const std::vector<std::string> &name, const std::vector<void *> &pointers, CHILD child);
980  void popElementStack(std::vector<std::string> &elements, std::vector<void *> &pointers);
981  template <class ELEMENT>
982  void addTextElement(ELEMENT *element, const std::string &content, const std::string &fontstyle = "",
983  bool addSpacer = true, const std::string &label = "");
984  template <class ELEMENT> void addMusicSymbol(ELEMENT *element, const std::string &musictext);
985  template <class ELEMENT> void checkForAutoStem(ELEMENT element, hum::HTp token);
986  template <class ELEMENT> void appendTypeTag(ELEMENT *element, const std::string &tag);
987  template <class ELEMENT> void setPlaceRelStaff(ELEMENT *element, const std::string &place, bool showplace = false);
988  template <class ELEMENT> void setPlaceRelEvent(ELEMENT *element, const std::string &place, bool showplace = false);
989  template <class ELEMENT>
990  void setMeterSymbol(ELEMENT *element, const std::string &metersig, int staffindex, hum::HTp partstart = NULL,
991  hum::HTp metertok = NULL);
992  template <class ELEMENT>
993  void setMensurationSymbol(ELEMENT *element, const std::string &metersig, int staffindex, hum::HTp mensurtok = NULL);
994  template <class ELEMENT>
995  void setInstrumentName(ELEMENT *staffdef, const std::string &name, hum::HTp labeltok = NULL);
996  template <class ELEMENT>
997  void setInstrumentAbbreviation(ELEMENT *staffdef, const std::string &name, hum::HTp abbrtok);
998  template <class ELEMENT> void addDurRecip(ELEMENT element, const std::string &ttoken);
999  template <class ELEMENT> void addFermata(ELEMENT *rest, const std::string &tstring);
1000  template <class ELEMENT> void storeExpansionList(ELEMENT *parent, hum::HTp etok);
1001  template <class ELEMENT> void setWrittenAccidentalUpper(ELEMENT element, const std::string &value);
1002  template <class ELEMENT> void setWrittenAccidentalLower(ELEMENT element, const std::string &value);
1003  template <class ELEMENT> void attachToToken(ELEMENT *element, hum::HTp token);
1004  template <class ELEMENT> void setAttachmentType(ELEMENT *element, hum::HTp token);
1005  template <class ELEMENT>
1006  void setFontsize(ELEMENT *element, const std::string &percentage, const std::string &original);
1007  template <class ELEMENT> void setTstamp(ELEMENT *element, const string &value);
1008  template <class ELEMENT> void setEnclosure(ELEMENT *element, const string &value);
1009 
1011  static std::string unescapeHtmlEntities(const std::string &input);
1012  static void WriteUTF8(std::ostream &Out, unsigned int Ch);
1013  static void UnquoteHTML(std::istream &In, std::ostream &Out);
1014  static hum::HumNum removeFactorsOfTwo(hum::HumNum value, int &tcount, int &bcount);
1015  static int getDotPowerOfTwo(hum::HumNum value);
1016  static int nextLowerPowerOfTwo(int x);
1017  static hum::HumNum nextHigherPowerOfTwo(hum::HumNum x);
1018  static std::string getDateString();
1019  static bool replace(std::string &str, const std::string &oldStr, const std::string &newStr);
1020  static bool replace(std::u32string &str, const std::u32string &oldStr, const std::u32string &newStr);
1021 
1022 private:
1023  // m_filename == Filename to read/was read.
1024  std::string m_filename;
1025 
1026  // m_debug == mostly for printing MEI data to standard input.
1027  int m_debug = 0;
1028 
1029  // m_comment == Display **kern data embedded in comments for each
1030  // staff layer.
1031  int m_comment = 0;
1032 
1033  // m_doc is inherited root document object.
1034 
1035  // m_score stores the music
1036  Score *m_score = NULL;
1037 
1038  // m_sections stores segments of the music
1039  std::vector<Section *> m_sections;
1040 
1041  // m_lastsection == The section label of the previous measure
1042  std::string m_lastsection;
1043 
1045  //
1046  // State variables for doing the conversion without having to pass
1047  // these variables as parameters:
1048  //
1049 
1050  // m_staffgroup == information about parts
1051  // no longer used
1052  // vrv::StaffGrp *m_staffgroup = NULL;
1053 
1054  // m_staffdef == information about a staff.
1055  std::vector<vrv::StaffDef *> m_staffdef;
1056 
1057  std::vector<vrv::Measure *> m_measures;
1058 
1059  // m_measure == current measure, or NULL.
1060  vrv::Measure *m_measure = NULL;
1061 
1062  // m_staff == current staff, or NULL.
1063  vrv::Staff *m_staff = NULL;
1064 
1065  // m_currentstaff == The current staff being parsed.
1066  int m_currentstaff = -1;
1067 
1068  // m_layer == current layer, or NULL.
1069  vrv::Layer *m_layer = NULL;
1070 
1071  int m_currentlayer;
1072 
1073  // m_layertokens == Humdrum **kern tokens for each staff/layer to be
1074  // converted.
1075  std::vector<std::vector<std::vector<hum::HTp>>> m_layertokens;
1076 
1077  // m_staffstarts == list of tracks in Humdrum file being parsed which
1078  // contain **kern, **mens data or whatever other data types
1079  // will be converted into a staff in the conversion to MEI.
1080  std::vector<hum::HTp> m_staffstarts;
1081 
1082  // m_rkern == reverse mapping of Humdrum track to staff number..
1083  std::vector<int> m_rkern;
1084 
1085  // m_infiles == Humdrum file used for conversion.
1086  hum::HumdrumFileSet m_infiles;
1087 
1088  // m_timesigdurs == Prevailing time signature duration of measure
1089  std::vector<hum::HumNum> m_timesigdurs;
1090 
1091  // m_tupletscaling == tuplet-scaling factor for the current note.
1092  hum::HumNum m_tupletscaling = 1;
1093 
1094  // m_omd == temporary variable for printing tempo designation.
1095  hum::HumNum m_omd = -1;
1096 
1097  // m_oclef == temporary variable for printing "original-clef" <app>
1098  std::vector<std::pair<int, hum::HTp>> m_oclef;
1099 
1100  // m_omet == temporary variable for printing "original-mensuration" <app>
1101  std::vector<std::pair<int, hum::HTp>> m_omet;
1102 
1103  // m_okey == temporary variable for printing "original-key" <app>
1104  std::vector<std::pair<int, hum::HTp>> m_okey;
1105 
1106  // m_staffstates == state variables for each staff.
1107  std::vector<humaux::StaffStateVariables> m_staffstates;
1108 
1109  // m_measureIndex == state variable for keeping track of the
1110  // current measure number being converted.
1111  int m_measureIndex;
1112 
1113  // m_harm == state variable for keeping track of whether or not
1114  // the file to convert contains **mxhm or **harm spines that should be
1115  // converted into <harm> element in the MEI conversion.
1116  bool m_harm = false;
1117 
1118  // m_degree == state variable for keeping track of whether or not
1119  // the file to convert contains **deg or **degree spines that should be
1120  // converted into <harm> element in the MEI conversion.
1121  bool m_degree = false;
1122 
1123  // m_fing == state variable for keeping track of whether or not
1124  // the file to convert contains **fing spines that should be
1125  // converted into <fing> elements in the MEI conversion.
1126  bool m_fing = false;
1127 
1128  // m_string == state variable for keeping track of whether or not
1129  // the file to convert contains **string spines that should be
1130  // converted into <string> elements in the MEI conversion.
1131  bool m_string = false;
1132 
1133  // m_mens == state variable for keeping track of whether or not
1134  // the file to convert contains **mens spines that should be
1135  // converted into mensuration notation staves.
1136  bool m_mens = false;
1137 
1138  // m_fb == state variable for keeping track of whether or not
1139  // the file to convert contains **Bnum spines that should be
1140  // converted into <harm> element in the MEI conversion.
1141  bool m_fb = false;
1142 
1143  // m_fbstaff == state variable for keeping track of whether or not
1144  // a particular staff (index) has figured bass. This is used by
1145  // the tuplet@place parameter to avoid collision between tuplet numbers
1146  // and figured bass.
1147  std::vector<bool> m_fbstaff;
1148 
1149  // m_fbstates == position of the figured bass in relation to
1150  // each staff index. 0 = no figured bass, -1 = figured bass below staff,
1151  // +1 = figured bass above staff.
1152  std::vector<int> m_fbstates;
1153 
1154  // m_setrightstem == used for setting right-side stem of half notes
1155  bool m_setrightstem = false;
1156 
1157  // m_leftbarstyle is a barline left-hand style to store in the next measure.
1158  // When processing a measure, this variable should be checked and used
1159  // in @left="style" for the measure.
1160  data_BARRENDITION m_leftbarstyle;
1161 
1162  // m_signifiers == a list of user defined signfiers in **kern spine data
1163  // which indicate non-standard **kern parametesr that can be converted
1164  // into notation.
1165  HumdrumSignifiers m_signifiers;
1166 
1167  // m_multirest == boolean states to keep track of muti-rest cases.
1168  std::vector<int> m_multirest;
1169 
1170  // m_sections == keep track of thru sections and 1st/second endings.
1171  std::vector<hum::HTp> m_sectionlabels;
1172 
1173  // m_numberlesslabels == The last section label without a number at the end.
1174  std::vector<hum::HTp> m_numberlesslabels;
1175 
1176  // m_endingnum == keep track of current ending.
1177  int m_endingnum = 0;
1178 
1179  // m_currentending == keep track of current ending.
1180  vrv::Ending *m_currentending = NULL;
1181 
1182  // m_currentsection == keep track of current section.
1183  vrv::Section *m_currentsection = NULL;
1184 
1185  // m_has_color_spine == true if a color spine is present.
1186  bool m_has_color_spine = false;
1187 
1188  // m_spine_color == list of colors to apply to spine data
1189  // first dimension is the spine/track (staff), and second is subspine/subtrack (layer).
1190  std::vector<std::vector<std::string>> m_spine_color;
1191 
1192  // m_traspose == transposition to go from sounding to written pitch.
1193  std::vector<int> m_transpose;
1194 
1195  // *kcancel = display cancellation key signatures
1196  // *Xkcancel = do not display cancellation key signatures (default)
1197  bool m_show_cautionary_keysig = false;
1198 
1199  // m_hasTremolo == true if there is a *tremolo found in input data.
1200  bool m_hasTremolo = false;
1201 
1202  // m_placement == placement above/below state for a particular spine of information
1203  // currently used for **fb, but expand to other spine types as needed (such as **harm).
1204  // +1 = *above marker encountered in spine.
1205  // -1 = *below marker encountered in spine.
1206  // 0 = *auto neither above or below explicitly given (leave up to renderer).
1207  // Up to 1000 spines can be processed (see constructor).
1208  // Indexed by track number of the spine it revers to.
1209  std::vector<int> m_placement;
1210 
1211  // m_reverse == placement reversed or not reversed. currently used for **fb,
1212  // might be useful for other types of spines in the fugure.
1213  // +1 = *reverse marker encountered in spine.
1214  // 0 = *Xreverse marker encountered in spine. (or default)
1215  // Up to 1000 spines can be processed (see constructor).
1216  std::vector<int> m_reverse;
1217 
1218  // m_absolute == use relative or absolute accidentals in **fb.
1219  // +1 = *absolute marker encountered in spine.
1220  // 0 = *Xabsolute marker encountered in spine. (default)
1221  // Up to 1000 spines can be processed (see constructor).
1222  std::vector<int> m_absolute;
1223 
1224  // m_slash == display accidentals as slashes or as accidentals in **fb.
1225  // +1 = *slash marker encountered in spine. (default)
1226  // 0 = *Xslash marker encountered in spine.
1227  // Up to 1000 spines can be processed (see constructor).
1228  std::vector<int> m_slash;
1229 
1230  // m_breaks == true if the music contains encoded page/system breaks
1231  bool m_breaks = false;
1232 
1233  // m_nulls == true if the line only contains null data.
1234  std::vector<bool> m_nulls;
1235 
1236  // m_duradj == duration adjustments due to the presence of a full
1237  // null data line. Add this value when calculating the prespace
1238  // variable in fillContentsOfLayer().
1239  std::vector<hum::HumNum> m_duradj;
1240 
1241  // m_ignore == limit conversion range of data (for speeding up editing of
1242  // larger files).
1243  std::vector<bool> m_ignore;
1244 
1245  // m_clef_buffer == used to identify clefs that should not be printed.
1246  std::vector<std::tuple<bool, hum::HumNum, Clef *>> m_clef_buffer;
1247 
1248  // m_ftrem_slurs == used to store ftrem-generated slurs for later insertion
1249  // into measure element.
1250  std::vector<Slur *> m_ftrem_slurs;
1251 
1252  // m_group_name == used to store group names, such as *I""trumpets
1253  std::map<int, std::string> m_group_name;
1254 
1255  // m_group_name_tok == used to store group names, such as *I""trumpets
1256  std::map<int, hum::HTp> m_group_name_tok;
1257 
1258  // m_group_abbr == used to store group abbreviations, such as *I""trps.
1259  std::map<int, std::string> m_group_abbr;
1260 
1261  // m_group_abbr_tok == used to store group abbreviations, such as *I""trps.
1262  std::map<int, hum::HTp> m_group_abbr_tok;
1263 
1264  // m_scordatura_marker == used to identify scordatura notes for transposition to written pitch.
1265  std::vector<std::string> m_scordatura_marker;
1266 
1267  // m_scordatura_transposition == used to transpose scordatura notes;
1268  std::vector<hum::HumTransposer *> m_scordatura_transposition;
1269 
1270  // m_humtype == input option boolean to include extra @type information that will
1271  // be converted into @class in SVG conversion.
1272  int m_humtype = false;
1273 
1274  // m_beamSpanStartDatabase == keep track of the starting measure for
1275  // a beamSpan starting in current measure.
1276  std::vector<hum::HTp> m_beamSpanStartDatabase;
1277 
1278  // m_globalTempoScaling == global adjustment of tempo markings
1279  double m_globalTempoScaling = 1.0;
1280 
1281  // m_localTempoScaling == global adjustment of tempo markings
1282  hum::HumNum m_localTempoScaling = 1;
1283 
1284  // m_join == boolean for merging layers together.
1285  bool m_join = false;
1286 
1287  // m_midibpm == current MIDI BPM
1288  double m_midibpm = 120.0;
1289 
1290  // m_textNoteSize = Size of notes in text.
1291  std::string m_textNoteSize = "70%";
1292 
1293  // m_textAugmentationDotSpace = space to give before augmentation dot
1294  // in text (tempo markings).
1295  std::string m_textAugmentationDotSpacer = "\xe2\x80\x89";
1296 
1297  // m_textSmuflSpace = space to give between SMuFL characters
1298  // (excluding augmentation dots).
1299  std::string m_textSmuflSpacer = "\xc2\xa0";
1300 
1301  // m_layoutDefaultStyles = default layout styles for LO categories.
1302  std::map<std::string, std::map<string, std::string>> m_layoutDefaultStyles;
1303 
1304  // Some metadata elements that are computed once and used multiple times
1305  std::vector<hum::HumdrumLine *> m_humdrumLineReferences;
1306  std::map<std::string, std::vector<HumdrumReferenceItem>> m_references;
1307  pugi::xml_document m_simpleTitleDoc;
1308  pugi::xml_node m_simpleTitle;
1309  pugi::xml_document m_simpleComposersDoc;
1310  pugi::xml_document m_madsDoc;
1311  pugi::xml_node m_madsCollection;
1312 
1313  std::vector<string> m_standardHumdrumKeys = {
1314  "COM", // composer's name
1315  "COA", // attributed composer
1316  "COS", // suspected composer
1317  "COL", // composer's abbreviated, alias, or stage name
1318  "COC", // composer's corporate name
1319  "CDT", // composer's birth and death dates (**zeit format)
1320  "CBL", // composer's birth location
1321  "CDL", // composer's death location
1322  "CNT", // composer's nationality
1323  "LYR", // lyricist's name
1324  "LIB", // librettist's name
1325  "LAR", // music arranger's name
1326  "LOR", // orchestrator's name
1327  "TXO", // original language of vocal/choral text
1328  "TXL", // language of the encoded vocal/choral text
1329  "TRN", // translator of the text
1330  "RTL", // album title
1331  "RMM", // manufacturer or sponsoring company
1332  "RC#", // recording company's catalog number of album
1333  "RRD", // release date (**date format)
1334  "RLC", // place of recording
1335  "RNP", // producer's name
1336  "RDT", // date of recording (**date format)
1337  "RT#", // track number
1338  "MGN", // Humdrum encodes, say, a MIDI performance)
1339  "MPN", // ensemble's name
1340  "MPS", // performer's name
1341  "MRD", // suspected performer
1342  "MLC", // date of performance (**date format)
1343  "MCN", // place of performance
1344  "MPD", // conductor's name
1345  "MDT", // date of first performance (**date format)
1346  "OTL", // I've seen 'em (another way to say date of performance?)
1347  "OTP", // title
1348  "OTA", // popular title
1349  "OPR", // alternative title
1350  "OAC", // title of parent work
1351  "OSC", // act number (e.g. '2' or 'Act 2')
1352  "OMV", // scene number (e.g. '3' or 'Scene 3')
1353  "OMD", // movement number (e.g. '4', or 'mov. 4', or...)
1354  "OPS", // movement name
1355  "ONM", // opus number (e.g. '23', or 'Opus 23')
1356  "OVM", // number (e.g. number of song within ABC multi-song file)
1357  "ODE", // volume number (e.g. '6' or 'Vol. 6')
1358  "OCO", // dedicated to
1359  "OCL", // commissioned by
1360  "ONB", // collected/transcribed by
1361  "ODT", // free form note related to title or identity of work
1362  "OCY", // date or period of composition (**date or **zeit format)
1363  "OPC", // country of composition
1364  "GTL", // city, town, or village of composition
1365  "GAW", // group title (e.g. 'The Seasons')
1366  "GCO", // associated work, such as a play or film
1367  "PUB", // publication status 'published'/'unpublished'
1368  "PED", // publication editor
1369  "PPR", // first publisher
1370  "PDT", // date first published (**date format)
1371  "PTL", // publication (volume) title
1372  "PPP", // place first published
1373  "PC#", // publisher's catalog number (NOT scholarly catalog)
1374  "SCT", // scholarly catalog abbrev/number (e.g. 'BWV 551')
1375  "SCA", // scholarly catalog (unabbreviated) (e.g. 'Koechel 117')
1376  "SMS", // unpublished manuscript source name
1377  "SML", // unpublished manuscript location
1378  "SMA", // acknowledgment of manuscript access
1379  "YEP", // publisher of electronic edition
1380  "YEC", // date and owner of electronic copyright
1381  "YER", // date electronic edition released
1382  "YEM", // copyright message (e.g. 'All rights reserved')
1383  "YEN", // country of copyright
1384  "YOR", // original document from which encoded doc was prepared
1385  "YOO", // original document owner
1386  "YOY", // original copyright year
1387  "YOE", // original editor
1388  "EED", // electronic editor
1389  "ENC", // electronic encoder (person)
1390  "END", // encoding date
1391  "EMD", // electronic document modification description (one/mod)
1392  "EEV", // electronic edition version
1393  "EFL", // file number e.g. '1/4' for one of four
1394  "EST", // encoding status (usually deleted before distribution)
1395  "VTS", // checksum (excluding the VTS line itself)
1396  "ACO", // collection designation
1397  "AFR", // form designation
1398  "AGN", // genre designation
1399  "AST", // style, period, or type of work designation
1400  "AMD", // mode classification e.g. '5; Lydian'
1401  "AMT", // metric classification, must be one of eight names, e.g. 'simple quadruple'
1402  "AIN", // instrumentation, must be alphabetical list of *I abbrevs, space-delimited
1403  "ARE", // geographical region of origin (list of 'narrowing down' names of regions)
1404  "ARL", // geographical location of origin (lat/long)
1405  "HAO", // aural history (lots of text, stories about the work)
1406  "HTX", // freeform translation of vocal text
1407  "RLN", // Extended ASCII language code
1408  "RNB", // a note about the representation
1409  "RWB" // a warning about the representation
1410  };
1411 
1412 #endif /* NO_HUMDRUM_SUPPORT */
1413 };
1414 
1415 } // namespace vrv
1416 
1417 #endif // __VRV_IOHUMDRUM_H__
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::Measure
This class represents a measure in a page-based score (Doc).
Definition: measure.h:37
vrv::HumdrumSignifiers
Definition: iohumdrum.h:368
vrv::BeamSpan
This class models the MEI <beamSpan> element.
Definition: beamspan.h:31
vrv::Doc
This class is a hold the data and corresponds to the model of a MVC design pattern.
Definition: doc.h:41
vrv::HumdrumReferenceItem
Definition: iohumdrum.h:436
vrv::MeterSig
This class models the MEI <meterSig> element.
Definition: metersig.h:27
vrv::Verse
Definition: verse.h:23
vrv::Tempo
This class is an interface for <tempo> elements at the measure level.
Definition: tempo.h:27
vrv::FTrem
This class models the MEI <fTrem> element.
Definition: ftrem.h:25
vrv::Ending
This class represents a MEI ending.
Definition: ending.h:28
vrv::Section
This class represents a MEI section.
Definition: section.h:28
vrv::Chord
This class represents a collection of notes in the same layer with the same onset time.
Definition: chord.h:32
vrv::Accid
This class models the MEI <accid> element.
Definition: accid.h:27
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::Pedal
This class models the MEI <pedal> element.
Definition: pedal.h:27
vrv::Slur
Definition: slur.h:53
vrv::Tie
This class models the MEI <tie> element.
Definition: tie.h:27
vrv::Mensur
This class models the MEI <mensur> element.
Definition: mensur.h:27
vrv::HumdrumInput
Definition: iohumdrum.h:487
vrv::Symbol
This class models the MEI <symbol> element.
Definition: symbol.h:25
vrv::Space
This class models the MEI <space> element.
Definition: space.h:23
vrv::Clef
This class models the MEI <clef> element.
Definition: clef.h:27
vrv::DateWithErrors
Definition: iohumdrum.h:455
vrv::Input
This class is a base class for input classes.
Definition: iobase.h:63
vrv::Beam
Definition: beam.h:279
vrv::HumdrumInput::verticalRest
void verticalRest(ELEMENT rest, const std::string &token)
Templates ///////////////////////////////////////////////////////////.
vrv::Note
This class models the MEI <note> element.
Definition: note.h:47
vrv::Label
This class models the MEI <label> element.
Definition: label.h:22
vrv::Fing
This class models the MEI <fing> element.
Definition: fing.h:25
vrv::BeatRpt
This class models the MEI <beatRpt> element.
Definition: beatrpt.h:25
vrv::HumdrumInput::unescapeHtmlEntities
static std::string unescapeHtmlEntities(const std::string &input)
Static functions ////////////////////////////////////////////////////.
vrv::ScoreDef
This class represents a MEI scoreDef.
Definition: scoredef.h:129
vrv::MRest
This class models the MEI <mRest> element.
Definition: mrest.h:27
vrv::Rest
This class models the MEI <rest> element.
Definition: rest.h:37
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
vrv::StaffGrp
This class represents a MEI staffGrp.
Definition: staffgrp.h:31
vrv::DateConstruct
Definition: iohumdrum.h:472
vrv::Layer
This class represents a layer in a laid-out score (Doc).
Definition: layer.h:33
vrv::Rend
This class models the MEI <rend> element.
Definition: rend.h:25
vrv::Harm
This class models the MEI <harm> element.
Definition: harm.h:27