libcm is a C development framework with an emphasis on audio signal processing applications.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

cmScore.h 10KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274
  1. #ifndef cmScore_h
  2. #define cmScore_h
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. enum
  7. {
  8. kOkScRC = cmOkRC,
  9. kCsvFailScRC,
  10. kSyntaxErrScRC,
  11. kInvalidIdxScRC,
  12. kTimeLineFailScRC,
  13. kInvalidDynRefCntScRC,
  14. kMidiFileFailScRC
  15. };
  16. enum
  17. {
  18. kInvalidEvtScId = 0,
  19. kTimeSigEvtScId,
  20. kKeySigEvtScId,
  21. kTempoEvtScId,
  22. kTrackEvtScId,
  23. kTextEvtScId,
  24. kNameEvtScId,
  25. kEOTrackEvtScId,
  26. kCopyEvtScId,
  27. kBlankEvtScId,
  28. kBarEvtScId,
  29. kPgmEvtScId,
  30. kCtlEvtScId,
  31. kNonEvtScId
  32. };
  33. // Flags used by cmScoreEvt_t.flags
  34. enum
  35. {
  36. kEvenScFl = 0x001, // This note is marked for evenness measurement
  37. kDynScFl = 0x002, // This note is marked for dynamics measurement
  38. kTempoScFl = 0x004, // This note is marked for tempo measurement
  39. kSkipScFl = 0x008, // This isn't a real event (e.g. tied note) skip over it
  40. kGraceScFl = 0x010, // This is a grace note
  41. kInvalidScFl = 0x020 // This note has a calculated time
  42. };
  43. // Id's used by cmScoreSet_t.varId and as indexes into
  44. // cmScoreSection_t.vars[].
  45. enum
  46. {
  47. kInvalidVarScId,
  48. kEvenVarScId,
  49. kDynVarScId,
  50. kTempoVarScId,
  51. kScVarCnt
  52. };
  53. struct cmScoreLoc_str;
  54. struct cmScoreSet_str;
  55. // The score can be divided into arbitrary non-overlapping sections.
  56. typedef struct
  57. {
  58. const cmChar_t* label; // section label
  59. unsigned index; // index of this record in the internal section array
  60. struct cmScoreLoc_str* locPtr; // location where this section starts
  61. unsigned begEvtIndex; // score element index where this section starts
  62. unsigned setCnt; // Count of elements in setArray[]
  63. struct cmScoreSet_str** setArray; // Ptrs to sets which are applied to this section.
  64. double vars[ kScVarCnt ]; // Set to DBL_MAX by default.
  65. } cmScoreSection_t;
  66. typedef struct
  67. {
  68. unsigned type; // Event type
  69. double secs; // Time location in seconds
  70. double durSecs; // Duration in seconds
  71. unsigned index; // Index of this event in the event array.
  72. unsigned locIdx; // Index of the location containing this event
  73. cmMidiByte_t pitch; // MIDI pitch of this note
  74. unsigned flags; // Attribute flags for this event
  75. unsigned dynVal; // Dynamcis value pppp to ffff (1 to 11) for this note.
  76. double frac; // Note's time value for tempo and non-grace evenness notes.
  77. unsigned barNumb; // Bar id of the measure containing this event.
  78. unsigned barNoteIdx; // Index of this note in this bar
  79. unsigned csvRowNumb; // File row number (not index) from which this record originated
  80. unsigned perfSmpIdx; // Time this event was performed or cmInvalidIdx if the event was not performed.
  81. unsigned perfVel; // Velocity of the performed note or 0 if the note was not performed.
  82. unsigned perfDynLvl; // Index into dynamic level ref. array assoc'd with perfVel
  83. unsigned line; // Line number of this event in the score file.
  84. } cmScoreEvt_t;
  85. typedef struct cmScoreSet_str
  86. {
  87. unsigned varId; // See kXXXVarScId flags above
  88. cmScoreEvt_t** eleArray; // Events that make up this set in time order
  89. unsigned eleCnt; //
  90. cmScoreSection_t** sectArray; // Sections this set will be applied to
  91. unsigned sectCnt; //
  92. unsigned* symArray; // symArray[sectCnt] - symbol name of all variables represented by this set (e.g '1a-e', '1b-e', '2-t', etc)
  93. unsigned* costSymArray; // costSymArray[sectCnt] - same as symbols in symArray[] with 'c' prepended to front
  94. bool doneFl;
  95. double value;
  96. struct cmScoreSet_str* llink; // cmScoreLoc_t setList link
  97. } cmScoreSet_t;
  98. typedef enum
  99. {
  100. kInvalidScMId,
  101. kRecdBegScMId,
  102. kRecdEndScMId,
  103. kFadeScMId,
  104. kPlayBegScMId,
  105. kPlayEndScMId
  106. } cmMarkScMId_t;
  107. // score markers
  108. typedef struct cmScoreMarker_str
  109. {
  110. cmMarkScMId_t markTypeId; // marker type
  111. unsigned labelSymId; // marker label
  112. struct cmScoreLoc_str* scoreLocPtr; // score location of the marker
  113. unsigned csvRowIdx; // score CSV file line assoc'd w/ this marker
  114. struct cmScoreMarker_str* link; // cmScoreLoc_t.markList links
  115. } cmScoreMarker_t;
  116. // All events which are simultaneous are collected into a single
  117. // cmScoreLoc_t record.
  118. typedef struct cmScoreLoc_str
  119. {
  120. unsigned index; // index of this location record
  121. double secs; // Time of this location
  122. unsigned evtCnt; // Count of events in evtArray[].
  123. cmScoreEvt_t** evtArray; // Events which occur at this time.
  124. unsigned barNumb; // Bar number this event is contained by.
  125. cmScoreSet_t* setList; // Set's which end on this time location (linked through cmScoreSet_t.llink)
  126. cmScoreSection_t* begSectPtr; // NULL if this location does not start a section
  127. cmScoreMarker_t* markList; // List of markers assigned to this location
  128. } cmScoreLoc_t;
  129. typedef void (*cmScCb_t)( void* arg, const void* data, unsigned byteCnt );
  130. typedef cmRC_t cmScRC_t;
  131. typedef cmHandle_t cmScH_t;
  132. extern cmScH_t cmScNullHandle;
  133. const cmChar_t* cmScEvtTypeIdToLabel( unsigned id );
  134. const cmChar_t* cmScDynIdToLabel( unsigned id );
  135. // Initialize a score object from a CSV File generated from a score spreadsheet.
  136. // The dynRefArray[dynRefCnt] and cbFunc(cbArg) are optional if these
  137. // features are not used.
  138. // If provided the dynRefArray[] is copied into an internal array.
  139. // The physical array passed here therefore does not need to remain valid.
  140. // Set 'srate' to zero if the score will not be used to perform measurement calculations.
  141. // The symbol table is only necessary if valid symbols are to be assigned to the cmScoreSet_t.symArray[].
  142. cmScRC_t cmScoreInitialize( cmCtx_t* ctx, cmScH_t* hp, const cmChar_t* fn, double srate, const unsigned* dynRefArray, unsigned dynRefCnt, cmScCb_t cbFunc, void* cbArg, cmSymTblH_t stH );
  143. cmScRC_t cmScoreFinalize( cmScH_t* hp );
  144. // Filename of last successfuly loaded score file.
  145. const cmChar_t* cmScoreFileName( cmScH_t h );
  146. // Sample rate as set in cmScoreInitialize()
  147. double cmScoreSampleRate( cmScH_t h );
  148. // Validate the score handle
  149. bool cmScoreIsValid( cmScH_t h );
  150. // Access the score data.
  151. unsigned cmScoreEvtCount( cmScH_t h );
  152. cmScoreEvt_t* cmScoreEvt( cmScH_t h, unsigned idx );
  153. // Given a bar number return the associated 'bar' event record.
  154. cmScoreEvt_t* cmScoreBarEvt( cmScH_t h, unsigned barNumb );
  155. // Access section records
  156. unsigned cmScoreSectionCount( cmScH_t h );
  157. cmScoreSection_t* cmScoreSection( cmScH_t h, unsigned idx );
  158. // Access the score location data
  159. unsigned cmScoreLocCount( cmScH_t h );
  160. cmScoreLoc_t* cmScoreLoc( cmScH_t h, unsigned idx );
  161. void cmScorePrintLoc( cmScH_t h );
  162. // Return the location associated with a given score event.
  163. cmScoreLoc_t* cmScoreEvtLoc( cmScH_t h, const cmScoreEvt_t* evt );
  164. // Return the count of sets.
  165. unsigned cmScoreSetCount( cmScH_t h );
  166. unsigned cmScoreMarkerLabelCount( cmScH_t h );
  167. unsigned cmScoreMarkerLabelSymbolId( cmScH_t h, unsigned idx );
  168. const cmScoreMarker_t* cmScoreMarker( cmScH_t h, cmMarkScMId_t markMId, unsigned labelSymId );
  169. // Make callbacks for all events in the score. The callbacks
  170. // contain cmScMsg_t records serialized as a byte stream.
  171. // Use cmScoreDecode() to convert the byte string to a
  172. // cmScMsg_t record.
  173. cmScRC_t cmScoreSeqNotify( cmScH_t h );
  174. void cmScoreClearPerfInfo( cmScH_t h );
  175. // Assign 'smpIdx' and 'vel' to the event matching 'pitch' at 'locIdx'
  176. // but do not trigger any variable calculations. Return true if as a
  177. // result of this call all events assigned to 'locIdx' have been received
  178. // otherwise return false.
  179. bool cmScoreSetPerfEvent( cmScH_t h, unsigned locIdx, unsigned smpIdx, unsigned pitch, unsigned vel );
  180. // Assign 'smpIdx' and 'vel' to the event matching 'pitch' at 'locIdx'
  181. // but and trigger any variable calculations which may happen on, or before, 'locIdx'.
  182. void cmScoreExecPerfEvent( cmScH_t h, unsigned locIdx, unsigned smpIdx, unsigned pitch, unsigned vel );
  183. // Assign 'value' to the section at, or before, 'locIdx'.
  184. void cmScoreSetPerfValue( cmScH_t h, unsigned locIdx, unsigned varId, double value );
  185. // Set the performed dynamic level of a score event.
  186. void cmScoreSetPerfDynLevel( cmScH_t h, unsigned evtIdx, unsigned dynLvl );
  187. typedef enum
  188. {
  189. kInvalidMsgScId,
  190. kBeginMsgScId,
  191. kEventMsgScId,
  192. kSectionMsgScId,
  193. kEndMsgScId,
  194. kVarMsgScId,
  195. kDynMsgScId
  196. } cmScMsgTypeId_t;
  197. typedef struct
  198. {
  199. unsigned varId; // see kXXXVarScId from cmScoreSet_t.varId
  200. double value; // value of a variable
  201. } cmScMeas_t;
  202. typedef struct
  203. {
  204. unsigned evtIdx;
  205. unsigned dynLvl;
  206. } cmScDyn_t;
  207. typedef struct
  208. {
  209. cmScMsgTypeId_t typeId;
  210. union
  211. {
  212. cmScoreEvt_t evt; // only used when typeId == kEventMsgScId
  213. cmScMeas_t meas; // only used when typeId == kVarMsgScId
  214. cmScoreSection_t sect; // only used when typeId == kSectionMsgScId
  215. cmScDyn_t dyn; // only used when typeId == kDynLvlMsgScId
  216. } u;
  217. } cmScMsg_t;
  218. // Decode a serialized cmScMsg_t from a byte stream as passed to the
  219. // cmScCb_t function.
  220. cmScRC_t cmScoreDecode( const void* msg, unsigned msgByteCnt, cmScMsg_t* );
  221. void cmScorePrint( cmScH_t h, cmRpt_t* rpt );
  222. // Generate a new score file from a MIDI file.
  223. cmScRC_t cmScoreFileFromMidi( cmCtx_t* ctx, const cmChar_t* midiFn, const cmChar_t* scoreFn );
  224. void cmScoreTest( cmCtx_t* ctx, const cmChar_t* fn );
  225. #ifdef __cplusplus
  226. }
  227. #endif
  228. #endif