libcm is a C development framework with an emphasis on audio signal processing applications.
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

cmXScore.c 110KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972
  1. #include "cmPrefix.h"
  2. #include "cmGlobal.h"
  3. #include "cmFloatTypes.h"
  4. #include "cmComplexTypes.h"
  5. #include "cmRpt.h"
  6. #include "cmErr.h"
  7. #include "cmCtx.h"
  8. #include "cmMem.h"
  9. #include "cmMallocDebug.h"
  10. #include "cmLinkedHeap.h"
  11. #include "cmXml.h"
  12. #include "cmText.h"
  13. #include "cmFileSys.h"
  14. #include "cmXScore.h"
  15. #include "cmTime.h"
  16. #include "cmMidi.h"
  17. #include "cmMidiFile.h"
  18. #include "cmLex.h"
  19. #include "cmCsv.h"
  20. #include "cmSymTbl.h"
  21. #include "cmScore.h"
  22. #include "cmFile.h"
  23. #include "cmSymTbl.h"
  24. #include "cmAudioFile.h"
  25. #include "cmAudioFile.h"
  26. #include "cmProcObj.h"
  27. #include "cmProcTemplate.h"
  28. #include "cmProc.h"
  29. #include "cmProc2.h"
  30. #include "cmProc5.h"
  31. #include "cmSvgWriter.h"
  32. cmXsH_t cmXsNullHandle = cmSTATIC_NULL_HANDLE;
  33. enum
  34. {
  35. kSectionXsFl = 0x00000001, // rvalue holds section number
  36. kBarXsFl = 0x00000002,
  37. kRestXsFl = 0x00000004,
  38. kGraceXsFl = 0x00000008,
  39. kDotXsFl = 0x00000010,
  40. kChordXsFl = 0x00000020,
  41. kDynXsFl = 0x00000040,
  42. kEvenXsFl = 0x00000080,
  43. kTempoXsFl = 0x00000100,
  44. kHeelXsFl = 0x00000200,
  45. kTieBegXsFl = 0x00000400,
  46. kTieEndXsFl = 0x00000800,
  47. kTieProcXsFl = 0x00001000,
  48. kDampDnXsFl = 0x00002000,
  49. kDampUpXsFl = 0x00004000,
  50. kDampUpDnXsFl = 0x00008000,
  51. kSostDnXsFl = 0x00010000,
  52. kSostUpXsFl = 0x00020000,
  53. kMetronomeXsFl = 0x00040000, // duration holds BPM
  54. kOnsetXsFl = 0x00080000, // this is a sounding note
  55. kBegGroupXsFl = 0x00100000,
  56. kEndGroupXsFl = 0x00200000,
  57. kBegGraceXsFl = 0x00400000, // (b) beg grace note group
  58. kEndGraceXsFl = 0x00800000, // end grace note group
  59. kAddGraceXsFl = 0x01000000, // (a) end grace note group operator flag - add time
  60. kSubGraceXsFl = 0x02000000, // (s) " " " " " " - subtract time
  61. kAFirstGraceXsFl = 0x04000000, // (A) add time after first note
  62. kNFirstGraceXsFl = 0x08000000, // (n) grace notes start as soon as possible after first note and add time
  63. kDeleteXsFl = 0x10000000,
  64. kDynBegForkXsFl = 0x20000000,
  65. kDynEndForkXsFl = 0x40000000
  66. };
  67. struct cmXsMeas_str;
  68. struct cmXsVoice_str;
  69. // Values measured for each sounding note in the preceding time window....
  70. typedef struct cmXsComplexity_str
  71. {
  72. unsigned sum_d_vel; // sum of first order difference of cmXsNote_t.dynamics
  73. unsigned sum_d_rym; // sum of first order difference of cmXsNote_t.rvalue
  74. unsigned sum_d_lpch; // sum of first order difference of cmXsNote_t.pitch of note assigned to the bass cleff
  75. unsigned sum_n_lpch; // count of notes assigned to the bass cleff
  76. unsigned sum_d_rpch; // sum of first order difference of cmXsNote_t.pitch of note assigned to the treble cleff
  77. unsigned sum_n_rpch; // count of notes assigned to the treble cleff
  78. } cmXsComplexity_t;
  79. typedef struct cmXsNote_str
  80. {
  81. unsigned uid; // unique id of this note record
  82. unsigned flags; // See k???XsFl
  83. unsigned pitch; // midi pitch
  84. unsigned dynamics; // dynamic level 1=pppp 9=fff
  85. unsigned vel; // score specified MIDI velocity
  86. cmChar_t step; // A-G
  87. unsigned octave; // sci pitch octave
  88. int alter; // +n=sharps,-n=flats
  89. unsigned staff; // 1=treble 2=bass
  90. unsigned tick; //
  91. unsigned duration; // duration in ticks
  92. unsigned tied_dur; // duration in ticks (including all tied notes)
  93. double secs; // absolute time in seconds
  94. double dsecs; // delta time in seconds since previous event
  95. unsigned locIdx; // location index (chords share the same location index)
  96. double rvalue; // 1/rvalue = rythmic value (1/0.5 double whole 1/1 whole 1/2 half 1/4=quarter note, 1/8=eighth note, ...)
  97. const cmChar_t* tvalue; // text value
  98. unsigned evenGroupId; // eveness group id
  99. unsigned dynGroupId; // dynamics group id
  100. unsigned tempoGroupId; // tempo group id
  101. unsigned graceGroupId; // grace note group id
  102. struct cmXsVoice_str* voice; // voice this note belongs to
  103. struct cmXsMeas_str* meas; // measure this note belongs to
  104. const cmXmlNode_t* xmlNode; // note xml ptr
  105. struct cmXsNote_str* tied; // subsequent note tied to this note
  106. struct cmXsNote_str* grace; // grace note groups link backward in time from the anchor note
  107. struct cmXsNote_str* mlink; // measure note list
  108. struct cmXsNote_str* slink; // time sorted event list
  109. cmXsComplexity_t cplx;
  110. } cmXsNote_t;
  111. typedef struct cmXsVoice_str
  112. {
  113. unsigned id; // Voice id
  114. cmXsNote_t* noteL; // List of notes in this voice
  115. struct cmXsVoice_str* link; // Link to other voices in this measure
  116. } cmXsVoice_t;
  117. typedef struct cmXsSpan_str
  118. {
  119. unsigned staff;
  120. unsigned number;
  121. struct cmXsMeas_str* meas;
  122. unsigned tick0;
  123. unsigned tick1;
  124. int pitch_offset;
  125. struct cmXsSpan_str* link;
  126. } cmXsSpan_t;
  127. typedef struct cmXsMeas_str
  128. {
  129. unsigned number; // Measure number
  130. unsigned divisions; // ticks-per-quarter-note
  131. unsigned beats; // beats per measure
  132. unsigned beat_type; // whole/half/quarter/eighth ...
  133. cmXsVoice_t* voiceL; // List of voices in this measure
  134. cmXsNote_t* noteL; // List of time sorted notes in this measure
  135. struct cmXsMeas_str* link; // Link to other measures in this part.
  136. } cmXsMeas_t;
  137. typedef struct cmXsPart_str
  138. {
  139. const cmChar_t* idStr; // Id of this part
  140. cmXsMeas_t* measL; // List of measures in this part.
  141. struct cmXsPart_str* link; // Link to other parts in this score
  142. } cmXsPart_t;
  143. typedef struct
  144. {
  145. cmErr_t err;
  146. cmXmlH_t xmlH;
  147. cmLHeapH_t lhH;
  148. cmXsPart_t* partL;
  149. cmCsvH_t csvH;
  150. cmXsSpan_t* spanL;
  151. unsigned nextUid;
  152. cmXsComplexity_t cplx_max;
  153. } cmXScore_t;
  154. void _cmXScoreReport( cmXScore_t* p, cmRpt_t* rpt, bool sortFl );
  155. cmXScore_t* _cmXScoreHandleToPtr( cmXsH_t h )
  156. {
  157. cmXScore_t* p = (cmXScore_t*)h.h;
  158. assert( p != NULL );
  159. return p;
  160. }
  161. cmXsRC_t _cmXScoreFinalize( cmXScore_t* p )
  162. {
  163. cmXsRC_t rc = kOkXsRC;
  164. // release the XML file
  165. cmXmlFree( &p->xmlH );
  166. // release the local linked heap memory
  167. cmLHeapDestroy(&p->lhH);
  168. // release the CSV output object
  169. cmCsvFinalize(&p->csvH);
  170. cmMemFree(p);
  171. return rc;
  172. }
  173. cmXsRC_t _cmXScoreMissingNode( cmXScore_t* p, const cmXmlNode_t* parent, const cmChar_t* label )
  174. {
  175. return cmErrMsg(&p->err,kSyntaxErrorXsRC,"Missing XML node '%s'. Parent line:%i",label,parent->line);
  176. }
  177. cmXsRC_t _cmXScoreMissingAttribute( cmXScore_t* p, const cmXmlNode_t* np, const cmChar_t* attrLabel )
  178. {
  179. return cmErrMsg(&p->err,kSyntaxErrorXsRC,"Missing XML attribute '%s' from node '%s'.",attrLabel,np->label);
  180. }
  181. cmXsVoice_t* _cmXScoreIdToVoice( cmXsMeas_t* meas, unsigned voiceId )
  182. {
  183. cmXsVoice_t* v = meas->voiceL;
  184. for(; v!=NULL; v=v->link)
  185. if( v->id == voiceId )
  186. return v;
  187. return NULL;
  188. }
  189. cmXsRC_t _cmXScorePushNote( cmXScore_t* p, cmXsMeas_t* meas, unsigned voiceId, cmXsNote_t* note )
  190. {
  191. cmXsVoice_t* v;
  192. // get the voice recd
  193. if((v = _cmXScoreIdToVoice(meas,voiceId)) == NULL)
  194. {
  195. // the voice recd doesn't exist for this voiceId - allocate one
  196. v = cmLhAllocZ(p->lhH,cmXsVoice_t,1);
  197. v->id = voiceId;
  198. // add the voice record to the meas->voiceL
  199. if( meas->voiceL == NULL )
  200. meas->voiceL = v;
  201. else
  202. {
  203. cmXsVoice_t* vp = meas->voiceL;
  204. while( vp->link!=NULL )
  205. vp = vp->link;
  206. vp->link = v;
  207. }
  208. }
  209. // add the note record to the end of meas->voiceL
  210. if( v->noteL == NULL )
  211. v->noteL = note;
  212. else
  213. {
  214. cmXsNote_t* n = v->noteL;
  215. while( n->mlink != NULL )
  216. n = n->mlink;
  217. n->mlink = note;
  218. }
  219. note->voice = v;
  220. note->uid = p->nextUid++;
  221. note->tied_dur = note->duration;
  222. return kOkXsRC;
  223. }
  224. void _cmXScoreRemoveNote( cmXsNote_t* note )
  225. {
  226. cmXsNote_t* n0 = NULL;
  227. cmXsNote_t* n1 = note->voice->noteL;
  228. for(; n1!=NULL; n1=n1->mlink)
  229. if( n1->uid == note->uid )
  230. {
  231. if( n0 == NULL )
  232. note->voice->noteL = NULL;
  233. else
  234. n0->mlink = n1->mlink;
  235. break;
  236. }
  237. n0 = NULL;
  238. n1 = note->meas->noteL;
  239. for(; n1!=NULL; n1=n1->slink)
  240. if( n1->uid == note->uid )
  241. {
  242. if( n0 == NULL )
  243. note->voice->noteL = NULL;
  244. else
  245. n0->slink = n1->slink;
  246. break;
  247. }
  248. }
  249. void _cmXScoreInsertNoteBefore( cmXsNote_t* note, cmXsNote_t* nn )
  250. {
  251. // insert the new note into the voice list before 'note'
  252. cmXsNote_t* n0 = NULL;
  253. cmXsNote_t* n1 = note->voice->noteL;
  254. for(; n1 != NULL; n1=n1->mlink )
  255. {
  256. if( n1->uid == note->uid )
  257. {
  258. if( n0 == NULL )
  259. note->voice->noteL = nn;
  260. else
  261. n0->mlink = nn;
  262. nn->mlink = note;
  263. break;
  264. }
  265. n0 = n1;
  266. }
  267. assert( n1 != NULL );
  268. // insert the new note into the time sorted note list before 'note'
  269. n0 = NULL;
  270. n1 = note->meas->noteL;
  271. for(; n1!=NULL; n1=n1->slink)
  272. {
  273. if( n1->tick >= nn->tick )
  274. {
  275. if( n0 == NULL )
  276. note->meas->noteL = nn;
  277. else
  278. n0->slink = nn;
  279. nn->slink = n1;
  280. break;
  281. }
  282. n0 = n1;
  283. }
  284. assert( n1 != NULL );
  285. }
  286. void _cmXScoreInsertNoteAfter( cmXsNote_t* note, cmXsNote_t* nn )
  287. {
  288. // insert the new note into the voice list after 'note'
  289. cmXsNote_t* n0 = note->voice->noteL;
  290. for(; n0 != NULL; n0=n0->mlink )
  291. if( n0->uid == note->uid )
  292. {
  293. nn->mlink = note->mlink;
  294. note->mlink = nn;
  295. break;
  296. }
  297. assert(n0 != NULL );
  298. // insert the new note into the time sorted note list after 'note'
  299. n0 = note->meas->noteL;
  300. for(; n0!=NULL; n0=n0->slink)
  301. {
  302. if( n0->tick >= nn->tick )
  303. {
  304. nn->slink = n0->slink;
  305. n0->slink = nn;
  306. break;
  307. }
  308. // if n0 is the last ele in the list
  309. if( n0->slink == NULL )
  310. {
  311. n0->slink = nn;
  312. nn->slink = NULL;
  313. break;
  314. }
  315. }
  316. assert(n0 != NULL);
  317. }
  318. cmXsRC_t _cmXScoreParsePartList( cmXScore_t* p )
  319. {
  320. cmXsRC_t rc = kOkXsRC;
  321. cmXsPart_t* lastPartPtr = NULL;
  322. const cmXmlNode_t* xnp;
  323. // find the 'part-list'
  324. if((xnp = cmXmlSearch( cmXmlRoot(p->xmlH), "part-list", NULL, 0)) == NULL )
  325. return _cmXScoreMissingNode(p,cmXmlRoot(p->xmlH),"part-list");
  326. const cmXmlNode_t* cnp = xnp->children;
  327. // for each child of the 'part-list'
  328. for(; cnp!=NULL; cnp=cnp->sibling)
  329. if( cmTextCmp( cnp->label, "score-part" ) == 0 )
  330. {
  331. const cmXmlAttr_t* a;
  332. // find the 'score-part' id
  333. if((a = cmXmlFindAttrib(cnp,"id")) == NULL )
  334. return _cmXScoreMissingAttribute(p,cnp,"id");
  335. // allocate a new part record
  336. cmXsPart_t* pp = cmLhAllocZ(p->lhH,cmXsPart_t,1);
  337. pp->idStr = a->value; // set the part id
  338. // link the new part record to the end of the part list
  339. if(lastPartPtr == NULL)
  340. p->partL = pp;
  341. else
  342. lastPartPtr->link = pp;
  343. lastPartPtr = pp;
  344. }
  345. return rc;
  346. }
  347. cmXsRC_t _cmXScoreParsePitch( cmXScore_t* p, const cmXmlNode_t* nnp, cmXsNote_t* np )
  348. {
  349. cmXsRC_t rc = kOkXsRC;
  350. unsigned octave = 0;
  351. double alter = 0;
  352. const cmChar_t* step = NULL;
  353. if((step = cmXmlNodeValue(nnp,"pitch","step",NULL)) == NULL )
  354. return _cmXScoreMissingNode(p,nnp,"step");
  355. if((rc = cmXmlNodeUInt( nnp,&octave,"pitch","octave",NULL)) != kOkXmlRC )
  356. return _cmXScoreMissingNode(p,nnp,"octave");
  357. cmXmlNodeDouble( nnp,&alter,"pitch","alter",NULL);
  358. int acc = alter;
  359. unsigned midi = cmSciPitchToMidiPitch(*step,acc,octave);
  360. np->pitch = midi;
  361. np->step = *step;
  362. np->octave = octave;
  363. np->alter = alter;
  364. np->flags |= kOnsetXsFl;
  365. return rc;
  366. }
  367. cmXsRC_t _cmXScoreParseNoteRValue( cmXScore_t* p, const cmXmlNode_t* nnp, const cmChar_t* label, double* rvalueRef )
  368. {
  369. typedef struct map_str
  370. {
  371. double rvalue;
  372. const cmChar_t* label;
  373. } map_t;
  374. map_t mapV[] =
  375. {
  376. {-1.0, "measure" }, // whole measure rest
  377. { 0.5, "breve" }, // double whole
  378. { 1.0, "whole" },
  379. { 2.0, "half" },
  380. { 4.0, "quarter" },
  381. { 8.0, "eighth" },
  382. {16.0, "16th" },
  383. {32.0, "32nd" },
  384. { 64.0, "64th" },
  385. {128.0, "128th" },
  386. { 0.0, "" }
  387. };
  388. const cmChar_t* str;
  389. // get the XML rvalue label
  390. if((str = cmXmlNodeValue(nnp,label,NULL)) == NULL)
  391. {
  392. if((nnp = cmXmlSearch(nnp,"rest",NULL,0)) != NULL )
  393. {
  394. const cmXmlAttr_t* a;
  395. if((a = cmXmlFindAttrib(nnp,"measure")) != NULL && cmTextCmp(a->value,"yes")==0)
  396. {
  397. *rvalueRef = -1;
  398. return kOkXsRC;
  399. }
  400. }
  401. return cmErrMsg(&p->err,kSyntaxErrorXsRC,"The 'beat-unit' metronome value is missing on line %i.",nnp->line);
  402. }
  403. unsigned i;
  404. // lookup the rvalue numeric value from the mapV[] table
  405. for(i=0; mapV[i].rvalue!=0; ++i)
  406. if( cmTextCmp(mapV[i].label,str) == 0 )
  407. {
  408. *rvalueRef = mapV[i].rvalue;
  409. return kOkXsRC;
  410. }
  411. // the rvalue label was not found
  412. return cmErrMsg(&p->err,kSyntaxErrorXsRC,"Unknown rvalue type='%s'.",str);
  413. }
  414. cmXsRC_t _cmXScoreParseColor( cmXScore_t* p, const cmXmlNode_t* nnp, cmXsNote_t* note )
  415. {
  416. cmXsRC_t rc = kOkXsRC;
  417. const cmXmlAttr_t* a;
  418. typedef struct map_str
  419. {
  420. unsigned value;
  421. const cmChar_t* label;
  422. } map_t;
  423. map_t mapV[] =
  424. {
  425. { kEvenXsFl, "#0000FF" }, // blue (even)
  426. { kTempoXsFl, "#00FF00" }, // green (tempo)
  427. { kDynXsFl, "#FF0000" }, // red (dynamics)
  428. { kTempoXsFl | kEvenXsFl, "#00FFFF" }, // green + blue (turquoise)
  429. { kDynXsFl | kEvenXsFl, "#FF00FF" }, // red + blue
  430. { kDynXsFl | kEvenXsFl, "#FF0CF7" }, // magenta (even+dyn)
  431. { kDynXsFl | kTempoXsFl, "#FF7F00" }, // red + green (brown)
  432. { kTempoXsFl | kEvenXsFl | kDynXsFl, "#996633" }, // (purple)
  433. { kDynXsFl, "#FF6A03" }, // 176 orange (dynamics)
  434. { kEvenXsFl, "#2F00E8" }, // 1001 blue (even)
  435. { kTempoXsFl, "#01CD1F" }, // 1196 green (tempo)
  436. { kEvenXsFl, "#3600E8" }, // 1627 blue (even)
  437. { kDynXsFl | kTempoXsFl, "#9E8F15" }, // 8827 brown (dyn + tempo)
  438. { kEvenXsFl, "#2E00E6" }, // 5393 blue (even)
  439. { kEvenXsFl, "#2C00DD" }, // 5895 blue (even)
  440. { kDynXsFl, "#FF5B03" }, // 6498 orange (dyn)
  441. { kDynXsFl, "#FF6104" }, // 6896 orange
  442. { kEvenXsFl, "#2A00E6" }, // 7781 blue
  443. { kEvenXsFl, "#2300DD" }, // 8300 blue (even)
  444. { kTempoXsFl, "#03CD22" }, // 10820 green (tempo)
  445. { kEvenXsFl, "#3400DB" }, // 11627 blue (dyn)
  446. { -1, "" }
  447. };
  448. /*
  449. orange #FF6A03
  450. magenta #FF0CF7
  451. blue #2F00E8
  452. green #01CD1F
  453. gold #9E8F15
  454. green #03CD22
  455. */
  456. if((a = cmXmlFindAttrib(nnp, "color" )) != NULL )
  457. {
  458. unsigned i;
  459. for(i=0; mapV[i].value != -1; ++i)
  460. if( cmTextCmp(a->value,mapV[i].label) == 0 )
  461. {
  462. note->flags += mapV[i].value;
  463. break;
  464. }
  465. if( mapV[i].value == -1 )
  466. cmErrMsg(&p->err,kSyntaxErrorXsRC,"The note color '%s' was not found on line %i.",a->value,nnp->line);
  467. }
  468. return rc;
  469. }
  470. // On input tick0Ref is set to the tick of the previous event.
  471. // On input tickRef is set to the tick of this event.
  472. // On output tick0Ref is set to the tick of this event.
  473. // On output tickRef is set to the tick of the next event.
  474. cmXsRC_t _cmXScoreParseNote(cmXScore_t* p, cmXsMeas_t* meas, const cmXmlNode_t* nnp, unsigned* tick0Ref, unsigned* tickRef )
  475. {
  476. cmXsRC_t rc = kOkXsRC;
  477. cmXsNote_t* note = cmLhAllocZ(p->lhH,cmXsNote_t,1);
  478. unsigned voiceId;
  479. note->meas = meas;
  480. note->xmlNode = nnp;
  481. // get the voice id for this node
  482. if( cmXmlNodeUInt(nnp,&voiceId,"voice",NULL) != kOkXmlRC )
  483. return _cmXScoreMissingNode(p,nnp,"voice");
  484. // if this note has a pitch
  485. if( cmXmlNodeHasChild(nnp,"pitch",NULL) )
  486. if((rc = _cmXScoreParsePitch(p,nnp,note)) != kOkXsRC )
  487. return rc;
  488. cmXmlNodeUInt(nnp,&note->duration,"duration",NULL); // get the note duration
  489. cmXmlNodeUInt(nnp,&note->staff,"staff",NULL); // get th staff number
  490. // is 'rest'
  491. if( cmXmlNodeHasChild(nnp,"rest",NULL) )
  492. note->flags |= kRestXsFl;
  493. // is 'grace'
  494. if( cmXmlNodeHasChild(nnp,"grace",NULL) )
  495. note->flags |= kGraceXsFl;
  496. // is 'dot'
  497. if( cmXmlNodeHasChild(nnp,"dot",NULL) )
  498. note->flags |= kDotXsFl;
  499. // is 'chord'
  500. if( cmXmlNodeHasChild(nnp,"chord",NULL) )
  501. note->flags |= kChordXsFl;
  502. // is this is first note in a tied pair
  503. if( cmXmlNodeHasChildWithAttrAndValue(nnp,"tie","type","start",NULL) )
  504. note->flags |= kTieBegXsFl;
  505. // is this is second note in a tied pair
  506. if( cmXmlNodeHasChildWithAttrAndValue(nnp,"tie","type","stop",NULL) )
  507. note->flags |= kTieEndXsFl;
  508. // has 'heel' mark
  509. if( cmXmlNodeHasChild(nnp,"notations","technical","heel",NULL) )
  510. note->flags |= kHeelXsFl;
  511. // set color coded flags
  512. if((rc = _cmXScoreParseColor(p, nnp, note )) != kOkXsRC )
  513. return rc;
  514. // get the note's rythmic value
  515. if((rc = _cmXScoreParseNoteRValue(p,nnp,"type",&note->rvalue)) != kOkXsRC )
  516. return rc;
  517. // if this is a chord note
  518. if( cmIsFlag(note->flags,kChordXsFl) )
  519. {
  520. note->tick = *tick0Ref; // then use the onset time from the previous note and do not advance time
  521. }
  522. else
  523. {
  524. *tick0Ref = *tickRef;
  525. note->tick = *tickRef;
  526. *tickRef += note->duration;
  527. }
  528. return _cmXScorePushNote(p, meas, voiceId, note );
  529. }
  530. cmXsRC_t _cmXScorePushNonNote( cmXScore_t* p, cmXsMeas_t* meas, const cmXmlNode_t* noteXmlNode, unsigned tick, unsigned duration, double rvalue, const cmChar_t* tvalue, unsigned flags )
  531. {
  532. cmXsNote_t* note = cmLhAllocZ(p->lhH,cmXsNote_t,1);
  533. unsigned voiceId = 0; // non-note's are always assigned to voiceId=0;
  534. note->tick = tick;
  535. note->flags = flags;
  536. note->rvalue = rvalue;
  537. note->tvalue = tvalue;
  538. note->duration = duration;
  539. note->tied_dur = duration;
  540. note->meas = meas;
  541. note->xmlNode = noteXmlNode;
  542. return _cmXScorePushNote(p, meas, voiceId, note );
  543. }
  544. cmXsSpan_t* _cmXScoreFindOpenOctaveShift( cmXScore_t* p, unsigned staff, unsigned number )
  545. {
  546. cmXsSpan_t* s = p->spanL;
  547. for(; s!=NULL; s=s->link)
  548. if( s->tick1 == -1 && s->staff == staff && s->number == number )
  549. return s;
  550. return NULL;
  551. }
  552. cmXsRC_t _cmXScorePushOctaveShift(cmXScore_t* p, cmXsMeas_t* meas, unsigned staff, unsigned span_number, const cmChar_t* type_str, unsigned tick)
  553. {
  554. assert( meas != NULL);
  555. cmXsSpan_t* s;
  556. if( cmTextCmp(type_str,"stop") == 0 )
  557. {
  558. if((s = _cmXScoreFindOpenOctaveShift(p,staff,span_number)) == NULL )
  559. return cmErrWarnMsg(&p->err,kUnterminatedOctaveShiftXsrRC,"An illegal octave shift was encounted in meas %i.\n",meas->number);
  560. s->tick1 = tick;
  561. }
  562. else
  563. {
  564. s = cmLhAllocZ(p->lhH,cmXsSpan_t,1);
  565. s->staff = staff;
  566. s->meas = meas;
  567. s->number = span_number;
  568. s->tick0 = tick;
  569. s->tick1 = -1;
  570. s->pitch_offset = cmTextCmp(type_str,"up")==0 ? -12 : 12;
  571. s->link = p->spanL;
  572. p->spanL = s;
  573. }
  574. return kOkXsRC;
  575. }
  576. cmXsRC_t _cmXScoreParseDirection(cmXScore_t* p, cmXsMeas_t* meas, const cmXmlNode_t* dnp, unsigned tick)
  577. {
  578. cmXsRC_t rc = kOkXsRC;
  579. const cmXmlNode_t* np = NULL;
  580. const cmXmlAttr_t* a = NULL;
  581. unsigned flags = 0;
  582. int offset = 0;
  583. double rvalue = 0;
  584. const cmChar_t* tvalue = NULL;
  585. unsigned duration = 0;
  586. bool pushFl = true;
  587. unsigned staff = 0;
  588. cmXmlNodeInt( dnp, &offset, "offset", NULL );
  589. cmXmlNodeUInt(dnp, &staff, "staff", NULL );
  590. // if this is a metronome direction
  591. if((np = cmXmlSearch( dnp, "metronome", NULL, 0)) != NULL )
  592. {
  593. if( cmXmlNodeUInt(np,&duration,"per-minute",NULL) != kOkXmlRC )
  594. return cmErrMsg(&p->err,kSyntaxErrorXsRC,"The 'per-minute' metronome value is missing on line %i.",np->line);
  595. if((rc = _cmXScoreParseNoteRValue(p,np,"beat-unit",&rvalue)) != kOkXsRC )
  596. return rc;
  597. flags = kMetronomeXsFl;
  598. }
  599. else
  600. // if this is a pedal direction
  601. if((np = cmXmlSearch( dnp, "pedal",NULL,0)) != NULL )
  602. {
  603. if((a = cmXmlFindAttrib(np,"type")) == NULL )
  604. return _cmXScoreMissingAttribute(p, np, "type" );
  605. if( cmTextCmp(a->value,"start") == 0 )
  606. flags = kDampDnXsFl;
  607. else
  608. if( cmTextCmp(a->value,"change") == 0 )
  609. flags = kDampUpDnXsFl;
  610. else
  611. if( cmTextCmp(a->value,"stop") == 0 )
  612. flags = kDampUpXsFl;
  613. else
  614. return cmErrMsg(&p->err,kSyntaxErrorXsRC,"Unrecognized pedal type:'%s'.",cmStringNullGuard(a->value));
  615. }
  616. else
  617. // if this is a 'words' direction
  618. if((np = cmXmlSearch( dnp, "words", NULL, 0)) != NULL )
  619. {
  620. if((a = cmXmlFindAttrib(np,"enclosure")) != NULL && cmTextCmp(a->value,"rectangle")==0 )
  621. {
  622. if( cmTextIsEmpty( tvalue = np->dataStr ) )
  623. return cmErrMsg(&p->err,kSyntaxErrorXsRC,"Section number is blank or missing on line %i.",np->line);
  624. flags = kSectionXsFl;
  625. }
  626. }
  627. else
  628. // if this is an 'octave-shift' direction
  629. if((np = cmXmlSearch( dnp, "octave-shift", NULL, 0)) != NULL )
  630. {
  631. unsigned span_number = -1;
  632. if( cmXmlAttrUInt(np,"number",&span_number) != kOkXmlRC )
  633. return cmErrMsg(&p->err,kSyntaxErrorXsRC,"Octave-shift is missing a 'number' attribute.");
  634. if((a = cmXmlFindAttrib(np,"type")) == NULL)
  635. return cmErrMsg(&p->err,kSyntaxErrorXsRC,"Octave-shift is missing a 'type' attribute.");
  636. rc = _cmXScorePushOctaveShift(p,meas,staff,span_number,a->value,tick+offset);
  637. pushFl = false;
  638. }
  639. else
  640. {
  641. pushFl = false;
  642. }
  643. if( pushFl )
  644. rc = _cmXScorePushNonNote(p,meas,dnp,tick+offset,duration,rvalue,tvalue,flags);
  645. return rc;
  646. }
  647. // On input tickRef is set to the absolute tick of the bar line and on output it is set
  648. // to the absolute tick of the next bar line.
  649. cmXsRC_t _cmXScoreParseMeasure(cmXScore_t* p, cmXsPart_t* pp, const cmXmlNode_t* mnp, unsigned* tickRef)
  650. {
  651. cmXsRC_t rc = kOkXsRC;
  652. const cmXmlNode_t* np = NULL;
  653. unsigned tick = *tickRef;
  654. unsigned tick0= 0;
  655. cmXsMeas_t* m = NULL;
  656. // allocate the 'measure' record
  657. cmXsMeas_t* meas = cmLhAllocZ(p->lhH,cmXsMeas_t,1);
  658. // get measure number
  659. if( cmXmlAttrUInt(mnp,"number", &meas->number) != kOkXmlRC )
  660. return _cmXScoreMissingAttribute(p,mnp,"number");
  661. if( pp->measL == NULL )
  662. pp->measL = meas;
  663. else
  664. {
  665. m = pp->measL;
  666. while( m->link != NULL )
  667. m = m->link;
  668. m->link = meas;
  669. meas->divisions = m->divisions;
  670. meas->beats = m->beats;
  671. meas->beat_type = m->beat_type;
  672. }
  673. // get measure attributes node
  674. if((np = cmXmlSearch(mnp,"attributes",NULL,0)) != NULL)
  675. {
  676. cmXmlNodeUInt(np,&meas->divisions,"divisions",NULL);
  677. cmXmlNodeUInt(np,&meas->beats, "time","beats",NULL);
  678. cmXmlNodeUInt(np,&meas->beat_type,"time","beat-type",NULL);
  679. }
  680. // store the bar line
  681. if((rc = _cmXScorePushNonNote(p,meas,mnp,tick,0,0,NULL,kBarXsFl)) != kOkXsRC )
  682. return rc;
  683. np = mnp->children;
  684. // for each child of the 'meas' XML node
  685. for(; rc==kOkXsRC && np!=NULL; np=np->sibling)
  686. {
  687. // if this is a 'note' node
  688. if( cmTextCmp(np->label,"note") == 0 )
  689. {
  690. rc = _cmXScoreParseNote(p,meas,np,&tick0,&tick);
  691. }
  692. else
  693. // if this is a 'backup' node
  694. if( cmTextCmp(np->label,"backup") == 0 )
  695. {
  696. unsigned backup;
  697. cmXmlNodeUInt(np,&backup,"duration",NULL);
  698. if( backup > tick )
  699. tick = 0;
  700. else
  701. tick -= backup;
  702. tick0 = tick;
  703. }
  704. else
  705. // if this is a 'direction' node
  706. if( cmTextCmp(np->label,"direction") == 0 )
  707. {
  708. rc = _cmXScoreParseDirection(p,meas,np,tick);
  709. }
  710. }
  711. *tickRef = tick;
  712. return rc;
  713. }
  714. cmXsRC_t _cmXScoreParsePart( cmXScore_t* p, cmXsPart_t* pp )
  715. {
  716. cmXsRC_t rc = kOkXsRC;
  717. const cmXmlNode_t* xnp;
  718. cmXmlAttr_t partAttr = { "id", pp->idStr };
  719. unsigned barTick = 0;
  720. // find the 'part'
  721. if((xnp = cmXmlSearch( cmXmlRoot(p->xmlH), "part", &partAttr, 1)) == NULL )
  722. return cmErrMsg(&p->err,kSyntaxErrorXsRC,"The part '%s' was not found.",pp->idStr);
  723. // for each child of this part - find each measure
  724. const cmXmlNode_t* cnp = xnp->children;
  725. for(; cnp!=NULL; cnp=cnp->sibling)
  726. if( cmTextCmp(cnp->label,"measure") == 0 )
  727. if((rc = _cmXScoreParseMeasure(p,pp,cnp,&barTick)) != kOkXsRC )
  728. return rc;
  729. return rc;
  730. }
  731. // Insert note 'np' into the sorted note list based at 's0'.
  732. // Return a pointer to the base of the list after the insertion.
  733. cmXsNote_t* _cmXScoreInsertSortedNote( cmXsNote_t* s0, cmXsNote_t* np )
  734. {
  735. assert( np != NULL );
  736. // np->slink is not NULL if the list is being resorted
  737. np->slink = NULL;
  738. // this list is empty so np is the first element on the list
  739. if( s0 == NULL )
  740. return np;
  741. // np is before the first element on the list
  742. if( np->tick < s0->tick )
  743. {
  744. np->slink = s0;
  745. return np;
  746. }
  747. cmXsNote_t* s1 = s0;
  748. cmXsNote_t* s2 = s0->slink;
  749. while( s2 != NULL )
  750. {
  751. if( s2->tick > np->tick )
  752. {
  753. s1->slink = np;
  754. np->slink = s2;
  755. return s0;
  756. }
  757. s1 = s2;
  758. s2 = s2->slink;
  759. }
  760. s1->slink = np;
  761. return s0;
  762. }
  763. // Set the cmXsNode_t.secs and dsecs.
  764. void _cmXScoreSetAbsoluteTime( cmXScore_t* p )
  765. {
  766. double tpqn = 0; // ticks per quarter note
  767. double tps = 0; // ticks per second
  768. unsigned metro_tick = 0;
  769. double metro_sec = 0;
  770. double sec0 = 0;
  771. cmXsPart_t* pp = p->partL;
  772. for(; pp!=NULL; pp=pp->link)
  773. {
  774. cmXsMeas_t* mp = pp->measL;
  775. for(; mp!=NULL; mp=mp->link)
  776. {
  777. if( mp->divisions != 0 )
  778. tpqn = mp->divisions;
  779. cmXsNote_t* np = mp->noteL;
  780. for(; np!=NULL; np=np->slink)
  781. {
  782. // Seconds are calculated as:
  783. // dticks = np->tick - metro_tick; // where metro_tick is the absolute tick of the last metro event
  784. // secs = (dticks/tps) + metro_secs; // where metro_secs is the absoute time of the last metro event
  785. unsigned dticks = np->tick - metro_tick;
  786. double secs = tps==0 ? 0 : (dticks/tps) + metro_sec;
  787. double dsecs = secs - sec0;
  788. //
  789. if( cmIsFlag(np->flags,kMetronomeXsFl) )
  790. {
  791. double bpm = np->duration; // beats per minute
  792. double bps = bpm / 60.0; // beats per second
  793. tps = bps * tpqn; // ticks per second
  794. metro_tick = np->tick; // store tick of the last metronome marker
  795. metro_sec = secs; // store time of the last metronome marker
  796. }
  797. if( cmIsFlag(np->flags,kBarXsFl|kDampDnXsFl|kDampUpXsFl|kDampUpDnXsFl|kSostDnXsFl|kSostUpXsFl|kOnsetXsFl|kSectionXsFl) )
  798. {
  799. np->secs = secs;
  800. np->dsecs = dsecs;
  801. sec0 = secs;
  802. }
  803. }
  804. }
  805. }
  806. }
  807. void _cmXScoreSort( cmXScore_t* p )
  808. {
  809. // for each part
  810. cmXsPart_t* pp = p->partL;
  811. for(; pp!=NULL; pp=pp->link)
  812. {
  813. // for each measure in this part
  814. cmXsMeas_t* mp = pp->measL;
  815. for(; mp!=NULL; mp=mp->link)
  816. {
  817. // explicitely set noteL to NULL to in case we are re-sorting
  818. mp->noteL = NULL;
  819. // for each voice in this measure
  820. cmXsVoice_t* vp = mp->voiceL;
  821. for(; vp!=NULL; vp=vp->link)
  822. {
  823. // for each note in this measure
  824. cmXsNote_t* np = vp->noteL;
  825. for(; np!=NULL; np=np->mlink)
  826. mp->noteL = _cmXScoreInsertSortedNote(mp->noteL,np);
  827. }
  828. }
  829. }
  830. // The order of events may have changed update the absolute time.
  831. _cmXScoreSetAbsoluteTime( p );
  832. }
  833. // All notes in a[aN] are on the same tick
  834. unsigned _cmXsSpreadGraceNotes( cmXsNote_t** a, unsigned aN )
  835. {
  836. unsigned i;
  837. bool barFl = false;
  838. // set barFl to true if a bar marker is included in the notes
  839. for(i=0; i<aN; ++i)
  840. if( cmIsFlag(a[i]->flags,kBarXsFl) )
  841. barFl = true;
  842. // spread any grace notes by one tick
  843. unsigned nextGraceTick = UINT_MAX;
  844. for(i=0; i<aN; ++i)
  845. if( cmIsFlag(a[i]->flags,kGraceXsFl) )
  846. {
  847. if( nextGraceTick == UINT_MAX )
  848. nextGraceTick = a[i]->tick + 1;
  849. else
  850. {
  851. a[i]->tick = nextGraceTick;
  852. nextGraceTick += 1;
  853. }
  854. }
  855. // if this tick group includes the bar ...
  856. if( barFl && nextGraceTick != UINT_MAX )
  857. {
  858. // ... then move all non-grace note events (except the bar marker) after
  859. // the grace notes
  860. for(i=0; i<aN; ++i)
  861. if( cmIsNotFlag(a[i]->flags,kGraceXsFl) && cmIsNotFlag(a[i]->flags,kBarXsFl) )
  862. a[i]->tick = nextGraceTick;
  863. }
  864. return nextGraceTick==UINT_MAX ? 0 : nextGraceTick;
  865. }
  866. void _cmXScoreSpreadGraceNotes( cmXScore_t* p )
  867. {
  868. cmXsPart_t* pp = p->partL;
  869. for(; pp!=NULL; pp=pp->link)
  870. {
  871. // tick1 is the location of the minimum current tick
  872. // (or 0 if it should be ignored)
  873. unsigned tick1 = 0;
  874. cmXsMeas_t* mp = pp->measL;
  875. for(; mp!=NULL; mp=mp->link)
  876. {
  877. cmXsNote_t* np = mp->noteL;
  878. unsigned aN = 128;
  879. cmXsNote_t* a[ aN ];
  880. unsigned ai = 0;
  881. // The first event in a measure may have been forced ahead
  882. // by spreading at the end of the previous measure
  883. if( tick1 > np->tick )
  884. np->tick = tick1;
  885. else
  886. tick1 = 0;
  887. // tick0 is the tick of the current tick group we are examining
  888. // A tick group is a group of events that share the same tick.
  889. unsigned tick0 = np->tick;
  890. // for each note
  891. for(; np!=NULL; np=np->slink)
  892. {
  893. // if this event is the first of a new tick group (then a[] holds a group completed on the previous note)
  894. if( np->tick != tick0 )
  895. {
  896. // if there is more than one event in the completed tick group ...
  897. if( ai > 1 )
  898. tick1 = _cmXsSpreadGraceNotes(a,ai); // ... then process the group
  899. ai = 0; // empty the tick group array
  900. tick0 = np->tick; // update the current group's common tick
  901. }
  902. // if the min. current tick is ahead of this event then move the event ahead
  903. if( tick1 > np->tick )
  904. np->tick = tick1;
  905. else
  906. tick1 = 0; // otherwise disable tick1
  907. // add this event to the tick group
  908. assert(ai<aN);
  909. a[ai++] = np;
  910. }
  911. // if there are events in the group array then process them
  912. if( ai > 1 )
  913. tick1 = _cmXsSpreadGraceNotes(a,ai);
  914. }
  915. }
  916. }
  917. bool _cmXScoreFindTiedNote( cmXScore_t* p, cmXsMeas_t* mp, cmXsNote_t* n0p, bool rptFl )
  918. {
  919. cmXsNote_t* nbp = n0p;
  920. cmXsNote_t* nnp = n0p->slink; // begin w/ note following np
  921. unsigned measNumb = mp->number;
  922. cmChar_t acc = n0p->alter==-1?'b' : (n0p->alter==1?'#':' ');
  923. if( rptFl )
  924. printf("%i %i %s ",n0p->meas->number,n0p->tick,cmMidiToSciPitch(n0p->pitch,NULL,0));
  925. while(1)
  926. {
  927. // if we are at the end of a measure advance to the next measure
  928. if( nnp == NULL )
  929. {
  930. mp = mp->link;
  931. nnp = mp->noteL;
  932. // if a measure was completed and no end note was found ... then the tie is unterminated
  933. // (a tie must be continued in every measure which it passes through)
  934. if( mp->number > measNumb + 1 )
  935. break;
  936. }
  937. // for each note starting at nnp
  938. for(; nnp!=NULL; nnp=nnp->slink)
  939. {
  940. // if this note is tied to the originating note (np)
  941. if( nnp->voice->id == n0p->voice->id && nnp->step == n0p->step && nnp->octave == n0p->octave )
  942. {
  943. nnp->flags |= kTieProcXsFl;
  944. nnp->flags = cmClrFlag(nnp->flags,kOnsetXsFl);
  945. n0p->tied = nnp;
  946. nbp->tied_dur += nnp->duration;
  947. nnp->tied_dur = 0;
  948. if( rptFl )
  949. printf("---> %i %i %s ",nnp->meas->number,nnp->tick,cmMidiToSciPitch(nnp->pitch,NULL,0));
  950. // if this note is not tied to a subsequent note
  951. if( cmIsNotFlag(nnp->flags,kTieBegXsFl) )
  952. return true;
  953. n0p = nnp;
  954. // record the measure number of the last note with a tie-start
  955. measNumb = mp->number;
  956. }
  957. }
  958. }
  959. cmErrWarnMsg(&p->err,kUnterminatedTieXsRC,"The tied %c%c%i in measure %i (tick:%i) was not terminated.",n0p->step,acc,n0p->octave,measNumb,n0p->tick);
  960. return false;
  961. }
  962. void _cmXScoreResolveTiesAndLoc( cmXScore_t* p )
  963. {
  964. unsigned n = 0; // count of notes which begin a tie
  965. unsigned m = 0; // count of tied notes that are correctly terminated.
  966. bool rptFl = false;
  967. cmXsPart_t* pp = p->partL;
  968. // for each part
  969. for(; pp!=NULL; pp=pp->link)
  970. {
  971. unsigned locIdx = 1;
  972. cmXsMeas_t* mp = pp->measL;
  973. // for each measure
  974. for(; mp!=NULL; mp=mp->link)
  975. {
  976. cmXsNote_t* n0 = NULL;
  977. cmXsNote_t* np = mp->noteL;
  978. // for each note in this measure
  979. for(; np!=NULL; np=np->slink)
  980. {
  981. // if this note begins a tie and has not yet been processed
  982. // (A note that continues a tie and therefore has a kTieBegXsFl set
  983. // may have already been processed by an earlier tied note.)
  984. if( cmIsFlag(np->flags,kTieBegXsFl) && cmIsNotFlag(np->flags,kTieProcXsFl))
  985. {
  986. if( _cmXScoreFindTiedNote(p,mp,np,rptFl) )
  987. m += 1;
  988. if( rptFl )
  989. printf("\n");
  990. n += 1;
  991. }
  992. // Validate the tie state of the current note.
  993. if( cmIsFlag(np->flags,kTieEndXsFl) && cmIsFlag(np->flags,kOnsetXsFl) )
  994. {
  995. cmChar_t acc = np->alter==-1?'b' : (np->alter==1?'#':' ');
  996. cmErrWarnMsg(&p->err,kUnterminatedTieXsRC,"The tied %c%c%i in measure %i marked as a tied note but is also marked to sound.",np->step,acc,np->octave,mp->number);
  997. }
  998. //
  999. // Set the score location of notes marked for onset and bar lines.
  1000. //
  1001. if( cmIsFlag(np->flags,kOnsetXsFl|kBarXsFl) )
  1002. {
  1003. // if this note does not share the same location as the previous 'located' note then increment the 'loc' index
  1004. if( cmIsFlag(np->flags,kBarXsFl) || (n0!=NULL && n0->tick!=np->tick))
  1005. locIdx += 1;
  1006. np->locIdx = locIdx;
  1007. n0 = np;
  1008. }
  1009. }
  1010. }
  1011. }
  1012. printf("Tied notes found:%i Not found:%i\n",m,n-m);
  1013. }
  1014. cmXsRC_t _cmXScoreResolveOctaveShift( cmXScore_t* p )
  1015. {
  1016. const cmXsSpan_t* s;
  1017. for(s=p->spanL; s!=NULL; s=s->link)
  1018. {
  1019. if( s->tick1 == -1)
  1020. {
  1021. cmErrWarnMsg(&p->err,kSyntaxErrorXsRC,"An unterminated octave shift span was encountered in measure %i staff=%i.",s->meas->number,s->staff);
  1022. }
  1023. else
  1024. {
  1025. cmXsMeas_t* m = p->partL->measL;
  1026. for(; m!=NULL; m=m->link)
  1027. if( m->number == s->meas->number )
  1028. break;
  1029. assert( m != NULL );
  1030. cmXsNote_t* note = m->noteL;
  1031. for(; note!=NULL; note=note->slink)
  1032. if( note->staff==s->staff && s->tick0 <= note->tick && note->tick < s->tick1 )
  1033. note->pitch += s->pitch_offset;
  1034. }
  1035. }
  1036. return kOkXsRC;
  1037. }
  1038. cmXsNote_t* _cmXScoreFindOverlappingNote( cmXScore_t* p, const cmXsNote_t* knp )
  1039. {
  1040. cmXsPart_t* pp = p->partL;
  1041. // for each part
  1042. for(; pp!=NULL; pp=pp->link)
  1043. {
  1044. cmXsMeas_t* mp = pp->measL;
  1045. // for each measure
  1046. for(; mp!=NULL; mp=mp->link)
  1047. {
  1048. cmXsNote_t* np = mp->noteL;
  1049. // for each note in this measure
  1050. for(; np!=NULL; np=np->slink)
  1051. if( np->uid != knp->uid
  1052. && cmIsFlag(np->flags,kOnsetXsFl)
  1053. && knp->pitch == np->pitch
  1054. && knp->tick >= np->tick
  1055. && knp->tick < (np->tick + np->tied_dur) )
  1056. {
  1057. return np;
  1058. }
  1059. }
  1060. }
  1061. return NULL;
  1062. }
  1063. void _cmXScoreProcessOverlappingNotes( cmXScore_t* p )
  1064. {
  1065. cmXsPart_t* pp = p->partL;
  1066. // for each part
  1067. for(; pp!=NULL; pp=pp->link)
  1068. {
  1069. cmXsMeas_t* mp = pp->measL;
  1070. // for each measure
  1071. for(; mp!=NULL; mp=mp->link)
  1072. {
  1073. cmXsNote_t* np = mp->noteL;
  1074. cmXsNote_t* fnp;
  1075. // for each note in this measure
  1076. for(; np!=NULL; np=np->slink)
  1077. if( cmIsFlag(np->flags,kOnsetXsFl) && (fnp = _cmXScoreFindOverlappingNote(p,np)) != NULL)
  1078. {
  1079. // is np entirely contained inside fnp
  1080. bool embeddedFl = fnp->tick + fnp->tied_dur > np->tick + np->tied_dur;
  1081. //printf("bar=%3i %4s voice:%2i %2i : %7i %7i : %7i %7i : %7i : %c \n",np->meas->number,cmMidiToSciPitch(np->pitch,NULL,0),np->voice->id,fnp->voice->id,fnp->tick,fnp->tick+fnp->duration,np->tick,np->tick+np->duration, (fnp->tick+fnp->duration) - np->tick, embeddedFl ? 'E' : 'O');
  1082. // turn off embedded notes
  1083. if( embeddedFl )
  1084. {
  1085. if( np->voice->id == fnp->voice->id )
  1086. cmErrWarnMsg(&p->err,kOverlapWarnXsRC,"A time embedded note (bar=%i %s) was removed even though it overlapped with a note in the same voice.",np->meas->number,cmMidiToSciPitch(np->pitch,NULL,0));
  1087. np->flags = cmClrFlag(np->flags,kOnsetXsFl);
  1088. }
  1089. else
  1090. {
  1091. int d = (fnp->tick+fnp->tied_dur) - np->tick;
  1092. // shorten the first note
  1093. if( d > 0 && d < fnp->tied_dur )
  1094. fnp->tied_dur -= d;
  1095. // move the second note just past it
  1096. np->tick = fnp->tick + fnp->tied_dur + 1;
  1097. }
  1098. }
  1099. }
  1100. }
  1101. }
  1102. // The identical pitch may be notated to play simultaneously on different voices.
  1103. // As performed on the piano this will equate to a single sounding note.
  1104. // This function clears the onset flag on all except one of the duplicated notes.
  1105. void _cmXScoreRemoveDuplicateNotes( cmXScore_t* p )
  1106. {
  1107. cmXsPart_t* pp = p->partL;
  1108. // for each part
  1109. for(; pp!=NULL; pp=pp->link)
  1110. {
  1111. cmXsMeas_t* mp = pp->measL;
  1112. // for each measure
  1113. for(; mp!=NULL; mp=mp->link)
  1114. {
  1115. cmXsNote_t* np = mp->noteL;
  1116. // for each note in this measure
  1117. for(; np!=NULL; np=np->slink)
  1118. if( cmIsFlag(np->flags,kOnsetXsFl) )
  1119. {
  1120. cmXsNote_t* n0p = mp->noteL;
  1121. for(; n0p!=NULL; n0p=n0p->slink)
  1122. if( n0p!=np && cmIsFlag(n0p->flags,kOnsetXsFl) && np->locIdx==n0p->locIdx && np->pitch==n0p->pitch )
  1123. n0p->flags = cmClrFlag(n0p->flags,kOnsetXsFl);
  1124. }
  1125. }
  1126. }
  1127. }
  1128. void _cmXScoreSetMeasGroups( cmXScore_t* p, unsigned flag )
  1129. {
  1130. unsigned sectionId = 0;
  1131. cmXsNote_t* n0 = NULL;
  1132. cmXsPart_t* pp = p->partL;
  1133. // for each part
  1134. for(; pp!=NULL; pp=pp->link)
  1135. {
  1136. cmXsMeas_t* mp = pp->measL;
  1137. // for each measure
  1138. for(; mp!=NULL; mp=mp->link)
  1139. {
  1140. cmXsNote_t* np = mp->noteL;
  1141. // for each note in this measure
  1142. for(; np!=NULL; np=np->slink)
  1143. {
  1144. // if this note has a heel marker and we are looking for evenness events
  1145. if( cmIsFlag(flag,kEvenXsFl) && cmIsFlag(np->flags,kHeelXsFl) )
  1146. {
  1147. np->flags = cmSetFlag(np->flags,kBegGroupXsFl | kEndGroupXsFl );
  1148. np->evenGroupId = sectionId + 1;
  1149. }
  1150. // if this note is of the type we are looking for
  1151. if( cmIsFlag(np->flags,flag) )
  1152. {
  1153. if( n0 == NULL )
  1154. np->flags = cmSetFlag(np->flags,kBegGroupXsFl);
  1155. n0 = np;
  1156. }
  1157. // if this is a section marker
  1158. if( cmIsFlag(np->flags,kSectionXsFl) )
  1159. {
  1160. if( n0 != NULL )
  1161. {
  1162. np->flags = cmSetFlag(np->flags,kEndGroupXsFl);
  1163. switch( flag )
  1164. {
  1165. case kEvenXsFl: n0->evenGroupId = sectionId+1; break;
  1166. case kDynXsFl: n0->dynGroupId = sectionId+1; break;
  1167. case kTempoXsFl: n0->tempoGroupId= sectionId+1; break;
  1168. }
  1169. }
  1170. if( cmIsFlag(np->flags,kSectionXsFl) )
  1171. {
  1172. sectionId = 0;
  1173. if( np->tvalue == NULL )
  1174. cmErrWarnMsg(&p->err,kSyntaxErrorXsRC,"An apparent section label in measure '%i' is blank.",np->meas->number);
  1175. else
  1176. if( cmTextToUInt( np->tvalue, &sectionId, NULL ) != kOkTxRC )
  1177. cmErrWarnMsg(&p->err,kSyntaxErrorXsRC,"The section label '%s' is not an integer.",np->tvalue);
  1178. //sectionId = np->tvalue==NULL ? 0 : strtol(np->tvalue,NULL,10);
  1179. }
  1180. n0 = NULL;
  1181. }
  1182. }
  1183. }
  1184. }
  1185. }
  1186. cmXsRC_t _cmXScoreWriteScorePlotFile( cmXScore_t* p, const cmChar_t* fn )
  1187. {
  1188. cmXsRC_t rc = kOkXsRC;
  1189. cmFileH_t fH = cmFileNullHandle;
  1190. double ticks_per_sec = 0;
  1191. double onset_secs = 0;
  1192. if( cmFileOpen(&fH,fn,kWriteFileFl,p->err.rpt) != kOkFileRC )
  1193. return cmErrMsg(&p->err,kFileFailXsRC,"Unable to create the file '%s'.",cmStringNullGuard(fn));
  1194. cmXsPart_t* pp = p->partL;
  1195. for(; pp!=NULL; pp=pp->link)
  1196. {
  1197. cmXsMeas_t* mp = pp->measL;
  1198. for(; mp!=NULL; mp=mp->link)
  1199. {
  1200. cmFilePrintf(fH,"b %f %i %s B\n",onset_secs,mp->number,"bar");
  1201. cmXsNote_t* np = mp->noteL;
  1202. unsigned tick0 = 0;
  1203. for(; np!=NULL; np=np->slink)
  1204. {
  1205. if( cmIsFlag(np->flags,kMetronomeXsFl) )
  1206. {
  1207. double bps = np->tied_dur / 60.0;
  1208. // t b t
  1209. // - = - -
  1210. // s s b
  1211. ticks_per_sec = bps * mp->divisions;
  1212. }
  1213. else
  1214. {
  1215. if( cmIsFlag(np->flags,kOnsetXsFl) )
  1216. {
  1217. onset_secs += (np->tick - tick0) / ticks_per_sec;
  1218. tick0 = np->tick;
  1219. cmFilePrintf(fH,"n %f %f %i %s %s\n",onset_secs,np->tied_dur/ticks_per_sec,np->uid,cmMidiToSciPitch(np->pitch,NULL,0),cmIsFlag(np->flags,kGraceXsFl)?"G":"N");
  1220. }
  1221. }
  1222. }
  1223. onset_secs += (mp->divisions * mp->beats - tick0) / ticks_per_sec;
  1224. }
  1225. }
  1226. cmFileClose(&fH);
  1227. return rc;
  1228. }
  1229. // Force the bar event to be the first event in the measure.
  1230. void _cmXScoreFixBarLines( cmXScore_t* p )
  1231. {
  1232. cmXsPart_t* pp = p->partL;
  1233. for(; pp!=NULL; pp=pp->link)
  1234. {
  1235. cmXsMeas_t* mp = pp->measL;
  1236. for(; mp!=NULL; mp=mp->link)
  1237. {
  1238. cmXsNote_t* np = mp->noteL;
  1239. cmXsNote_t* ep = NULL;
  1240. for(; np!=NULL; np=np->slink )
  1241. {
  1242. if( cmIsFlag(np->flags,kBarXsFl) )
  1243. {
  1244. if( ep != NULL )
  1245. np->tick = ep->tick;
  1246. break;
  1247. }
  1248. if( ep == NULL )
  1249. ep = np;
  1250. }
  1251. }
  1252. }
  1253. }
  1254. // Assign pedal down durations to pedal down events.
  1255. cmXsRC_t _cmXScoreProcessPedals( cmXScore_t* p )
  1256. {
  1257. cmXsRC_t rc = kOkXsRC;
  1258. cmXsPart_t* pp = p->partL;
  1259. for(; pp!=NULL; pp=pp->link)
  1260. {
  1261. cmXsNote_t* dnp = NULL; // pointer to last damper down event
  1262. cmXsNote_t* snp = NULL; // pointer to last sostenuto down event
  1263. cmXsMeas_t* mp = pp->measL;
  1264. for(; mp!=NULL; mp=mp->link)
  1265. {
  1266. cmXsNote_t* np = mp->noteL;
  1267. for(; np!=NULL; np=np->slink )
  1268. {
  1269. unsigned x = np->flags & (kDampDnXsFl|kDampUpXsFl|kDampUpDnXsFl|kSostUpXsFl|kSostDnXsFl);
  1270. switch( x )
  1271. {
  1272. case 0:
  1273. break;
  1274. case kDampDnXsFl:
  1275. if( dnp != NULL )
  1276. cmErrWarnMsg(&p->err,kPedalStateErrorXsRc,"Damper down not preceded by damper up in measure:%i.",mp->number);
  1277. else
  1278. dnp = np;
  1279. break;
  1280. case kDampUpXsFl:
  1281. if( dnp == NULL )
  1282. cmErrWarnMsg(&p->err,kPedalStateErrorXsRc,"Damper up not preceded by damper down in measure:%i.",mp->number);
  1283. else
  1284. {
  1285. dnp->duration = np->tick - dnp->tick;
  1286. dnp = NULL;
  1287. }
  1288. break;
  1289. case kDampUpDnXsFl:
  1290. if( dnp == NULL )
  1291. cmErrWarnMsg(&p->err,kPedalStateErrorXsRc,"Damper up/down not preceded by damper down in measure:%i.",mp->number);
  1292. else
  1293. {
  1294. dnp->duration = np->tick - dnp->tick;
  1295. dnp = np;
  1296. }
  1297. break;
  1298. case kSostDnXsFl:
  1299. if( snp != NULL )
  1300. cmErrWarnMsg(&p->err,kPedalStateErrorXsRc,"Sostenuto down not preceded by sostenuto up in measure:%i.",mp->number);
  1301. else
  1302. snp = np;
  1303. break;
  1304. case kSostUpXsFl:
  1305. if( snp == NULL )
  1306. cmErrWarnMsg(&p->err,kPedalStateErrorXsRc,"Sostenuto up not preceded by sostenuto down in measure:%i.",mp->number);
  1307. else
  1308. {
  1309. snp->duration = np->tick - snp->tick;
  1310. snp = NULL;
  1311. }
  1312. break;
  1313. default:
  1314. {
  1315. assert(0);
  1316. }
  1317. } // switch
  1318. } // for notes
  1319. } // for measures
  1320. if( dnp != NULL )
  1321. cmErrWarnMsg(&p->err,kPedalStateErrorXsRc,"Damper left down at the end of a part.");
  1322. if( snp != NULL )
  1323. cmErrWarnMsg(&p->err,kPedalStateErrorXsRc,"Sostenuto left down at the end of a part.");
  1324. }
  1325. _cmXScoreSort(p);
  1326. return rc;
  1327. }
  1328. void _cmXScoreInsertTime( cmXScore_t* p, cmXsMeas_t* mp, cmXsNote_t* np, unsigned expand_ticks )
  1329. {
  1330. for(; mp!=NULL; mp=mp->link)
  1331. {
  1332. if( np == NULL )
  1333. np = mp->noteL;
  1334. for(; np!=NULL; np=np->slink)
  1335. np->tick += expand_ticks;
  1336. }
  1337. }
  1338. void _cmXScoreGraceInsertTimeBase( cmXScore_t* p, unsigned graceGroupId, cmXsNote_t* aV[], unsigned aN, unsigned initTick )
  1339. {
  1340. cmXsNote_t* np = NULL;
  1341. unsigned expand_ticks = 0;
  1342. unsigned ticks = initTick;
  1343. unsigned t0 = 0;
  1344. unsigned i;
  1345. for(i=0; i<aN; ++i)
  1346. if( cmIsFlag(aV[i]->flags,kGraceXsFl) && aV[i]->graceGroupId == graceGroupId )
  1347. {
  1348. // if this grace note falls on the same tick as the previous grace note
  1349. if( np != NULL && aV[i]->tick == t0 )
  1350. aV[i]->tick = np->tick;
  1351. else
  1352. {
  1353. t0 = aV[i]->tick; // store the unmodified tick value of this note
  1354. aV[i]->tick = ticks; // set the new tick value
  1355. ticks += aV[i]->duration; // calc the next grace not location
  1356. expand_ticks += aV[i]->duration; // track how much we are expanding time by
  1357. }
  1358. np = aV[i];
  1359. }
  1360. np = np->slink;
  1361. if( np != NULL )
  1362. _cmXScoreInsertTime(p,np->meas,np,expand_ticks);
  1363. }
  1364. // (a) Insert the grace notes in between the first and last note in the group
  1365. // by inserting time between the first and last note.
  1366. // Note that in effect his means that the last note is pushed back
  1367. // in time by the total duration of the grace notes.
  1368. void _cmXScoreGraceInsertTime( cmXScore_t* p, unsigned graceGroupId, cmXsNote_t* aV[], unsigned aN )
  1369. {
  1370. _cmXScoreGraceInsertTimeBase( p, graceGroupId,aV,aN, aV[aN-1]->tick );
  1371. }
  1372. // (s) Insert the grace notes in between the first and last note in the group
  1373. // but do not insert any additional time betwee the first and last note.
  1374. // In effect time is removed from the first note and taken by the grace notes.
  1375. // The time position of the last note is therefore unchanged.
  1376. void _cmXScoreGraceOverlayTime( cmXScore_t* p, unsigned graceGroupId, cmXsNote_t* aV[], unsigned aN )
  1377. {
  1378. assert(aN >= 3 );
  1379. int i = (int)aN-2;
  1380. cmXsNote_t* np = aV[aN-1];
  1381. unsigned t0 = -1;
  1382. for(; i>0; --i)
  1383. if( cmIsFlag(aV[i]->flags,kGraceXsFl) && aV[i]->graceGroupId == graceGroupId )
  1384. {
  1385. if( aV[i]->tick == t0)
  1386. aV[i]->tick = np->tick;
  1387. else
  1388. {
  1389. t0 = aV[i]->tick;
  1390. aV[i]->tick = np->tick - aV[i]->duration;
  1391. }
  1392. np = aV[i];
  1393. }
  1394. }
  1395. // (A) Play the first grace at the time of the first note in the group (which is a non-grace note)
  1396. // and then expand time while inserting the other grace notes.
  1397. void _cmXScoreGraceInsertAfterFirst( cmXScore_t* p, unsigned graceGroupId, cmXsNote_t* aV[], unsigned aN )
  1398. {
  1399. _cmXScoreGraceInsertTimeBase( p, graceGroupId,aV,aN, aV[0]->tick );
  1400. }
  1401. // (n) Play the first grace not shortly (one grace note duration) after the first note
  1402. // in the group (which is a non-grace note) and then expand time while inserting the other
  1403. // grace notes.
  1404. void _cmXScoreGraceInsertSoonAfterFirst( cmXScore_t* p, unsigned graceGroupId, cmXsNote_t* aV[], unsigned aN )
  1405. {
  1406. _cmXScoreGraceInsertTimeBase( p, graceGroupId,aV,aN, aV[0]->tick + aV[1]->duration );
  1407. }
  1408. // Adjust the locations of grace notes. Note that this must be done
  1409. // after reordering so that we can be sure that the order in time of
  1410. // the notes in each group has been set prior to building the
  1411. // grace note groups - which must be in reverse time order.
  1412. cmXsRC_t _cmXScoreProcessGraceNotes( cmXScore_t* p )
  1413. {
  1414. cmXsRC_t rc = kOkXsRC;
  1415. unsigned graceGroupId = 1;
  1416. double graceDurSec = 1.0/15.0; // duration of all grace notes in seconds
  1417. for(; 1; ++graceGroupId)
  1418. {
  1419. cmXsNote_t* gn0p = NULL; // first note in the grace group
  1420. cmXsNote_t* gn1p = NULL; // last note in the grace group
  1421. unsigned gN = 0;
  1422. cmXsPart_t* pp = p->partL;
  1423. double ticksPerSec = 0;
  1424. // Build a note chain, using cmXsNote_t.grace, between gn0p and
  1425. // gn1p containing all the grace notes with
  1426. // cmXsNote_t.graceGroupId == graceGroupId.
  1427. for(; pp!=NULL; pp=pp->link)
  1428. {
  1429. cmXsMeas_t* mp = pp->measL;
  1430. for(; mp!=NULL; mp=mp->link)
  1431. {
  1432. cmXsNote_t* np = mp->noteL;
  1433. for(; np!=NULL; np=np->slink )
  1434. {
  1435. // notice change of tempo
  1436. if( cmIsFlag(np->flags,kMetronomeXsFl) )
  1437. {
  1438. // ticks/sec = ticks/qn * qn/sec
  1439. ticksPerSec = mp->divisions * np->duration / 60.0;
  1440. }
  1441. // if this note is part of the grace note group we are searching for
  1442. if( np->graceGroupId == graceGroupId )
  1443. {
  1444. // track the first note in the grace note list
  1445. if( gn0p == NULL )
  1446. gn0p = np;
  1447. // add the note to the end of the grace note list
  1448. if( gn1p != NULL )
  1449. gn1p->grace = np;
  1450. // track the last note in the grace note list
  1451. gn1p = np;
  1452. // set each grace note to have 1/20 of a second duration
  1453. if( cmIsFlag(np->flags,kGraceXsFl) )
  1454. np->duration = np->tied_dur = floor(ticksPerSec * graceDurSec);
  1455. gN += 1;
  1456. }
  1457. } // for each note in this meassure
  1458. } // for each measure
  1459. } // for each part
  1460. // no records were found for this grace id - we're done
  1461. if( gn0p == NULL )
  1462. break;
  1463. // grace note groups must have at least 3 members
  1464. if( gN < 3 )
  1465. {
  1466. rc = cmErrMsg(&p->err,kSyntaxErrorXsRC,"The grace not group ending in meas %i has fewer than 3 (%i) members.", gn1p->meas->number, gN );
  1467. break;
  1468. }
  1469. // gn0p is now set to the first note in th group
  1470. // gn1p is now set to the last note in the group
  1471. // verify that the first note is marked with kBegGraceXsFl
  1472. if( cmIsNotFlag(gn0p->flags,kBegGraceXsFl) )
  1473. {
  1474. rc = cmErrMsg(&p->err,kSyntaxErrorXsRC,"The first note in a grace note group in meas %i tick %i groupid:%i is not marked with a 'b'.", gn0p->meas->number, gn0p->tick, graceGroupId );
  1475. break;
  1476. }
  1477. // verify that the last note is marked with kEndGraceXsFl
  1478. if( cmIsNotFlag(gn1p->flags,kEndGraceXsFl) )
  1479. {
  1480. rc = cmErrMsg(&p->err,kSyntaxErrorXsRC,"The last note in a grace note group in meas %i is not marked with a valid operator character.", gn1p->meas->number );
  1481. break;
  1482. }
  1483. // Count the total number of events between gn0p and gn1p
  1484. cmXsNote_t* n0p = NULL;
  1485. cmXsNote_t* n1p = gn0p;
  1486. cmXsMeas_t* mp = gn0p->meas;
  1487. unsigned aN = 0;
  1488. for(; n0p != gn1p; n1p=n1p->slink )
  1489. {
  1490. // if we are crossing a measure boundary
  1491. if( n1p == NULL )
  1492. {
  1493. mp = mp->link;
  1494. assert(mp!=NULL);
  1495. n1p = mp->noteL;
  1496. }
  1497. if(0)
  1498. {
  1499. bool fl = n0p != NULL && n0p->tick < n1p->tick;
  1500. unsigned type = n1p->flags & (kBegGraceXsFl|kEndGraceXsFl|kAddGraceXsFl|kSubGraceXsFl|kAFirstGraceXsFl|kNFirstGraceXsFl);
  1501. printf("%3i 0x%08x %i %3i %5i %i\n",n1p->graceGroupId,type,n1p->meas->number,n1p->tick,n1p->duration,fl);
  1502. }
  1503. ++aN;
  1504. n0p = n1p;
  1505. }
  1506. // create a vector of pointers to all events between gn0p and gn1p
  1507. cmXsNote_t* aV[ aN ];
  1508. unsigned i;
  1509. n1p = gn0p;
  1510. n0p = NULL;
  1511. mp = gn0p->meas;
  1512. for(i=0; n0p != gn1p; n1p=n1p->slink )
  1513. {
  1514. // if we are crossing a measure boundary
  1515. if( n1p == NULL )
  1516. {
  1517. mp = mp->link;
  1518. assert(mp!=NULL);
  1519. n1p = mp->noteL;
  1520. }
  1521. assert(i<aN);
  1522. aV[i++] = n1p;
  1523. n0p = n1p;
  1524. }
  1525. switch( gn1p->flags & (kAddGraceXsFl | kSubGraceXsFl | kAFirstGraceXsFl | kNFirstGraceXsFl ) )
  1526. {
  1527. case kAddGraceXsFl:
  1528. _cmXScoreGraceInsertTime(p, graceGroupId, aV, aN );
  1529. break;
  1530. case kSubGraceXsFl:
  1531. _cmXScoreGraceOverlayTime(p, graceGroupId, aV, aN );
  1532. break;
  1533. case kAFirstGraceXsFl:
  1534. _cmXScoreGraceInsertAfterFirst(p,graceGroupId,aV,aN);
  1535. break;
  1536. case kNFirstGraceXsFl:
  1537. _cmXScoreGraceInsertSoonAfterFirst(p,graceGroupId,aV,aN);
  1538. break;
  1539. default:
  1540. { assert(0); }
  1541. }
  1542. }
  1543. return rc;
  1544. }
  1545. cmXsNote_t* _cmXScoreDynamicForkEndNote( cmXsNote_t* bnp )
  1546. {
  1547. assert( cmIsFlag(bnp->flags,kDynBegForkXsFl) );
  1548. cmXsMeas_t* mp = bnp->meas;
  1549. cmXsNote_t* np = bnp->slink;
  1550. for(; mp!=NULL; mp=mp->link,np = mp==NULL?NULL : mp->noteL)
  1551. {
  1552. for(; np!=NULL; np=np->slink)
  1553. {
  1554. if( cmIsFlag(np->flags,kDynEndForkXsFl) && np->voice->id == bnp->voice->id )
  1555. return np;
  1556. }
  1557. }
  1558. return NULL;
  1559. }
  1560. cmXsRC_t _cmXScoreProcessDynamicFork( cmXScore_t* p, cmXsNote_t* bnp )
  1561. {
  1562. cmXsNote_t* enp;
  1563. if((enp = _cmXScoreDynamicForkEndNote(bnp)) == NULL)
  1564. return cmErrMsg(&p->err,kSyntaxErrorXsRC,"The dynamic fork beginning in measure %i at tick %i voice %i was not terminated.", bnp->meas->number,bnp->tick,bnp->voice->id);
  1565. double begDynFrac = bnp->dynamics;
  1566. double begVelFrac = bnp->vel;
  1567. double endDynFrac = enp->dynamics;
  1568. double endVelFrac = enp->vel;
  1569. cmXsMeas_t* mp = bnp->meas;
  1570. cmXsNote_t* np = bnp->slink;
  1571. for(; mp!=NULL && np!=enp; mp=mp->link,np=mp==NULL ? NULL : mp->noteL)
  1572. {
  1573. for(; np!=NULL && np!=enp; np=np->slink)
  1574. /*
  1575. Conditioning this on np->dynamics==0 will may cause 'silent' notes to be assigned
  1576. a non-zero dynamics value - this is best fixed by using a different special value
  1577. for silent notes
  1578. BUG BUG BUG BUG BUG
  1579. */
  1580. if( np->voice == bnp->voice && np->dynamics == 0 )
  1581. {
  1582. double frac = ((double)np->tick - bnp->tick) / (enp->tick - bnp->tick);
  1583. np->dynamics = lround(begDynFrac + ((endDynFrac - begDynFrac) * frac));
  1584. np->vel = lround(begVelFrac + ((endVelFrac - begVelFrac) * frac));
  1585. }
  1586. }
  1587. return kOkXsRC;
  1588. }
  1589. cmXsRC_t _cmXScoreProcessDynamicForks( cmXScore_t* p )
  1590. {
  1591. cmXsRC_t rc = kOkXsRC;
  1592. cmXsPart_t* pp = p->partL;
  1593. for(; pp!=NULL; pp=pp->link)
  1594. {
  1595. cmXsMeas_t* mp = pp->measL;
  1596. for(; mp!=NULL; mp=mp->link)
  1597. {
  1598. cmXsNote_t* np = mp->noteL;
  1599. for(; np!=NULL; np=np->slink )
  1600. {
  1601. if( cmIsFlag(np->flags,kDynBegForkXsFl) )
  1602. if((rc = _cmXScoreProcessDynamicFork(p,np)) != kOkXsRC )
  1603. return rc;
  1604. }
  1605. }
  1606. }
  1607. return rc;
  1608. }
  1609. //-------------------------------------------------------------------------------------------
  1610. typedef struct
  1611. {
  1612. unsigned idx; // Fields from the reordering input file which are
  1613. unsigned voice; // used to match the reorder record to
  1614. unsigned locIdx; // the associated a cmXsNode_t record.
  1615. unsigned tick; //
  1616. unsigned durtn; //
  1617. float rval; //
  1618. unsigned midi; //
  1619. cmXsNote_t* note; // The cmXsNote_t* associated with this cmXsReorder_t record
  1620. unsigned dynIdx; // cmInvalidIdx=ignore otherwise index into _cmXScoreDynMarkArray[]
  1621. unsigned newFlags; // 0=ignore | kSostUp/DnXsFl | kDampUp/DnXsFl | kTieEndXsFl
  1622. unsigned newTick; // 0=ignore >0 new tick value
  1623. unsigned graceFlags; // 0=ignore See kXXXGraceXsFl
  1624. unsigned graceGroupId; // 0=ignore >0=grace note group id
  1625. unsigned pitch; // 0=ignore >0 new pitch
  1626. } cmXsReorder_t;
  1627. typedef struct _cmXScoreDynMark_str
  1628. {
  1629. const cmChar_t* mark; //
  1630. unsigned id; // (1-17) maps to velocity
  1631. unsigned dyn; // pppp - fff (1-9) as used by cmScore
  1632. int adjust; // {-1,0,+1}
  1633. unsigned vel; // associated MIDI velocity
  1634. } _cmXScoreDynMark_t;
  1635. _cmXScoreDynMark_t _cmXScoreDynMarkArray[] =
  1636. {
  1637. {"s", 1, 0, 0, 1}, // silent note
  1638. {"pppp-", 2, 1, -1, 3},
  1639. {"pppp", 3, 1, 0, 10},
  1640. {"pppp+", 4, 1, 1, 22},
  1641. {"ppp-", 4, 2, -1, 22},
  1642. {"ppp", 5, 2, 0, 29},
  1643. {"ppp+", 6, 2, 1, 36},
  1644. {"pp-", 6, 3, -1, 36},
  1645. {"pp", 7, 3, 0, 43},
  1646. {"pp+", 8, 3, 1, 50},
  1647. {"p-", 8, 4, -1, 50},
  1648. {"p", 9, 4, 0, 57},
  1649. {"p+", 10, 4, 1, 64},
  1650. {"mp-", 10, 5, -1, 64},
  1651. {"mp", 11, 5, 0, 71},
  1652. {"mp+", 12, 5, 1, 78},
  1653. {"mf-", 12, 6, -1, 78},
  1654. {"mf", 13, 6, 0, 85},
  1655. {"mf+", 14, 6, 1, 92},
  1656. {"f-", 14, 7, -1, 92},
  1657. {"f", 15, 7, 0, 99},
  1658. {"f+", 16, 7, 1, 106},
  1659. {"ff", 17, 8, 0, 113},
  1660. {"ff+", 18, 8, 1, 120},
  1661. {"fff", 19, 9, 0, 127},
  1662. {NULL,0,0,0,0}
  1663. };
  1664. cmXsNote_t* _cmXsReorderFindNote( cmXScore_t* p, unsigned measNumb, const cmXsReorder_t* r, unsigned iii )
  1665. {
  1666. cmXsPart_t* pp = p->partL;
  1667. for(; pp!=NULL; pp=pp->link)
  1668. {
  1669. cmXsMeas_t* mp = pp->measL;
  1670. for(; mp!=NULL; mp=mp->link)
  1671. if( mp->number == measNumb)
  1672. {
  1673. cmXsNote_t* np = mp->noteL;
  1674. int index = 0;
  1675. for(; np!=NULL; np=np->slink,++index)
  1676. {
  1677. if( 0 /*mp->number==43*/ )
  1678. printf("voice: %i %i loc:%i %i tick:%i %i pitch:%i %i idx:%i %i\n",
  1679. np->voice->id, r->voice,
  1680. np->locIdx , r->locIdx ,
  1681. np->tick , r->tick ,
  1682. np->pitch , r->midi ,
  1683. index , r->idx );
  1684. if( np->voice->id == r->voice &&
  1685. np->locIdx == r->locIdx &&
  1686. np->tick == r->tick &&
  1687. //np->duration == r->durtn &&
  1688. np->rvalue == r->rval &&
  1689. np->pitch == r->midi &&
  1690. index == r->idx )
  1691. {
  1692. //printf("Found: %i \n", r->midi);
  1693. return np;
  1694. }
  1695. }
  1696. }
  1697. }
  1698. cmErrMsg(&p->err,kSyntaxErrorXsRC,"Reorder note not found meas:%i index:%i.",measNumb,iii);
  1699. return NULL;
  1700. }
  1701. void _cmXScoreInsertPedalEvent( cmXScore_t* p, const cmXsReorder_t* r, unsigned flags )
  1702. {
  1703. // Create a new score event record
  1704. cmXsNote_t* nn = cmLhAllocZ(p->lhH,cmXsNote_t,1);
  1705. nn->uid = p->nextUid++;
  1706. nn->voice = r->note->voice;
  1707. nn->meas = r->note->meas;
  1708. nn->flags = flags;
  1709. // Pedal down events occur after the event they are attached to
  1710. if( cmIsFlag(flags,kSostDnXsFl | kDampDnXsFl ) )
  1711. {
  1712. nn->tick = r->note->tick + 1;
  1713. _cmXScoreInsertNoteAfter(r->note,nn);
  1714. }
  1715. else
  1716. {
  1717. // Pedal up events occur before the event they are attached to
  1718. if( cmIsFlag(flags,kSostUpXsFl | kDampUpXsFl ) )
  1719. {
  1720. nn->tick = r->note->tick==0 ? 0 : r->note->tick - 1;
  1721. _cmXScoreInsertNoteBefore(r->note,nn);
  1722. }
  1723. else
  1724. { assert(0); }
  1725. }
  1726. }
  1727. cmXsRC_t _cmXScoreReorderMeas( cmXScore_t* p, unsigned measNumb, cmXsReorder_t* rV, unsigned rN )
  1728. {
  1729. unsigned i;
  1730. if( rN == 0 )
  1731. return kOkXsRC;
  1732. // set the 'note' field on each cmXsReorder_t record
  1733. for(i=0; i<rN; ++i)
  1734. if((rV[i].note = _cmXsReorderFindNote(p,measNumb,rV+i,i)) == NULL )
  1735. return kSyntaxErrorXsRC;
  1736. // remove deleted notes
  1737. for(i=0; i<rN; ++i)
  1738. if( cmIsFlag(rV[i].newFlags,kDeleteXsFl) )
  1739. _cmXScoreRemoveNote( rV[i].note );
  1740. cmXsMeas_t* mp = rV[0].note->meas;
  1741. cmXsNote_t* n0p = NULL;
  1742. assert( mp->number == measNumb );
  1743. // Reassign the slink of the cmXsNote_t records in this measure
  1744. // according to their order in rV[].
  1745. for(i=0; i<rN; ++i)
  1746. {
  1747. if( cmIsFlag(rV[i].newFlags,kDeleteXsFl) )
  1748. continue;
  1749. if( n0p == NULL )
  1750. mp->noteL = rV[i].note;
  1751. else
  1752. n0p->slink = rV[i].note;
  1753. // if a new tick was specified
  1754. if( rV[i].newTick != 0 )
  1755. rV[i].note->tick = rV[i].newTick;
  1756. // if a dynamic or velocity mark was included
  1757. if( rV[i].dynIdx != cmInvalidIdx )
  1758. {
  1759. rV[i].note->dynamics = _cmXScoreDynMarkArray[ rV[i].dynIdx ].dyn;
  1760. rV[i].note->vel = _cmXScoreDynMarkArray[ rV[i].dynIdx ].vel;
  1761. }
  1762. // Set the dynamic fork begin/end flags for later _cmXScoreProcessDynamicForks()
  1763. if( cmIsFlag(rV[i].newFlags,kDynBegForkXsFl) )
  1764. rV[i].note->flags = cmSetFlag(rV[i].note->flags,kDynBegForkXsFl);
  1765. if( cmIsFlag(rV[i].newFlags,kDynEndForkXsFl) )
  1766. rV[i].note->flags = cmSetFlag(rV[i].note->flags,kDynEndForkXsFl);
  1767. // if the tie end flag was set
  1768. if( cmIsFlag(rV[i].newFlags,kTieEndXsFl) )
  1769. {
  1770. rV[i].note->flags |= kTieEndXsFl;
  1771. rV[i].note->flags = cmClrFlag( rV[i].note->flags, kOnsetXsFl );
  1772. rV[i].newFlags = cmClrFlag( rV[i].newFlags, kTieEndXsFl);
  1773. }
  1774. // if a new note value was specified
  1775. if( rV[i].pitch != 0 )
  1776. rV[i].note->pitch = rV[i].pitch;
  1777. rV[i].note->flags |= rV[i].graceFlags;
  1778. rV[i].note->graceGroupId = rV[i].graceGroupId;
  1779. n0p = rV[i].note;
  1780. n0p->slink = NULL;
  1781. }
  1782. // Insert new note records for pedal up/dn events.
  1783. for(i=0; i<rN; ++i)
  1784. {
  1785. if( rV[i].newFlags != 0 )
  1786. {
  1787. if( cmIsFlag(rV[i].newFlags,kDampDnXsFl ) )
  1788. _cmXScoreInsertPedalEvent(p,rV + i,kDampDnXsFl);
  1789. if( cmIsFlag(rV[i].newFlags,kSostDnXsFl ) )
  1790. _cmXScoreInsertPedalEvent(p,rV + i,kSostDnXsFl);
  1791. if( cmIsFlag(rV[i].newFlags,kDampUpXsFl ) )
  1792. _cmXScoreInsertPedalEvent(p,rV + i,kDampUpXsFl);
  1793. if( cmIsFlag(rV[i].newFlags,kSostUpXsFl ) )
  1794. _cmXScoreInsertPedalEvent(p,rV + i,kSostUpXsFl);
  1795. }
  1796. }
  1797. return kOkXsRC;
  1798. }
  1799. cmXsRC_t _cmXScoreReorderParseDyn(cmXScore_t* p, const cmChar_t* b, unsigned lineNumb, unsigned* dynIdxRef, unsigned* flagsRef )
  1800. {
  1801. cmXsRC_t rc = kOkXsRC;
  1802. const cmChar_t* s = NULL;
  1803. bool begForkFl = false;
  1804. bool endForkFl = false;
  1805. *dynIdxRef = cmInvalidIdx;
  1806. // locate the '!' which indicates the start of a dynamic marking
  1807. if( (s = strchr(b,'!')) == NULL )
  1808. return rc;
  1809. ++s; // increment past the '!'
  1810. if( *s == 0 )
  1811. return cmErrMsg(&p->err,kSyntaxErrorXsRC,"Unexpected end-of-line on dynamics parsing on line:%i.",lineNumb);
  1812. // some dynamic markings are surrounded by parenthesis (to indicate a dynamic level with greater uncertainty)
  1813. if( *s == '(' )
  1814. ++s; // skip the paren.
  1815. if( *s == '!')
  1816. {
  1817. endForkFl = true;
  1818. ++s;
  1819. }
  1820. if( *s == 0 )
  1821. return cmErrMsg(&p->err,kSyntaxErrorXsRC,"Unexpected end-of-line on dynamics parsing on line:%i.",lineNumb);
  1822. // check for beg/end fork dynamic
  1823. if( isupper(*s) )
  1824. {
  1825. if( !endForkFl)
  1826. begForkFl=true;
  1827. }
  1828. else
  1829. {
  1830. if( endForkFl )
  1831. return cmErrMsg(&p->err,kSyntaxErrorXsRC,"A double exclaimation point (end-of-dynamic fork) must always be followed by an upper case M,P, or F. See line:%i",lineNumb);
  1832. }
  1833. unsigned i = 0;
  1834. unsigned j = 0;
  1835. unsigned n = 6;
  1836. bool doneFl = false;
  1837. cmChar_t mark[n+1];
  1838. memset(mark,0,n+1);
  1839. for(i=0; j<n && doneFl==false; ++i)
  1840. {
  1841. char c = tolower(s[i]);
  1842. switch(c)
  1843. {
  1844. case 's':
  1845. case 'm':
  1846. case 'p':
  1847. case 'f':
  1848. case '+':
  1849. case '-':
  1850. mark[j++] = c;
  1851. break;
  1852. case ')': // ending paren.
  1853. case 0: // end of string
  1854. case ' ': // end of mark
  1855. case '\n': // end of line
  1856. default: // anything else
  1857. doneFl = true;
  1858. break;
  1859. }
  1860. }
  1861. if( !doneFl )
  1862. return cmErrMsg(&p->err,kSyntaxErrorXsRC,"Illegal dynamic mark (%s) syntax on line:%i.",mark,lineNumb);
  1863. // look up the dynamic mark in the reference table
  1864. for(j=0; _cmXScoreDynMarkArray[j].mark!=NULL; ++j)
  1865. if( strcmp(mark,_cmXScoreDynMarkArray[j].mark) == 0 )
  1866. break;
  1867. if( _cmXScoreDynMarkArray[j].mark == NULL )
  1868. return cmErrMsg(&p->err,kSyntaxErrorXsRC,"The dynamic mark '%s' is not legal on line:%i.",mark,lineNumb);
  1869. *dynIdxRef = j;
  1870. if( begForkFl )
  1871. *flagsRef = cmSetFlag(*flagsRef,kDynBegForkXsFl);
  1872. if( endForkFl )
  1873. *flagsRef = cmSetFlag(*flagsRef,kDynEndForkXsFl);
  1874. return rc;
  1875. }
  1876. cmXsRC_t _cmXScoreReorderParseFlags(cmXScore_t* p, const cmChar_t* b, unsigned line, unsigned* newFlagsRef )
  1877. {
  1878. cmXsRC_t rc = kOkXsRC;
  1879. const cmChar_t* s;
  1880. bool doneFl = false;
  1881. unsigned i = 0;
  1882. *newFlagsRef = 0;
  1883. // tilde indicates a pedal event
  1884. if((s = strchr(b,'~')) == NULL )
  1885. return rc;
  1886. do
  1887. {
  1888. ++s;
  1889. switch( *s )
  1890. {
  1891. case 'd':
  1892. *newFlagsRef |= kSostDnXsFl; // sostenuto pedal down just after this note onset
  1893. break;
  1894. case 'u':
  1895. *newFlagsRef |= kSostUpXsFl; // sostenuto pedal up just before this event
  1896. break;
  1897. case 'x':
  1898. *newFlagsRef |= (kSostUpXsFl | kSostDnXsFl); // sostenuto pedal up just before this event and sost down just after it.
  1899. break;
  1900. case 'D':
  1901. *newFlagsRef |= kDampDnXsFl; // damper pedal down
  1902. break;
  1903. case 'U':
  1904. *newFlagsRef |= kDampUpXsFl; // damper pedal up
  1905. break;
  1906. case '_':
  1907. *newFlagsRef |= kTieEndXsFl; // set tie end flag
  1908. break;
  1909. case '&':
  1910. *newFlagsRef |= kDeleteXsFl; // delete this evetn
  1911. break;
  1912. default:
  1913. if( i == 0 )
  1914. return cmErrMsg(&p->err,kSyntaxErrorXsRC,"Unexpected flag marking '%c' on line %i.",*s,line);
  1915. doneFl = true;
  1916. }
  1917. ++i;
  1918. }while(!doneFl);
  1919. return rc;
  1920. }
  1921. cmXsRC_t _cmXScoreReorderParseTick(cmXScore_t* p, const cmChar_t* b, unsigned line, unsigned* tickRef )
  1922. {
  1923. cmXsRC_t rc = kOkXsRC;
  1924. const cmChar_t* s;
  1925. if((s = strchr(b,'@')) == NULL )
  1926. return rc;
  1927. ++s;
  1928. if(!isdigit(*s))
  1929. return cmErrMsg(&p->err,kSyntaxErrorXsRC,"Unexpected tick reorder value '%c' on line %i.",*s,line);
  1930. if(sscanf(s,"%i",tickRef) != 1 )
  1931. return cmErrMsg(&p->err,kSyntaxErrorXsRC,"tick reorder parse failed on line %i.",line);
  1932. return rc;
  1933. }
  1934. cmXsRC_t _cmXScoreReorderParseGrace(cmXScore_t* p, const cmChar_t* b, unsigned line, cmXsReorder_t* r, unsigned* graceGroupIdRef )
  1935. {
  1936. cmXsRC_t rc = kOkXsRC;
  1937. const cmChar_t* s;
  1938. if((s = strchr(b,'%')) == NULL )
  1939. return rc;
  1940. ++s;
  1941. r->graceGroupId = *graceGroupIdRef;
  1942. while(1)
  1943. {
  1944. switch(*s)
  1945. {
  1946. case 'b': r->graceFlags |= kBegGraceXsFl; break;
  1947. case 'a': r->graceFlags |= kAddGraceXsFl | kEndGraceXsFl; break;
  1948. case 's': r->graceFlags |= kSubGraceXsFl | kEndGraceXsFl; break;
  1949. case 'A': r->graceFlags |= kAFirstGraceXsFl| kEndGraceXsFl; break;
  1950. case 'n': r->graceFlags |= kNFirstGraceXsFl| kEndGraceXsFl; break;
  1951. case 'g': break;
  1952. case '%':
  1953. *graceGroupIdRef += 1;
  1954. ++s;
  1955. continue;
  1956. default:
  1957. { assert(0); }
  1958. }
  1959. break;
  1960. }
  1961. return rc;
  1962. }
  1963. cmXsRC_t _cmXScoreReorderParsePitch(cmXScore_t* p, const cmChar_t* b, unsigned line, unsigned* pitchRef )
  1964. {
  1965. cmXsRC_t rc = kOkXsRC;
  1966. cmChar_t* s;
  1967. cmChar_t buf[4];
  1968. unsigned i,j;
  1969. memset(buf,0,sizeof(buf));
  1970. *pitchRef = 0;
  1971. if((s = strchr(b,'$')) == NULL )
  1972. return rc;
  1973. ++s;
  1974. j=2;
  1975. for(i=0; i<j && s[i]; ++i,++s)
  1976. {
  1977. buf[i] = *s;
  1978. if( i==1 && (*s=='#' || *s=='b') )
  1979. j = 3;
  1980. if( i==0 && strchr("ABCDEFG",*s)==NULL )
  1981. return cmErrMsg(&p->err,kSyntaxErrorXsRC,"Illegal pitch letter ('%c')specification line %i.",*s,line);
  1982. if( i==1 && !isdigit(*s) && *s!='#' && *s!='b' )
  1983. return cmErrMsg(&p->err,kSyntaxErrorXsRC,"Illegal pitch level ('%c') specification line %i.",*s,line);
  1984. if( i==2 && !isdigit(*s) )
  1985. return cmErrMsg(&p->err,kSyntaxErrorXsRC,"Illegal pitch octave ('%c') specification line %i.",*s,line);
  1986. }
  1987. unsigned pitch = cmSciPitchToMidi(buf);
  1988. if( pitch<kInvalidMidiByte)
  1989. *pitchRef = pitch;
  1990. else
  1991. rc = cmErrMsg(&p->err,kSyntaxErrorXsRC,"Pitch conversion from '%s' failed on line %i.",buf,line);
  1992. return rc;
  1993. }
  1994. cmXsRC_t _cmXsApplyEditFile( cmXScore_t* p, const cmChar_t* fn )
  1995. {
  1996. typedef enum { kFindMeasStId, kFindEventStId, kReadEventStId } stateId_t;
  1997. cmXsRC_t rc = kOkXsRC;
  1998. cmFileH_t fH = cmFileNullHandle;
  1999. cmChar_t* b = NULL;
  2000. unsigned bN = 0;
  2001. unsigned ln = 0;
  2002. stateId_t stateId = kFindMeasStId;
  2003. unsigned rN = 1024;
  2004. unsigned ri = 0;
  2005. unsigned measNumb = 0;
  2006. unsigned graceGroupId = 1;
  2007. cmXsReorder_t rV[ rN ];
  2008. if( cmFileOpen(&fH,fn,kReadFileFl,p->err.rpt) != kOkFileRC )
  2009. {
  2010. rc = cmErrMsg(&p->err,kFileFailXsRC,"The reordering file '%s' could not be opened.",cmStringNullGuard(fn));
  2011. return rc;
  2012. }
  2013. for(; cmFileGetLineAuto(fH,&b,&bN)==kOkFileRC; ++ln)
  2014. {
  2015. switch( stateId )
  2016. {
  2017. case kFindEventStId: // scanning past labels to an event line
  2018. {
  2019. unsigned voice,loc;
  2020. if( sscanf(b,"%i %i",&voice,&loc) != 2 )
  2021. continue;
  2022. stateId = kReadEventStId;
  2023. }
  2024. // fall through
  2025. case kReadEventStId:
  2026. {
  2027. cmXsReorder_t r;
  2028. char pitchStr[4];
  2029. memset(&r,0,sizeof(r));
  2030. // parse an event line
  2031. if( sscanf(b,"%i %i %i %i %i %f",&r.idx,&r.voice,&r.locIdx,&r.tick,&r.durtn,&r.rval) == 6 )
  2032. {
  2033. assert( strlen(b)>=52);
  2034. int PC = 39; // text file column where first pitch char occurs
  2035. if( b[PC] == ' ')
  2036. r.midi = 0;
  2037. else
  2038. {
  2039. pitchStr[0] = b[PC+0];
  2040. pitchStr[1] = b[PC+1];
  2041. pitchStr[2] = b[PC+2];
  2042. pitchStr[3] = 0;
  2043. if( !isdigit(pitchStr[2]) )
  2044. r.midi = 0;
  2045. else
  2046. {
  2047. if( pitchStr[1] == ' ')
  2048. {
  2049. pitchStr[1] = pitchStr[2];
  2050. pitchStr[2] = 0;
  2051. }
  2052. r.midi = cmSciPitchToMidi(pitchStr);
  2053. }
  2054. }
  2055. // parse the flag edits following a '~'
  2056. if((rc = _cmXScoreReorderParseFlags(p,b,ln+1, &r.newFlags)) != kOkXsRC )
  2057. goto errLabel;
  2058. // parse the dynamic marking following a '!'
  2059. if((rc = _cmXScoreReorderParseDyn(p,b,ln+1,&r.dynIdx, &r.newFlags)) != kOkXsRC )
  2060. goto errLabel;
  2061. // parse the @newtick marker
  2062. if((rc = _cmXScoreReorderParseTick(p, b, ln+1, &r.newTick)) != kOkXsRC )
  2063. goto errLabel;
  2064. // parse the %grace note marker
  2065. if((rc = _cmXScoreReorderParseGrace(p, b, ln+1, &r, &graceGroupId)) != kOkXsRC )
  2066. goto errLabel;
  2067. // parse the $pitch marker
  2068. if((rc = _cmXScoreReorderParsePitch(p, b, ln+1, &r.pitch )) != kOkXsRC )
  2069. goto errLabel;
  2070. // process grace notes - these need to be processed separate from
  2071. // the _cmXScoreReorderMeas() because grace notes may cross measure boundaries.
  2072. /*
  2073. if( r.graceType != 0 )
  2074. {
  2075. r.graceGroupId = graceGroupId;
  2076. // if this is an end of a grace note group
  2077. if( r.graceType != 'g' && r.graceType != 'b' )
  2078. {
  2079. graceGroupId += 1;
  2080. }
  2081. }
  2082. */
  2083. // store the record
  2084. assert( ri < rN );
  2085. rV[ri++] = r;
  2086. continue;
  2087. }
  2088. // the end of the measure was encountered -
  2089. // reorder the measure based on the cmXsReorder_t in rV[ri]
  2090. if((rc = _cmXScoreReorderMeas(p, measNumb, rV, ri )) != kOkXsRC )
  2091. goto errLabel;
  2092. ri = 0;
  2093. stateId = kFindMeasStId;
  2094. // fall through
  2095. }
  2096. case kFindMeasStId: // scanning for a bar-line
  2097. {
  2098. char colon;
  2099. if( sscanf(b,"%i %c",&measNumb,&colon) == 2 && colon == ':' )
  2100. {
  2101. //printf("meas: %i \n",measNumb);
  2102. stateId = kFindEventStId;
  2103. }
  2104. }
  2105. break;
  2106. }
  2107. }
  2108. // If reorder records remain to be processed
  2109. if( ri > 0 )
  2110. if((rc = _cmXScoreReorderMeas(p, measNumb, rV, ri )) != kOkXsRC )
  2111. goto errLabel;
  2112. // the ticks may have changed so the 'secs' and 'dsecs' must be updated
  2113. _cmXScoreSetAbsoluteTime( p );
  2114. // the bar lines should be the first event in the measure
  2115. _cmXScoreFixBarLines(p);
  2116. // resort to force the links to be correct
  2117. _cmXScoreSort(p);
  2118. // process the grace notes.
  2119. _cmXScoreProcessGraceNotes( p );
  2120. // inserting grace notes may have left the score unsorted
  2121. _cmXScoreSort(p);
  2122. // process the dynamic forks
  2123. _cmXScoreProcessDynamicForks(p);
  2124. _cmXScoreReport(p, NULL, true );
  2125. errLabel:
  2126. cmFileClose(&fH);
  2127. cmMemFree(b);
  2128. return rc;
  2129. }
  2130. cmXsRC_t cmXScoreInitialize( cmCtx_t* ctx, cmXsH_t* hp, const cmChar_t* xmlFn, const cmChar_t* editFn )
  2131. {
  2132. cmXsRC_t rc = kOkXsRC;
  2133. if((rc = cmXScoreFinalize(hp)) != kOkXsRC )
  2134. return rc;
  2135. cmXScore_t* p = cmMemAllocZ(cmXScore_t,1);
  2136. cmErrSetup(&p->err,&ctx->rpt,"XScore");
  2137. // create a local linked heap
  2138. if( cmLHeapIsValid( p->lhH = cmLHeapCreate(8196,ctx)) == false )
  2139. return cmErrMsg(&p->err,kLHeapFailXsRC,"Lheap create failed.");
  2140. // open the music xml file
  2141. if( cmXmlAlloc(ctx, &p->xmlH, xmlFn) != kOkXmlRC )
  2142. {
  2143. rc = cmErrMsg(&p->err,kXmlFailXsRC,"Unable to open the MusicXML file '%s'.",cmStringNullGuard(xmlFn));
  2144. goto errLabel;
  2145. }
  2146. //cmXmlPrint(p->xmlH,&ctx->rpt);
  2147. // parse the part-list
  2148. if((rc = _cmXScoreParsePartList( p )) != kOkXsRC )
  2149. goto errLabel;
  2150. // parse each score 'part'
  2151. cmXsPart_t* pp = p->partL;
  2152. for(; pp!=NULL; pp=pp->link)
  2153. if((rc = _cmXScoreParsePart(p,pp)) != kOkXsRC )
  2154. goto errLabel;
  2155. // fill in the note->slink chain to link the notes in each measure in time order
  2156. _cmXScoreSort(p);
  2157. // kpl: 4/19/17 fix problem where notes ended up out of order by one tick _cmXScoreSpreadGraceNotes(p);
  2158. _cmXScoreSort(p);
  2159. _cmXScoreResolveTiesAndLoc(p);
  2160. _cmXScoreRemoveDuplicateNotes(p);
  2161. _cmXScoreSetMeasGroups(p,kEvenXsFl);
  2162. _cmXScoreSetMeasGroups(p,kDynXsFl);
  2163. _cmXScoreSetMeasGroups(p,kTempoXsFl);
  2164. //_cmXScoreResolveOctaveShift(p);
  2165. // CSV output initialize failed.
  2166. if( cmCsvInitialize(&p->csvH,ctx) != kOkCsvRC )
  2167. rc = cmErrMsg(&p->err,kCsvFailXsRC,"CSV output object create failed.");
  2168. if( editFn != NULL )
  2169. {
  2170. if((rc = _cmXsApplyEditFile(p,editFn)) != kOkXsRC )
  2171. {
  2172. cmErrMsg(&ctx->err,rc,"XScore reorder failed.");
  2173. goto errLabel;
  2174. }
  2175. }
  2176. // assign durations to pedal down events
  2177. _cmXScoreProcessPedals(p);
  2178. // remove some notes which share a pitch and are overlapped or embedded within another note.
  2179. _cmXScoreProcessOverlappingNotes(p);
  2180. errLabel:
  2181. if( rc != kOkXsRC )
  2182. _cmXScoreFinalize(p);
  2183. else
  2184. hp->h = p;
  2185. return rc;
  2186. }
  2187. cmXsRC_t cmXScoreFinalize( cmXsH_t* hp )
  2188. {
  2189. cmXsRC_t rc = kOkXsRC;
  2190. if( hp == NULL || cmXScoreIsValid(*hp)==false )
  2191. return kOkXsRC;
  2192. cmXScore_t* p = _cmXScoreHandleToPtr(*hp);
  2193. if((rc = _cmXScoreFinalize(p)) != kOkXsRC )
  2194. return rc;
  2195. hp->h = NULL;
  2196. return rc;
  2197. }
  2198. bool cmXScoreIsValid( cmXsH_t h )
  2199. { return h.h != NULL; }
  2200. /* CSV score columns
  2201. kMidiFileIdColScIdx= 0,
  2202. kTypeLabelColScIdx = 3,
  2203. kDSecsColScIdx = 4,
  2204. kSecsColScIdx = 5,
  2205. kD0ColScIdx = 9,
  2206. kD1ColScIdx = 10,
  2207. kPitchColScIdx = 11,
  2208. kBarColScIdx = 13,
  2209. kSkipColScIdx = 14,
  2210. kEvenColScIdx = 15,
  2211. kGraceColScIdx = 16,
  2212. kTempoColScIdx = 17,
  2213. kFracColScIdx = 18,
  2214. kDynColScIdx = 19,
  2215. kSectionColScIdx = 20,
  2216. kRecdPlayColScIdx = 21,
  2217. kRemarkColScIdx = 22
  2218. */
  2219. cmXsRC_t _cmXScoreWriteCsvHdr( cmXScore_t* p )
  2220. {
  2221. const cmChar_t* s[] =
  2222. {
  2223. "id","trk","evt","opcode","dticks","micros","status",
  2224. "meta","ch","d0","d1","arg0","arg1","bar","skip",
  2225. "even","grace","tempo","t frac","dyn","section","play_recd","remark",NULL
  2226. };
  2227. cmCsvCell_t* lcp = NULL;
  2228. if( cmCsvAppendRow( p->csvH, &lcp, cmCsvInsertSymText(p->csvH,s[0]), 0, 0 ) != kOkCsvRC )
  2229. return cmErrMsg(&p->err,kCsvFailXsRC,"CSV append row failed.");
  2230. unsigned i;
  2231. for(i=1; s[i]!=NULL; ++i)
  2232. {
  2233. if( cmCsvInsertIdentColAfter(p->csvH, lcp, &lcp, s[i], 0 ) != kOkCsvRC )
  2234. return cmErrMsg(&p->err,kCsvFailXsRC,"CSV error inserting CSV title %i.\n",i);
  2235. }
  2236. return kOkXsRC;
  2237. }
  2238. cmXsRC_t _cmXScoreWriteCsvBlankCols( cmXScore_t* p, unsigned cnt, cmCsvCell_t** leftCellPtrPtr )
  2239. {
  2240. unsigned i;
  2241. for(i=0; i<cnt; ++i)
  2242. if( cmCsvInsertIdentColAfter(p->csvH,*leftCellPtrPtr,leftCellPtrPtr,"",0) != kOkCsvRC )
  2243. return cmErrMsg(&p->err,kCsvFailXsRC,"CSV output failed on blank column.");
  2244. return kOkCsvRC;
  2245. }
  2246. const cmChar_t* _cmXScoreTranslateDynamics( cmXScore_t* p, const cmXsNote_t* np, cmChar_t* buf, unsigned bufN )
  2247. {
  2248. if( cmIsFlag(np->flags,kDynXsFl) && np->dynamics != 0 )
  2249. {
  2250. const cmChar_t* dynStr = NULL;
  2251. switch(np->dynamics)
  2252. {
  2253. case 1: dynStr = "pppp"; break;
  2254. case 2: dynStr = "ppp"; break;
  2255. case 3: dynStr = "pp"; break;
  2256. case 4: dynStr = "p"; break;
  2257. case 5: dynStr = "mp"; break;
  2258. case 6: dynStr = "mf"; break;
  2259. case 7: dynStr = "f"; break;
  2260. case 8: dynStr = "ff"; break;
  2261. case 9: dynStr = "fff"; break;
  2262. default:
  2263. cmErrMsg(&p->err,kSyntaxErrorXsRC,"An invalid dynamic value (%i) was encountered.",np->dynamics);
  2264. goto errLabel;
  2265. }
  2266. if( np->dynGroupId == 0 )
  2267. snprintf(buf,bufN,"%s",dynStr);
  2268. else
  2269. snprintf(buf,bufN,"%s %i",dynStr,np->dynGroupId);
  2270. return buf;
  2271. }
  2272. errLabel:
  2273. return "";
  2274. }
  2275. const cmChar_t* cmXsFormatMeasurementCsvField( unsigned flags, unsigned fl, char abbrev, unsigned sectionId, char* buf, unsigned bufN )
  2276. {
  2277. assert( bufN > 1 );
  2278. buf[0] = ' ';
  2279. buf[1] = 0;
  2280. if( cmIsFlag(flags,fl) )
  2281. {
  2282. if( sectionId != 0 )
  2283. snprintf(buf,bufN-1,"%c %i%c",abbrev,sectionId, cmIsFlag(flags,kHeelXsFl)?'*':' ');
  2284. else
  2285. buf[0] = abbrev;
  2286. }
  2287. return buf;
  2288. }
  2289. cmXsRC_t _cmXScoreWriteCsvRow(
  2290. cmXScore_t* p,
  2291. unsigned rowIdx,
  2292. unsigned uid,
  2293. unsigned bar,
  2294. const cmChar_t* sectionStr,
  2295. const cmChar_t* opCodeStr,
  2296. double dsecs,
  2297. double secs,
  2298. unsigned d0,
  2299. unsigned d1,
  2300. unsigned pitch, // set to -1 if the pitch is not valid
  2301. double frac,
  2302. const cmChar_t* dynStr,
  2303. unsigned flags,
  2304. const cmChar_t* evenStr,
  2305. const cmChar_t* tempoStr)
  2306. {
  2307. cmXsRC_t rc = kOkXsRC;
  2308. cmCsvCell_t* lcp = NULL;
  2309. // append an empty row to the CSV object
  2310. if( cmCsvAppendRow( p->csvH, &lcp, cmCsvInsertSymUInt(p->csvH, rowIdx ), 0, 0 ) != kOkCsvRC )
  2311. {
  2312. rc = cmErrMsg(&p->err,kCsvFailXsRC,"CSV append row failed.");
  2313. goto errLabel;
  2314. }
  2315. /*
  2316. // col 0 : blanks
  2317. if( cmCsvInsertUIntColAfter(p->csvH, lcp, &lcp, rowIdx, 0 ) != kOkCsvRC )
  2318. {
  2319. rc = cmErrMsg(&p->err,kCsvFailXsRC,"CSV output row index failed.");
  2320. goto errLabel;
  2321. }
  2322. */
  2323. // col 1 : track (always 1)
  2324. if( cmCsvInsertUIntColAfter(p->csvH,lcp,&lcp,1,0) != kOkCsvRC )
  2325. {
  2326. rc = cmErrMsg(&p->err,kCsvFailXsRC,"CSV insert failed on 'd0'.");
  2327. goto errLabel;
  2328. }
  2329. // col 2 : evt (set to event uid, or blank if uid == -1)
  2330. if( uid == -1 )
  2331. {
  2332. if((rc = _cmXScoreWriteCsvBlankCols(p,1,&lcp)) != kOkXsRC )
  2333. goto errLabel;
  2334. }
  2335. else
  2336. if( cmCsvInsertUIntColAfter(p->csvH,lcp,&lcp,uid,0) != kOkCsvRC )
  2337. {
  2338. rc = cmErrMsg(&p->err,kCsvFailXsRC,"CSV insert failed on 'd0'.");
  2339. goto errLabel;
  2340. }
  2341. // col 3 : output the opcode
  2342. if( cmCsvInsertIdentColAfter(p->csvH,lcp,&lcp,opCodeStr,0) != kOkCsvRC )
  2343. {
  2344. rc = cmErrMsg(&p->err,kCsvFailXsRC,"CSV insert failed on opcode label.");
  2345. goto errLabel;
  2346. }
  2347. // col 4 : dsecs
  2348. if( cmCsvInsertDoubleColAfter(p->csvH,lcp,&lcp,dsecs,0) != kOkCsvRC )
  2349. {
  2350. rc = cmErrMsg(&p->err,kCsvFailXsRC,"CSV insert failed on 'dsecs'.");
  2351. goto errLabel;
  2352. }
  2353. // col 5 : secs
  2354. if( cmCsvInsertDoubleColAfter(p->csvH,lcp,&lcp,secs,0) != kOkCsvRC )
  2355. {
  2356. rc = cmErrMsg(&p->err,kCsvFailXsRC,"CSV insert failed on 'secs'.");
  2357. goto errLabel;
  2358. }
  2359. // cols 6,7,8 blanks
  2360. if((rc = _cmXScoreWriteCsvBlankCols(p,3,&lcp)) != kOkXsRC )
  2361. goto errLabel;
  2362. // col 9 : d0
  2363. if( cmCsvInsertUIntColAfter(p->csvH,lcp,&lcp,d0,0) != kOkCsvRC )
  2364. {
  2365. rc = cmErrMsg(&p->err,kCsvFailXsRC,"CSV insert failed on 'd0'.");
  2366. goto errLabel;
  2367. }
  2368. // col 10 : d1
  2369. if( cmCsvInsertUIntColAfter(p->csvH,lcp,&lcp,d1,0) != kOkCsvRC )
  2370. {
  2371. rc = cmErrMsg(&p->err,kCsvFailXsRC,"CSV insert failed on 'd1'.");
  2372. goto errLabel;
  2373. }
  2374. // col 11 : pitch
  2375. if( pitch == -1 )
  2376. {
  2377. if((rc = _cmXScoreWriteCsvBlankCols(p,1,&lcp)) != kOkXsRC )
  2378. goto errLabel;
  2379. }
  2380. else
  2381. {
  2382. if( cmCsvInsertIdentColAfter(p->csvH,lcp,&lcp,cmMidiToSciPitch(pitch,NULL,0),0) != kOkCsvRC )
  2383. {
  2384. rc = cmErrMsg(&p->err,kCsvFailXsRC,"CSV insert failed on 'pitch'.");
  2385. goto errLabel;
  2386. }
  2387. }
  2388. // col 12 : blanks
  2389. if((rc = _cmXScoreWriteCsvBlankCols(p,1 + (cmIsFlag(flags,kBarXsFl) ? 0 : 1), &lcp)) != kOkXsRC )
  2390. goto errLabel;
  2391. // col 13 : bar number
  2392. if( cmIsFlag(flags,kBarXsFl) )
  2393. {
  2394. if( cmCsvInsertUIntColAfter(p->csvH,lcp,&lcp,bar,0) != kOkCsvRC )
  2395. {
  2396. rc = cmErrMsg(&p->err,kCsvFailXsRC,"CSV insert failed on 'pitch'.");
  2397. goto errLabel;
  2398. }
  2399. }
  2400. // col 14 : skip (blank for now)
  2401. if((rc = _cmXScoreWriteCsvBlankCols(p,1,&lcp)) != kOkXsRC )
  2402. goto errLabel;
  2403. // col 15: even (all grace notes are 'even' notes
  2404. if( cmCsvInsertQTextColAfter(p->csvH,lcp,&lcp, evenStr, 0) != kOkCsvRC )
  2405. {
  2406. rc = cmErrMsg(&p->err,kCsvFailXsRC,"CSV insert failed on eveness flag label.");
  2407. goto errLabel;
  2408. }
  2409. // col 16: grace
  2410. if( cmCsvInsertIdentColAfter(p->csvH,lcp,&lcp,cmIsFlag(flags,kGraceXsFl) ? "g" : "",0) != kOkCsvRC )
  2411. {
  2412. rc = cmErrMsg(&p->err,kCsvFailXsRC,"CSV insert failed on eveness flag label.");
  2413. goto errLabel;
  2414. }
  2415. // col 17: tempo
  2416. if( cmCsvInsertQTextColAfter(p->csvH,lcp,&lcp,tempoStr,0) != kOkCsvRC )
  2417. {
  2418. rc = cmErrMsg(&p->err,kCsvFailXsRC,"CSV insert failed on eveness flag label.");
  2419. goto errLabel;
  2420. }
  2421. // col 18: frac
  2422. if( frac == 0 )
  2423. {
  2424. if((rc = _cmXScoreWriteCsvBlankCols(p,1,&lcp)) != kOkXsRC )
  2425. goto errLabel;
  2426. }
  2427. else
  2428. {
  2429. if( cmCsvInsertDoubleColAfter(p->csvH,lcp,&lcp,1.0/frac,0) != kOkCsvRC )
  2430. {
  2431. rc = cmErrMsg(&p->err,kCsvFailXsRC,"CSV insert failed on 't frac'.");
  2432. goto errLabel;
  2433. }
  2434. }
  2435. // col 19: dynamic marking
  2436. if( cmCsvInsertQTextColAfter(p->csvH, lcp, &lcp, dynStr, 0 ) != kOkCsvRC )
  2437. {
  2438. rc = cmErrMsg(&p->err,kCsvFailXsRC,"CSV insert failed on 'dynamics'.");
  2439. goto errLabel;
  2440. }
  2441. //if((rc = _cmXScoreWriteCsvBlankCols(p,1,&lcp)) != kOkXsRC )
  2442. // goto errLabel;
  2443. // col 20: section
  2444. if( cmCsvInsertIdentColAfter(p->csvH,lcp,&lcp,sectionStr!=NULL ? sectionStr : "",0) != kOkCsvRC )
  2445. {
  2446. rc = cmErrMsg(&p->err,kCsvFailXsRC,"CSV insert failed on eveness flag label.");
  2447. goto errLabel;
  2448. }
  2449. // col 21, 22 : recd-play, remark (blank for now)
  2450. if((rc = _cmXScoreWriteCsvBlankCols(p,2,&lcp)) != kOkXsRC )
  2451. goto errLabel;
  2452. errLabel:
  2453. return rc;
  2454. }
  2455. cmXsRC_t cmXScoreWriteCsv( cmXsH_t h, const cmChar_t* csvFn )
  2456. {
  2457. cmXsRC_t rc = kOkXsRC;
  2458. cmXScore_t* p = _cmXScoreHandleToPtr(h);
  2459. unsigned rowIdx = 1;
  2460. const cmChar_t* sectionIdStr = NULL;
  2461. if( !cmCsvIsValid(p->csvH) )
  2462. return cmErrMsg(&p->err,kCsvFailXsRC,"The CSV output object is not initialized.");
  2463. if((rc = _cmXScoreWriteCsvHdr( p )) != kOkXsRC )
  2464. goto errLabel;
  2465. cmXsPart_t* pp = p->partL;
  2466. for(; pp!=NULL; pp=pp->link)
  2467. {
  2468. cmXsMeas_t* mp = pp->measL;
  2469. for(; mp!=NULL; mp=mp->link)
  2470. {
  2471. cmXsNote_t* np = mp->noteL;
  2472. for(; np!=NULL; np=np->slink)
  2473. {
  2474. // if this is a section event
  2475. if( cmIsFlag(np->flags,kSectionXsFl) )
  2476. sectionIdStr = np->tvalue;
  2477. // if this is a bar event
  2478. if( cmIsFlag(np->flags,kBarXsFl) )
  2479. {
  2480. _cmXScoreWriteCsvRow(p,rowIdx,-1,mp->number,sectionIdStr,"bar",np->dsecs,np->secs,0,0,-1,0,"",np->flags,"","");
  2481. sectionIdStr = NULL;
  2482. }
  2483. else
  2484. {
  2485. // if this is a pedal event
  2486. if( cmIsFlag(np->flags,kDampDnXsFl|kDampUpXsFl|kDampUpDnXsFl|kSostDnXsFl|kSostUpXsFl) )
  2487. {
  2488. unsigned d0 = cmIsFlag(np->flags,kSostDnXsFl |kSostUpXsFl) ? 66 : 64; // pedal MIDI ctl id
  2489. unsigned d1 = cmIsFlag(np->flags,kDampDnXsFl|kSostDnXsFl) ? 64 : 0; // pedal-dn: d1>=64 pedal-up:<64
  2490. _cmXScoreWriteCsvRow(p,rowIdx,-1,mp->number,sectionIdStr,"ctl",np->dsecs,np->secs,d0,d1,-1,0,"",np->flags,"","");
  2491. sectionIdStr = NULL;
  2492. if( cmIsFlag(np->flags,kDampUpDnXsFl) )
  2493. {
  2494. rowIdx += 1;
  2495. double millisecond = 0.0;
  2496. _cmXScoreWriteCsvRow(p,rowIdx,-1,mp->number,sectionIdStr,"ctl",millisecond,np->secs+millisecond,d0,64,-1,0,"",np->flags,"","");
  2497. }
  2498. }
  2499. else
  2500. {
  2501. // if this is a sounding note event
  2502. if( cmIsFlag(np->flags,kOnsetXsFl) )
  2503. {
  2504. unsigned bufN = 128;
  2505. cmChar_t ebuf[ bufN+1]; ebuf[bufN] = 0;
  2506. cmChar_t dbuf[ bufN+1]; dbuf[bufN] = 0;
  2507. cmChar_t tbuf[ bufN+1]; tbuf[bufN] = 0;
  2508. double frac = np->rvalue + (cmIsFlag(np->flags,kDotXsFl) ? (np->rvalue/2) : 0);
  2509. const cmChar_t* dyn = _cmXScoreTranslateDynamics( p, np, dbuf, bufN );
  2510. unsigned vel = np->vel==0 ? 60 : np->vel;
  2511. //
  2512. _cmXScoreWriteCsvRow(p,rowIdx,np->uid,mp->number,sectionIdStr,"non",np->dsecs,np->secs,np->pitch,vel,np->pitch,frac,dyn,np->flags,
  2513. cmXsFormatMeasurementCsvField(np->flags, kEvenXsFl, 'e', np->evenGroupId, ebuf, bufN ),
  2514. cmXsFormatMeasurementCsvField(np->flags, kTempoXsFl,'t', np->tempoGroupId, tbuf, bufN ));
  2515. sectionIdStr = NULL;
  2516. }
  2517. }
  2518. }
  2519. rowIdx += 1;
  2520. }
  2521. }
  2522. }
  2523. // Section labels are output on the next bar/pedal/note
  2524. // but what if there is no bar pedal note-on after the section label
  2525. if( sectionIdStr != NULL )
  2526. cmErrMsg(&p->err,kSyntaxErrorXsRC,"The section label '%s' was ignored because it was not followed by a score event.",sectionIdStr);
  2527. if( cmCsvWrite( p->csvH, csvFn ) != kOkCsvRC )
  2528. rc = cmErrMsg(&p->err,kCsvFailXsRC,"The CSV output write failed on file '%s'.",csvFn);
  2529. errLabel:
  2530. return rc;
  2531. }
  2532. void _cmXScoreReportTitle( cmRpt_t* rpt )
  2533. {
  2534. cmRptPrintf(rpt," idx voc loc tick durtn rval flags\n");
  2535. cmRptPrintf(rpt," --- --- ----- ------- ----- ---- --- ---------------\n");
  2536. }
  2537. void _cmXScoreReportNote( cmRpt_t* rpt, const cmXsNote_t* note,unsigned index )
  2538. {
  2539. const cmChar_t* B = cmIsFlag(note->flags,kBarXsFl) ? "|" : "-";
  2540. const cmChar_t* R = cmIsFlag(note->flags,kRestXsFl) ? "R" : "-";
  2541. const cmChar_t* G = cmIsFlag(note->flags,kGraceXsFl) ? "G" : "-";
  2542. const cmChar_t* D = cmIsFlag(note->flags,kDotXsFl) ? "." : "-";
  2543. const cmChar_t* C = cmIsFlag(note->flags,kChordXsFl) ? "C" : "-";
  2544. const cmChar_t* e = cmIsFlag(note->flags,kEvenXsFl) ? "e" : "-";
  2545. const cmChar_t* d = cmIsFlag(note->flags,kDynXsFl) ? "d" : "-";
  2546. const cmChar_t* t = cmIsFlag(note->flags,kTempoXsFl) ? "t" : "-";
  2547. const cmChar_t* P = cmIsFlag(note->flags,kDampDnXsFl) ? "V" : "-";
  2548. const cmChar_t* s = cmIsFlag(note->flags,kSostDnXsFl) ? "{" : "-";
  2549. const cmChar_t* S = cmIsFlag(note->flags,kSectionXsFl) ? "S" : "-";
  2550. const cmChar_t* H = cmIsFlag(note->flags,kHeelXsFl) ? "H" : "-";
  2551. const cmChar_t* T0 = cmIsFlag(note->flags,kTieBegXsFl) ? "T" : "-";
  2552. const cmChar_t* T1 = cmIsFlag(note->flags,kTieEndXsFl) ? "_" : "-";
  2553. const cmChar_t* O = cmIsFlag(note->flags,kOnsetXsFl) ? "*" : "-";
  2554. P = cmIsFlag(note->flags,kDampUpXsFl) ? "^" : P;
  2555. P = cmIsFlag(note->flags,kDampUpDnXsFl) ? "X" : P;
  2556. s = cmIsFlag(note->flags,kSostUpXsFl) ? "}" : s;
  2557. //const cmChar_t* N = note->pitch==0 ? " " : cmMidiToSciPitch( note->pitch, NULL, 0 );
  2558. cmChar_t N[] = {'\0','\0','\0','\0'};
  2559. cmChar_t acc = note->alter==-1?'b':(note->alter==1?'#':' ');
  2560. snprintf(N,4,"%c%c%1i",note->step,acc,note->octave);
  2561. cmRptPrintf(rpt," %3i %3i %5i %7i %5i %4.1f %3s %s%s%s%s%s%s%s%s%s%s%s%s%s%s%s",
  2562. index,
  2563. note->voice->id,
  2564. note->locIdx,
  2565. note->tick,
  2566. note->tied_dur,
  2567. note->rvalue,
  2568. N,B,R,G,D,C,e,d,t,P,s,S,H,T0,T1,O);
  2569. if( cmIsFlag(note->flags,kSectionXsFl) )
  2570. cmRptPrintf(rpt," %s",cmStringNullGuard(note->tvalue));
  2571. if( cmIsFlag(note->flags,kMetronomeXsFl) )
  2572. cmRptPrintf(rpt," %i bpm",note->duration);
  2573. if( note->evenGroupId != 0 )
  2574. cmRptPrintf(rpt," e=%i",note->evenGroupId);
  2575. if( note->dynGroupId != 0 )
  2576. cmRptPrintf(rpt," d=%i",note->dynGroupId);
  2577. if( note->tempoGroupId != 0 )
  2578. cmRptPrintf(rpt," t=%i",note->tempoGroupId);
  2579. if( note->graceGroupId != 0)
  2580. cmRptPrintf(rpt," g=%i",note->graceGroupId);
  2581. /*
  2582. if( cmIsFlag(note->flags,kBegGraceXsFl) )
  2583. cmRptPrintf(rpt," B");
  2584. if( cmIsFlag(note->flags,kEndGraceXsFl) )
  2585. cmRptPrintf(rpt," E");
  2586. if( note->dynamics != 0)
  2587. cmRptPrintf(rpt," dyn=%i",note->dynamics);
  2588. if( cmIsFlag(note->flags,kDynBegForkXsFl) )
  2589. cmRptPrintf(rpt," B");
  2590. if( cmIsFlag(note->flags,kDynEndForkXsFl) )
  2591. cmRptPrintf(rpt," E");
  2592. */
  2593. }
  2594. void _cmXScoreReport( cmXScore_t* p, cmRpt_t* rpt, bool sortFl )
  2595. {
  2596. if( rpt == NULL )
  2597. rpt = p->err.rpt;
  2598. cmXsPart_t* pp = p->partL;
  2599. for(; pp!=NULL; pp=pp->link)
  2600. {
  2601. cmRptPrintf(rpt,"Part:%s\n",pp->idStr);
  2602. const cmXsMeas_t* meas = pp->measL;
  2603. for(; meas!=NULL; meas=meas->link)
  2604. {
  2605. unsigned idx = 0;
  2606. cmRptPrintf(rpt," %i : div:%i beat:%i beat-type:%i (%i)\n",meas->number,meas->divisions,meas->beats,meas->beat_type,meas->divisions*meas->beats);
  2607. _cmXScoreReportTitle(rpt);
  2608. if( sortFl )
  2609. {
  2610. const cmXsNote_t* note = meas->noteL;
  2611. unsigned t0 = 0;
  2612. unsigned t1 = 0;
  2613. for(; note!=NULL; note=note->slink,++idx)
  2614. {
  2615. _cmXScoreReportNote(rpt,note,idx);
  2616. t1 = note->slink==NULL ? note->tick : note->slink->tick;
  2617. if( !(t0 <= note->tick && note->tick <= t1) )
  2618. {
  2619. cmRptPrintf(rpt," +");
  2620. }
  2621. t0 = note->tick;
  2622. if( note->slink!=NULL || note->voice->id==0)
  2623. cmRptPrintf(rpt,"\n");
  2624. else
  2625. cmRptPrintf(rpt," %i\n", note->tick + note->duration);
  2626. }
  2627. }
  2628. else
  2629. {
  2630. const cmXsVoice_t* v = meas->voiceL;
  2631. for(; v!=NULL; v=v->link)
  2632. {
  2633. const cmXsNote_t* note = v->noteL;
  2634. cmRptPrintf(rpt," voice:%i\n",v->id);
  2635. for(; note!=NULL; note=note->mlink)
  2636. {
  2637. _cmXScoreReportNote(rpt,note,idx);
  2638. if( note->mlink!=NULL || note->voice->id==0)
  2639. cmRptPrintf(rpt,"\n");
  2640. else
  2641. cmRptPrintf(rpt," %i\n", note->tick + note->duration);
  2642. }
  2643. }
  2644. }
  2645. }
  2646. }
  2647. }
  2648. void cmXScoreReport( cmXsH_t h, cmRpt_t* rpt, bool sortFl )
  2649. {
  2650. cmXScore_t* p = _cmXScoreHandleToPtr(h);
  2651. return _cmXScoreReport(p,rpt,sortFl);
  2652. }
  2653. void _cmXScoreGenEditFileWrite( void* arg, const cmChar_t* text )
  2654. {
  2655. if( text != NULL && arg != NULL )
  2656. {
  2657. cmFileH_t* hp = (cmFileH_t*)arg;
  2658. cmFilePrint(*hp,text);
  2659. }
  2660. }
  2661. cmXsRC_t cmXScoreGenEditFile( cmCtx_t* ctx, const cmChar_t* xmlFn, const cmChar_t* outFn )
  2662. {
  2663. cmXsH_t xsH = cmXsNullHandle;
  2664. cmFileH_t fH = cmFileNullHandle;
  2665. cmXsRC_t rc = kOkXsRC;
  2666. cmErr_t err;
  2667. cmRpt_t rpt;
  2668. cmErrSetup(&err,&ctx->rpt,"cmXScoreGenEditFile");
  2669. cmRptSetup(&rpt,_cmXScoreGenEditFileWrite,_cmXScoreGenEditFileWrite,&fH);
  2670. if((rc = cmXScoreInitialize(ctx,&xsH,xmlFn,NULL)) != kOkXsRC )
  2671. return rc;
  2672. if( cmFileOpen(&fH,outFn,kWriteFileFl,&ctx->rpt) != kOkFileRC )
  2673. {
  2674. cmErrMsg(&err,kFileFailXsRC,"Unable to open the output file '%s'.",cmStringNullGuard(outFn));
  2675. goto errLabel;
  2676. }
  2677. cmXScoreReport(xsH,&rpt,true);
  2678. errLabel:
  2679. if( cmFileClose(&fH) != kOkFileRC )
  2680. rc = cmErrMsg(&err,kFileFailXsRC,"File close failed on '%s'.",cmStringNullGuard(outFn));
  2681. cmXScoreFinalize(&xsH);
  2682. return rc;
  2683. }
  2684. typedef struct
  2685. {
  2686. unsigned ival;
  2687. double fval;
  2688. unsigned cnt;
  2689. } cmXsHist_t;
  2690. void _cmXsHistUpdateI( cmXsHist_t* hist, unsigned histN, unsigned ival )
  2691. {
  2692. unsigned i;
  2693. for(i=0; i<histN && hist[i].cnt!=0; ++i)
  2694. if( hist[i].ival == ival )
  2695. break;
  2696. if( i==histN )
  2697. return;
  2698. hist[i].ival = ival;
  2699. hist[i].cnt += 1;
  2700. }
  2701. void _cmXsHistUpdateF( cmXsHist_t* hist, unsigned histN, double fval )
  2702. {
  2703. unsigned i;
  2704. for(i=0; i<histN && hist[i].cnt!=0; ++i)
  2705. if( hist[i].fval == fval )
  2706. break;
  2707. if( i==histN )
  2708. return;
  2709. hist[i].fval = fval;
  2710. hist[i].cnt += 1;
  2711. }
  2712. unsigned _cmXsHistValue( cmXsHist_t* hist, unsigned histN )
  2713. {
  2714. unsigned i,n;
  2715. for(i=0,n=0; i<histN && hist[i].cnt>0; ++i)
  2716. n += 1;
  2717. return n;
  2718. }
  2719. // Measure the score complexity for the the time window 'wndSecs' seconds
  2720. // prior to the note n1 and following n0.
  2721. const cmXsNote_t* _cmXsMeasComplexityInWindow( const cmXsNote_t* n0, cmXsNote_t* n1, double wndSecs )
  2722. {
  2723. const cmXsNote_t* n2 = NULL;
  2724. unsigned l_pch_0 = 0;
  2725. unsigned l_pch_value = 0;
  2726. unsigned l_pch_cnt = n1->staff==1 ? 0 : 1;
  2727. unsigned r_pch_0 = n1->staff==1 ? 1 : 0;
  2728. unsigned r_pch_value = 0;
  2729. unsigned r_pch_cnt = 0;
  2730. unsigned i = 0;
  2731. unsigned histN = 100;
  2732. cmXsHist_t velHist[ histN ];
  2733. cmXsHist_t rymHist[ histN ];
  2734. memset(velHist,0,sizeof(velHist));
  2735. memset(rymHist,0,sizeof(rymHist));
  2736. const cmXsNote_t* n = n0;
  2737. while(n!=NULL && n != n1)
  2738. {
  2739. // if this event is less than wndSecs behind 'n1' and is not a sounding note ...
  2740. if( n1->secs - n->secs <= wndSecs && cmIsFlag(n->flags,kOnsetXsFl) )
  2741. {
  2742. _cmXsHistUpdateI( velHist, histN, n->dynamics );
  2743. _cmXsHistUpdateF( rymHist, histN, n->rvalue );
  2744. switch( n->staff )
  2745. {
  2746. case 1: // treble cleff
  2747. if( i > 0 )
  2748. {
  2749. r_pch_value += r_pch_0 > n->pitch ? r_pch_0-n->pitch : n->pitch-r_pch_0;
  2750. r_pch_cnt += 1;
  2751. }
  2752. r_pch_0 = n->pitch;
  2753. break;
  2754. case 2: // bass cleff
  2755. if( i > 0 )
  2756. {
  2757. l_pch_value += l_pch_0 > n->pitch ? l_pch_0-n->pitch : n->pitch-l_pch_0;
  2758. l_pch_cnt += 1;
  2759. }
  2760. l_pch_0 = n->pitch;
  2761. break;
  2762. default:
  2763. { assert(0); }
  2764. }
  2765. // track the first note that is inside the window
  2766. if( i == 0 )
  2767. n2 = n;
  2768. // count the number of notes in the window
  2769. i += 1;
  2770. }
  2771. cmXsMeas_t* m = n->meas;
  2772. // advance th note pointer
  2773. n = n->slink;
  2774. // if we have reached the end of a measure
  2775. if( n == NULL )
  2776. {
  2777. if( m != NULL )
  2778. {
  2779. m = m->link;
  2780. if( m != NULL )
  2781. n = m->noteL;
  2782. }
  2783. }
  2784. }
  2785. // update the cplx record in n1 with the results of this window analysis
  2786. n1->cplx.sum_d_vel = _cmXsHistValue( velHist, histN );
  2787. n1->cplx.sum_d_rym = _cmXsHistValue( rymHist, histN );
  2788. n1->cplx.sum_d_lpch = l_pch_value;
  2789. n1->cplx.sum_n_lpch = l_pch_cnt;
  2790. n1->cplx.sum_d_rpch = r_pch_value;
  2791. n1->cplx.sum_n_rpch = r_pch_cnt;
  2792. return n2;
  2793. }
  2794. // Measure the score complexity and fill in the cmXsComplexity_t record associated
  2795. // with the cmXsNote_t record of each sounding note.
  2796. cmXsRC_t _cmXsMeasComplexity( cmXsH_t h, double wndSecs )
  2797. {
  2798. cmXsRC_t rc = kOkXsRC;
  2799. cmXScore_t* p = _cmXScoreHandleToPtr(h);
  2800. cmXsPart_t* pp = p->partL;
  2801. memset(&p->cplx_max,0,sizeof(p->cplx_max));
  2802. const cmXsNote_t* n0 = NULL;
  2803. // for each part
  2804. for(; pp!=NULL; pp=pp->link)
  2805. {
  2806. cmXsMeas_t* mp = pp->measL;
  2807. // for each measure
  2808. for(; mp!=NULL; mp=mp->link)
  2809. {
  2810. cmXsNote_t* n1 = mp->noteL;
  2811. // for each note in this measure
  2812. for(; n1!=NULL; n1=n1->slink)
  2813. if( cmIsFlag(n1->flags,kOnsetXsFl) )
  2814. {
  2815. if( n0 == NULL )
  2816. n0 = n1;
  2817. else
  2818. if((n0 = _cmXsMeasComplexityInWindow(n0,n1,wndSecs)) == NULL )
  2819. n0 = n1;
  2820. // track the max value for all complexity values to allow
  2821. // eventual normalization of the complexity values
  2822. p->cplx_max.sum_d_vel = cmMax(p->cplx_max.sum_d_vel, n1->cplx.sum_d_vel);
  2823. p->cplx_max.sum_d_rym = cmMax(p->cplx_max.sum_d_rym, n1->cplx.sum_d_rym);
  2824. p->cplx_max.sum_d_lpch = cmMax(p->cplx_max.sum_d_lpch,n1->cplx.sum_d_lpch);
  2825. p->cplx_max.sum_n_lpch = cmMax(p->cplx_max.sum_n_lpch,n1->cplx.sum_n_lpch);
  2826. p->cplx_max.sum_d_rpch = cmMax(p->cplx_max.sum_d_rpch,n1->cplx.sum_d_rpch);
  2827. p->cplx_max.sum_n_rpch = cmMax(p->cplx_max.sum_n_rpch,n1->cplx.sum_n_rpch);
  2828. }
  2829. }
  2830. }
  2831. return rc;
  2832. }
  2833. cmXsRC_t _cmXsWriteMidiFile( cmCtx_t* ctx, cmXsH_t h, const cmChar_t* dir, const cmChar_t* fn )
  2834. {
  2835. cmXsRC_t rc = kOkXsRC;
  2836. cmXScore_t* p = _cmXScoreHandleToPtr(h);
  2837. if( p->partL==NULL || p->partL->measL == NULL )
  2838. return rc;
  2839. cmMidiFileH_t mfH = cmMidiFileNullHandle;
  2840. unsigned trkN = 2;
  2841. unsigned ticksPerQN = p->partL->measL->divisions;
  2842. const cmChar_t* outFn = cmFsMakeFn(dir,fn,"mid",NULL);
  2843. if( cmMidiFileCreate( ctx, &mfH, trkN, ticksPerQN ) != kOkMfRC )
  2844. return cmErrMsg(&p->err,kMidiFailXsRC,"Unable to create the MIDI file object.");
  2845. cmXsPart_t* pp = p->partL;
  2846. // for each part
  2847. for(; pp!=NULL; pp=pp->link)
  2848. {
  2849. cmXsMeas_t* mp = pp->measL;
  2850. // for each measure
  2851. for(; mp!=NULL; mp=mp->link)
  2852. {
  2853. cmXsNote_t* np = mp->noteL;
  2854. if( mp->divisions != ticksPerQN )
  2855. cmErrWarnMsg(&p->err,kMidiFailXsRC,"The 'tick per quarter note' (divisions) field in measure %i does not match the value in the first measure (%i).",mp->divisions,ticksPerQN);
  2856. // for each note in this measure
  2857. for(; np!=NULL; np=np->slink)
  2858. {
  2859. switch( np->flags & (kOnsetXsFl|kMetronomeXsFl|kDampDnXsFl|kDampUpDnXsFl|kSostDnXsFl) )
  2860. {
  2861. case kOnsetXsFl:
  2862. {
  2863. if( np->tied_dur <= 0 )
  2864. cmErrWarnMsg(&p->err,kOkXsRC,"A zero length note was encountered bar:%i tick:%i %s",np->meas->number,np->tick,cmMidiToSciPitch(np->pitch,NULL,0));
  2865. if( cmMidiFileInsertTrackChMsg(mfH, 1, np->tick, kNoteOnMdId, np->pitch, np->vel ) != kOkMfRC
  2866. ||cmMidiFileInsertTrackChMsg(mfH, 1, np->tick + np->tied_dur, kNoteOffMdId, np->pitch, 0 ) != kOkMfRC )
  2867. {
  2868. rc = kMidiFailXsRC;
  2869. }
  2870. }
  2871. break;
  2872. case kDampDnXsFl:
  2873. case kDampUpDnXsFl:
  2874. case kSostDnXsFl:
  2875. {
  2876. if( np->duration <= 0 )
  2877. cmErrWarnMsg(&p->err,kOkXsRC,"A zero length pedal event was encountered bar:%i tick:%i",np->meas->number,np->tick);
  2878. cmMidiByte_t d0 = cmIsFlag(np->flags,kSostDnXsFl) ? kSostenutoCtlMdId : kSustainCtlMdId;
  2879. if( (cmMidiFileInsertTrackChMsg(mfH, 1, np->tick, kCtlMdId, d0, 127 ) != kOkMfRC )
  2880. ||(cmMidiFileInsertTrackChMsg(mfH, 1, np->tick + np->duration, kCtlMdId, d0, 0 ) != kOkMfRC ) )
  2881. {
  2882. rc = kMidiFailXsRC;
  2883. }
  2884. }
  2885. break;
  2886. case kMetronomeXsFl:
  2887. if( cmMidFileInsertTrackTempoMsg(mfH, 0, np->tick, np->duration ) != kOkMfRC )
  2888. rc = kMidiFailXsRC;
  2889. break;
  2890. case 0:
  2891. break;
  2892. default:
  2893. { assert(0); }
  2894. }
  2895. if( rc != kOkXsRC )
  2896. {
  2897. rc = cmErrMsg(&p->err,rc,"MIDI message insert failed on '%s'.",cmStringNullGuard(outFn));
  2898. goto errLabel;
  2899. }
  2900. }
  2901. }
  2902. }
  2903. if( cmMidiFileWrite(mfH,outFn) != kOkMfRC )
  2904. {
  2905. rc = cmErrMsg(&p->err,kMidiFailXsRC,"MIDI file write failed on '%s'.",cmStringNullGuard(outFn));
  2906. goto errLabel;
  2907. }
  2908. errLabel:
  2909. cmFsFreeFn(outFn);
  2910. if( cmMidiFileClose(&mfH) != kOkMfRC )
  2911. {
  2912. rc = cmErrMsg(&p->err,kMidiFailXsRC,"Unable to create the MIDI file object.");
  2913. goto errLabel;
  2914. }
  2915. return rc;
  2916. }
  2917. typedef struct cmXsSvgEvt_str
  2918. {
  2919. unsigned flags; // k???XsFl
  2920. unsigned tick; // start tick
  2921. unsigned durTicks; // dur-ticks
  2922. unsigned voice; // score voice number
  2923. unsigned d0; // MIDI d0 (barNumb)
  2924. unsigned d1; // MIDI d1
  2925. cmXsComplexity_t cplx;
  2926. struct cmXsSvgEvt_str* link;
  2927. } cmXsSvgEvt_t;
  2928. typedef struct cmXsMidiFile_str
  2929. {
  2930. cmXsSvgEvt_t* elist;
  2931. cmXsSvgEvt_t* eol;
  2932. unsigned pitch_min;
  2933. unsigned pitch_max;
  2934. } cmXsMidiFile_t;
  2935. void _cmXsWriteMidiSvgLegend( cmSvgH_t svgH, unsigned index, const cmChar_t* label, const cmChar_t* classStr )
  2936. {
  2937. double x = 100;
  2938. double y = 120*10 - 20*index;
  2939. cmSvgWriterText( svgH, x, y, label, "legend" );
  2940. x += 75;
  2941. cmSvgWriterLine( svgH, x, y, x+125, y, classStr );
  2942. }
  2943. void _cmXsWriteMidiSvgLinePoint( cmSvgH_t svgH, double x0, double y0, double x1, double y1, double y_max, const cmChar_t* classStr, const cmChar_t* label )
  2944. {
  2945. int bn = 255;
  2946. char b[bn+1];
  2947. double y_scale = 10;
  2948. double y_label = y1;
  2949. b[0] = 0;
  2950. y0 = (y0/y_max) * 127.0 * y_scale;
  2951. y1 = (y1/y_max) * 127.0 * y_scale;
  2952. cmSvgWriterLine(svgH, x0, y0, x1, y1, classStr );
  2953. if( y0 != y1 )
  2954. snprintf(b,bn,"%5.0f %s",y_label,label==NULL?"":label);
  2955. else
  2956. {
  2957. if( label != NULL )
  2958. snprintf(b,bn,"%s",label);
  2959. }
  2960. if( strlen(b) )
  2961. cmSvgWriterText(svgH, x1, y1, b, "pt_text");
  2962. }
  2963. cmXsRC_t _cmXsWriteMidiSvg( cmCtx_t* ctx, cmXScore_t* p, cmXsMidiFile_t* mf, const cmChar_t* dir, const cmChar_t* fn )
  2964. {
  2965. cmXsRC_t rc = kOkXsRC;
  2966. cmSvgH_t svgH = cmSvgNullHandle;
  2967. cmXsSvgEvt_t* e = mf->elist;
  2968. unsigned noteHeight = 10;
  2969. cmChar_t* fn0 = cmMemAllocStr( fn );
  2970. const cmChar_t* svgFn = cmFsMakeFn(dir,fn0 = cmTextAppendSS(fn0,"_midi_svg"),"html",NULL);
  2971. const cmChar_t* cssFn = cmFsMakeFn(NULL,"score_midi_svg","css",NULL);
  2972. cmChar_t* t0 = NULL; // temporary dynamic string
  2973. unsigned i = 0;
  2974. const cmXsSvgEvt_t* e0 = NULL;
  2975. cmMemFree(fn0);
  2976. // create the SVG writer
  2977. if( cmSvgWriterAlloc(ctx,&svgH) != kOkSvgRC )
  2978. {
  2979. rc = cmErrMsg(&p->err,kSvgFailXsRC,"Unable to create the MIDI SVG output file '%s'.",cmStringNullGuard(svgFn));
  2980. goto errLabel;
  2981. }
  2982. _cmXsWriteMidiSvgLegend( svgH, 0, "Velocity", "cplx_vel" );
  2983. _cmXsWriteMidiSvgLegend( svgH, 1, "Duration", "cplx_rym" );
  2984. _cmXsWriteMidiSvgLegend( svgH, 2, "Left Pitch", "cplx_lpch" );
  2985. _cmXsWriteMidiSvgLegend( svgH, 3, "Right Pitch", "cplx_rpch" );
  2986. _cmXsWriteMidiSvgLegend( svgH, 4, "Density", "cplx_density" );
  2987. // for each MIDI file element
  2988. for(; e!=NULL && rc==kOkXsRC; e=e->link)
  2989. {
  2990. switch( e->flags & (kOnsetXsFl|kBarXsFl|kDampDnXsFl|kDampUpDnXsFl|kSostDnXsFl))
  2991. {
  2992. // if this is a note
  2993. case kOnsetXsFl:
  2994. {
  2995. const cmChar_t* classLabel = "note";
  2996. t0 = cmTsPrintfP(t0,"note_%i%s",e->voice, cmIsFlag(e->flags,kGraceXsFl) ? "_g":"");
  2997. if( cmIsFlag(e->flags,kGraceXsFl) )
  2998. classLabel = "grace";
  2999. if( cmSvgWriterRect(svgH, e->tick, e->d0 * noteHeight, e->durTicks, noteHeight-1, t0 ) != kOkSvgRC )
  3000. rc = kSvgFailXsRC;
  3001. else
  3002. {
  3003. t0 = cmTsPrintfP(t0,"%s",cmMidiToSciPitch( e->d0, NULL, 0));
  3004. if( cmSvgWriterText(svgH, e->tick + e->durTicks/2, e->d0 * noteHeight + noteHeight/2, t0, "pitch") != kOkSvgRC )
  3005. rc = kSvgFailXsRC;
  3006. else
  3007. {
  3008. if( e0 != NULL )
  3009. {
  3010. bool fl = (i % 10) == 0;
  3011. _cmXsWriteMidiSvgLinePoint(svgH, e0->tick, e0->cplx.sum_d_vel, e->tick, e->cplx.sum_d_vel, p->cplx_max.sum_d_vel, "cplx_vel",fl?"V":NULL);
  3012. _cmXsWriteMidiSvgLinePoint(svgH, e0->tick, e0->cplx.sum_d_rym, e->tick, e->cplx.sum_d_rym, p->cplx_max.sum_d_rym, "cplx_rym",fl?"D":NULL);
  3013. _cmXsWriteMidiSvgLinePoint(svgH, e0->tick, e0->cplx.sum_d_lpch, e->tick, e->cplx.sum_d_lpch, p->cplx_max.sum_d_lpch, "cplx_lpch",fl?"L":NULL);
  3014. _cmXsWriteMidiSvgLinePoint(svgH, e0->tick, e0->cplx.sum_d_rpch, e->tick, e->cplx.sum_d_rpch, p->cplx_max.sum_d_rpch, "cplx_rpch",fl?"R":NULL);
  3015. _cmXsWriteMidiSvgLinePoint(svgH, e0->tick, e0->cplx.sum_n_lpch + e0->cplx.sum_n_rpch, e->tick, e->cplx.sum_n_lpch + e->cplx.sum_n_rpch, p->cplx_max.sum_n_lpch + p->cplx_max.sum_n_rpch, "cplx_density",fl?"N":NULL);
  3016. }
  3017. e0 = e;
  3018. }
  3019. }
  3020. i+=1;
  3021. }
  3022. break;
  3023. // if this is a bar
  3024. case kBarXsFl:
  3025. {
  3026. if( cmSvgWriterLine(svgH, e->tick, 0, e->tick, 127*noteHeight, "bar") != kOkSvgRC )
  3027. rc = kSvgFailXsRC;
  3028. else
  3029. {
  3030. if( cmSvgWriterText(svgH, e->tick, 10, t0 = cmTsPrintfP(t0,"%i",e->d0), "text" ) != kOkSvgRC )
  3031. rc = kSvgFailXsRC;
  3032. }
  3033. }
  3034. break;
  3035. // if this is a pedal event
  3036. case kDampDnXsFl:
  3037. case kDampUpDnXsFl:
  3038. case kSostDnXsFl:
  3039. {
  3040. const cmChar_t* classLabel = cmIsFlag(e->flags,kSostDnXsFl) ? "sost" : "damp";
  3041. unsigned y = (128 + cmIsFlag(e->flags,kSostDnXsFl)?1:0) * noteHeight;
  3042. cmSvgWriterRect(svgH, e->tick, y, e->durTicks, noteHeight-1, classLabel);
  3043. }
  3044. break;
  3045. }
  3046. }
  3047. if( rc != kOkXsRC )
  3048. cmErrMsg(&p->err,kSvgFailXsRC,"SVG element insert failed.");
  3049. if( rc == kOkXsRC )
  3050. if( cmSvgWriterWrite(svgH,cssFn,svgFn) != kOkSvgRC )
  3051. rc = cmErrMsg(&p->err,kSvgFailXsRC,"SVG file write to '%s' failed.",cmStringNullGuard(svgFn));
  3052. errLabel:
  3053. cmSvgWriterFree(&svgH);
  3054. cmFsFreeFn(svgFn);
  3055. cmFsFreeFn(cssFn);
  3056. cmMemFree(t0);
  3057. return rc;
  3058. }
  3059. void _cmXsPushSvgEvent( cmXScore_t* p, cmXsMidiFile_t* mf, unsigned flags, unsigned tick, unsigned durTick, unsigned voice, unsigned d0, unsigned d1, const cmXsComplexity_t* cplx )
  3060. {
  3061. cmXsSvgEvt_t* e = cmLhAllocZ(p->lhH,cmXsSvgEvt_t,1);
  3062. e->flags = flags;
  3063. e->tick = tick;
  3064. e->durTicks = durTick;
  3065. e->voice = voice;
  3066. e->d0 = d0; // note=pitch bar=number pedal=ctl# metronome=BPM
  3067. e->d1 = d1;
  3068. if( cplx != NULL )
  3069. e->cplx = *cplx;
  3070. if( mf->eol != NULL )
  3071. mf->eol->link = e;
  3072. else
  3073. mf->elist = e;
  3074. // track the min/max pitch
  3075. if( cmIsFlag(flags,kOnsetXsFl) )
  3076. {
  3077. mf->pitch_min = mf->eol==NULL ? d0 : cmMin(mf->pitch_min,d0);
  3078. mf->pitch_max = mf->eol==NULL ? d0 : cmMin(mf->pitch_max,d0);
  3079. }
  3080. mf->eol = e;
  3081. }
  3082. cmXsRC_t _cmXScoreGenSvg( cmCtx_t* ctx, cmXsH_t h, const cmChar_t* dir, const cmChar_t* fn )
  3083. {
  3084. cmXScore_t* p = _cmXScoreHandleToPtr(h);
  3085. cmXsPart_t* pp = p->partL;
  3086. cmXsMidiFile_t mf;
  3087. memset(&mf,0,sizeof(mf));
  3088. for(; pp!=NULL; pp=pp->link)
  3089. {
  3090. const cmXsMeas_t* meas = pp->measL;
  3091. for(; meas!=NULL; meas=meas->link)
  3092. {
  3093. const cmXsNote_t* note = meas->noteL;
  3094. for(; note!=NULL; note=note->slink)
  3095. {
  3096. // if this is a metronome marker
  3097. if( cmIsFlag(note->flags,kMetronomeXsFl) )
  3098. {
  3099. // set BPM as d0
  3100. _cmXsPushSvgEvent(p,&mf,note->flags,note->tick,0,0,note->duration,0,NULL);
  3101. continue;
  3102. }
  3103. // if this is a sounding note
  3104. if( cmIsFlag(note->flags,kOnsetXsFl) )
  3105. {
  3106. unsigned d0 = cmSciPitchToMidiPitch( note->step, note->alter, note->octave );
  3107. unsigned durTick = note->tied_dur;
  3108. if( note->tied != NULL )
  3109. {
  3110. cmXsNote_t* tn = note->tied;
  3111. for(; tn!=NULL; tn=tn->tied)
  3112. durTick += tn->tied_dur;
  3113. }
  3114. _cmXsPushSvgEvent(p,&mf,note->flags,note->tick,durTick,note->voice->id,d0,note->vel,&note->cplx);
  3115. continue;
  3116. }
  3117. // if this is a bar event
  3118. if( cmIsFlag(note->flags,kBarXsFl) )
  3119. {
  3120. _cmXsPushSvgEvent(p,&mf,note->flags,note->tick,0,0,note->meas->number,0,NULL);
  3121. continue;
  3122. }
  3123. // if this is a pedal event
  3124. if( cmIsFlag(note->flags,kDampDnXsFl|kDampUpDnXsFl|kSostDnXsFl) )
  3125. {
  3126. unsigned d0 = cmIsFlag(note->flags,kSostDnXsFl) ? kSostenutoCtlMdId : kSustainCtlMdId;
  3127. _cmXsPushSvgEvent(p,&mf,note->flags,note->tick,note->duration,0,d0,127,NULL);
  3128. continue;
  3129. }
  3130. }
  3131. }
  3132. }
  3133. return _cmXsWriteMidiSvg( ctx, p, &mf, dir, fn );
  3134. }
  3135. cmXsRC_t cmXScoreTest(
  3136. cmCtx_t* ctx,
  3137. const cmChar_t* xmlFn,
  3138. const cmChar_t* editFn,
  3139. const cmChar_t* csvOutFn,
  3140. const cmChar_t* midiOutFn)
  3141. {
  3142. cmXsRC_t rc;
  3143. cmXsH_t h = cmXsNullHandle;
  3144. if( editFn!=NULL && !cmFsIsFile(editFn) )
  3145. {
  3146. cmRptPrintf(&ctx->rpt,"The edit file %s does not exist. A new edit file will be created.",editFn);
  3147. cmXScoreGenEditFile(ctx,xmlFn,editFn);
  3148. editFn = NULL;
  3149. }
  3150. // Parse the XML file and apply the changes in editFn.
  3151. if((rc = cmXScoreInitialize( ctx, &h, xmlFn,editFn)) != kOkXsRC )
  3152. return cmErrMsg(&ctx->err,rc,"XScore alloc failed.");
  3153. if( csvOutFn != NULL )
  3154. {
  3155. cmScH_t scH = cmScNullHandle;
  3156. double srate = 44100.0;
  3157. cmXScoreWriteCsv(h,csvOutFn);
  3158. cmSymTblH_t stH = cmSymTblCreate(cmSymTblNullHandle, 0, ctx );
  3159. if( cmScoreInitialize( ctx, &scH, csvOutFn, srate, NULL, 0, NULL, NULL, stH) != kOkScRC )
  3160. cmErrMsg(&ctx->err,kFileFailXsRC,"The generated CSV file could not be parsed.");
  3161. else
  3162. {
  3163. //cmScorePrintSets(scH,&ctx->rpt);
  3164. //cmScorePrint(scH,&ctx->rpt);
  3165. cmScoreFinalize(&scH);
  3166. }
  3167. cmSymTblDestroy(&stH);
  3168. }
  3169. if( midiOutFn != NULL )
  3170. {
  3171. // measure the score complexity
  3172. double wndSecs = 1.0;
  3173. _cmXsMeasComplexity(h,wndSecs);
  3174. cmFileSysPathPart_t* pp = cmFsPathParts(midiOutFn);
  3175. _cmXsWriteMidiFile(ctx, h, pp->dirStr, pp->fnStr );
  3176. _cmXScoreGenSvg( ctx, h, pp->dirStr, pp->fnStr );
  3177. cmFsFreePathParts(pp);
  3178. }
  3179. //cmXScoreReport(h,&ctx->rpt,true);
  3180. return cmXScoreFinalize(&h);
  3181. }