libcm is a C development framework with an emphasis on audio signal processing applications.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

cmXScore.h 2.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. #ifndef cmXScore_h
  2. #define cmXScore_h
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. enum
  7. {
  8. kOkXsRC = cmOkRC,
  9. kXmlFailXsRC,
  10. kLHeapFailXsRC,
  11. kSyntaxErrorXsRC,
  12. kCsvFailXsRC,
  13. kUnterminatedTieXsRC,
  14. kUnterminatedSlurXsRC,
  15. kUnterminatedOctaveShiftXsrRC,
  16. kMidiFailXsRC,
  17. kFileFailXsRC,
  18. kSvgFailXsRC
  19. };
  20. typedef cmRC_t cmXsRC_t;
  21. typedef cmHandle_t cmXsH_t;
  22. extern cmXsH_t cmXsNullHandle;
  23. // Prepare the MusicXML file:
  24. //
  25. // 1) Convert XML to UTF-8:
  26. // a. Change: encoding = 'UTF-16' to encoding='UTF-8'
  27. // b. Emacs C-x <RET> f utf-8 <RET>
  28. // c. Change: <?xml ... encoding = 'UTF-16' to encoding='UTF-8' ...?>
  29. //
  30. // 2) Replace "DoletSibelius Unknown Symbol Index" with "DoletSibelius unknownSymIdx"
  31. //
  32. // Steps 1) and 2) can be automated by in emacs by:
  33. //
  34. // M-x load-file ~/src/emacs/proc_music_xml.el
  35. //
  36. // 3) How to assigned dynamic markings (they are not attached to notes). (from MIDI file?)
  37. // 4) Tempo syntax is inconsistent (only a problem in full part2 score)
  38. // 5) Heel is being parsed but not used.
  39. // 6) Sostenuto pedal events are not being parsed because they are not pedal events.
  40. // 7) What is a 'pedal-change' event vs. a 'pedal-stop' event.
  41. // 8) Verify the colors. (done)
  42. // 9) Remove blank bars at end (done in xml - do in score)
  43. //10) Need to assign section targets (always default to next section)
  44. //11) Mark tied notes for skip. (done)
  45. //12) Determine note off locations based on ties and slurs - defer 'pedal' to player
  46. //13) Check that the measures are given in sorted order.
  47. //14) Current implementation assumes meter changes only occur at measure boundaries.
  48. //15) Score Fixes: Add meter to bar 1, fix time errors (shown in voice report)
  49. //16) The order of notes is now correct (4/6/16) after applying
  50. // the grace note ordering changed specified in 'score_print_mk_edit.txt',
  51. // via cmXScoreReorder() however the ticks are now incorrect - fix them.
  52. cmXsRC_t cmXScoreInitialize( cmCtx_t* ctx, cmXsH_t* hp, const cmChar_t* xmlFn );
  53. cmXsRC_t cmXScoreFinalize( cmXsH_t* hp );
  54. bool cmXScoreIsValid( cmXsH_t h );
  55. cmXsRC_t cmXScoreWriteCsv( cmXsH_t h, const cmChar_t* csvFn );
  56. void cmXScoreReport( cmXsH_t h, cmRpt_t* rpt, bool sortFl );
  57. // Generate the CSV file suitable for use by cmScore.
  58. cmXsRC_t cmXScoreTest( cmCtx_t* ctx, const cmChar_t* xmlFn, const cmChar_t* reorderFn, const cmChar_t* csvOutFn, const cmChar_t* midiOutFn );
  59. #ifdef __cplusplus
  60. }
  61. #endif
  62. #endif