libcm is a C development framework with an emphasis on audio signal processing applications.
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

cmXScore.h 1.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. };
  14. typedef cmRC_t cmXsRC_t;
  15. typedef cmHandle_t cmXsH_t;
  16. extern cmXsH_t cmXsNullHandle;
  17. // Prepare the MusicXML file:
  18. //
  19. // 1) Convert XML to UTF-8:
  20. // a. Change: encoding='UTF-16' to encoding='UTF-8'
  21. // b. Emacs C-x <RET> f utf-8 <RET>
  22. //
  23. // 2) Replace "DoletSibelius Unknown Symbol Index" with "DoletSibelius unknownSymIdx"
  24. //
  25. // 3) How to assigned dynamic markings (they are not attached to notes). (from MIDI file?)
  26. // 4) Tempo syntax is inconsistent (only a problem in full part2 score)
  27. // 5) Heel is being parsed but not used.
  28. // 6) Sostenuto pedal events are not being parsed because they are not pedal events.
  29. // 7) What is a 'pedal-change' event vs. a 'pedal-stop' event.
  30. // 8) Verify the colors.
  31. // 9) Remove blank bars at end.
  32. //10) Need to assign section targets (always default to next section)
  33. //11) Mark tied notes for skip.
  34. cmXsRC_t cmXScoreInitialize( cmCtx_t* ctx, cmXsH_t* hp, const cmChar_t* xmlFn );
  35. cmXsRC_t cmXScoreFinalize( cmXsH_t* hp );
  36. bool cmXScoreIsValid( cmXsH_t h );
  37. cmXsRC_t cmXScoreWriteCsv( cmXsH_t h, const cmChar_t* csvFn );
  38. void cmXScoreReport( cmXsH_t h, cmRpt_t* rpt, bool sortFl );
  39. cmXsRC_t cmXScoreTest( cmCtx_t* ctx, const cmChar_t* fn );
  40. #ifdef __cplusplus
  41. }
  42. #endif
  43. #endif