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.

cmDspBuiltIn.c 153KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022
  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 "cmMath.h"
  12. #include "cmFile.h"
  13. #include "cmFileSys.h"
  14. #include "cmSymTbl.h"
  15. #include "cmJson.h"
  16. #include "cmPrefs.h"
  17. #include "cmProcObj.h"
  18. #include "cmDspValue.h"
  19. #include "cmDspCtx.h"
  20. #include "cmDspClass.h"
  21. #include "cmDspFx.h"
  22. #include "cmDspKr.h"
  23. #include "cmMsgProtocol.h"
  24. #include "cmThread.h"
  25. #include "cmUdpPort.h"
  26. #include "cmUdpNet.h"
  27. #include "cmAudioSys.h"
  28. #include "cmDspSys.h"
  29. #include "cmDspPreset.h" // required for cmDspNetSend
  30. #include "cmDspNet.h"
  31. #include "cmAudioFile.h"
  32. #include "cmThread.h" // used for threaded loading in wave table file mode
  33. #include "cmProcObj.h"
  34. #include "cmProcTemplateMain.h"
  35. #include "cmProc.h"
  36. #include "cmMidi.h"
  37. #include "cmProc2.h"
  38. #include "cmVectOpsTemplateMain.h"
  39. /*
  40. About variables:
  41. 1) Variables represent data fields within a DSP object.
  42. 2) Variables may also act as input (kInDsvFl) and/or output (kOutDsvFl) ports.
  43. A. Audio Ports
  44. - Audio output ports (kAudioBufDsvFl) publish a buffer of samples to subscribing
  45. audio input ports on other instances. (See cmDspSysConnectAudio(). )
  46. - Output audio ports are instantiated with physical buffers to hold samples of
  47. audio. Input audio ports contain internal pointers with point to the
  48. audio buffers of connected output ports.
  49. - Set cmDspVarArg_t.cn to the number of channels of audio the buffer will contain.
  50. B. Non-Audio Ports
  51. - Non-audio input ports may register to be called when output port values change.
  52. via cmDspSysInstallCb().
  53. - Type checking is done to guarantee that the output port data type matches one of the
  54. input port types or can be converted to one of the input port types.
  55. [TODO: Check how this is handled in cmDspSetEvent(). Let's say that an input port
  56. takes either a number or string. This conversion is not possible within the
  57. cmDspValue() framework - and yet it should work - or give an error ]
  58. 3) Creating variable instances.
  59. A. All variables must be given default values in the instance constructor
  60. _cmDspXXXAlloc(). This can be done automatically be giving default values
  61. in the var args section of the cmDspSysAllocInst() call or by explicitely
  62. setting default values via cmDspSetDefaultXXX() in _cmDspXXXAlloc().
  63. B. The _cmDspXXXReset() function automatically resets all the instance variables to their
  64. default value. By default, variables do not transmit their values when they are
  65. reset to their default value - unless the variable is marked with the kSendDfltDsvFl.
  66. (See cmDspClass.c:cmDspApplyDefault()). The 'out' port on cmDspScalar_t and cmDspButton_t
  67. are examples of instances that transmit their default value on reset.
  68. The order that instances are reset is determined by the order that they were created.
  69. A subtle case can arise when relying on default values to set the initial value of
  70. another object. Given two object instances A and B. Where The output of A has the
  71. the kSendDfltDsvFl set and is connected to an input port on B. If instance A was
  72. created before instance B then instance A will reset before instance B. During reset
  73. the output port of A will transmit it's default value to B - as expected. However
  74. when reset is called on instance B it will overwrite this value with it's own
  75. default value.
  76. In order for this scenario to work - that is the output of instance A sets the initial
  77. value of instance B - instance B must be created first.
  78. Since creation order also determines execution order this solution may not always
  79. be possible. It may be that we would simultaneously like instance A to exeute first
  80. and also recieve its initial value from instance B. Given the above example however
  81. these two goals are mutually exclusive.
  82. [*] This could be solved by explicitely allowing a variable to be reset via
  83. a callback. In this case if a variable was set via a callback during reset
  84. then it would not overwrite that value with its own internal value. This
  85. functionality would need to be set on a per instance bases - which might
  86. not work well with the current cmDspSysAllocInst() var args scheme.
  87. When a single output port is connected to multiple input ports the input ports
  88. are called in the order that the connections were made.
  89. To overcome this problem the reset cycle has been broken into two parts.
  90. In the first part the resetFunc is called on each instance in creation order.
  91. (as described above). Following this pass a second pass is made where the
  92. sysRecvFunc on any instance tagged with the '_reset' attribute is called.
  93. This allows an event callback chain to be executed prior to the first
  94. set of execFunc calls. Note that the event callback chain(s) are programmed
  95. by cmDspInstallCb() connections which are setup on a per application basis.
  96. This allows the initial state of the network to be set outside of the
  97. creation order.
  98. The 'button' instance implements a sysRecvFunc which will send the buttons
  99. value and symbol when called with the '_reset' attribute symbol. If a
  100. 'reset' button is created and assigned the '_reset' attribute symbol
  101. (via cmDspSysAssignAttrSymbol()) then the output of the button can be used
  102. to drive a networks initial state in an order determined by the application
  103. programmer.
  104. [TODO: Add a check that all instance variables have default values at the end of
  105. the network reset. This should be easy because the instance variable flag
  106. kDfltSetDsvFl is set in cmDspValueSet() when the default value is set.]
  107. C. The default value of variables may be set via the var args portion of cmDspSysAllocInst().
  108. There is currently a weakness during variable instance creation function
  109. cmDspInstAlloc() uses the cmDspVarArg_t.flags to determine the type of the var arg
  110. argument. cmDspVarArg_t.flags can therefore only be set to one DSV type - and the
  111. actual argument in the cmDspSysAllocInst() call must match that type. This is very
  112. easy to mess up - for example by setting the flag to kIntDsvFl and then putting
  113. 0.0 as the var arg value. This limitation also prevents ports which are also
  114. required arguments to cmDspSysAllocInst() (i.e. kReqArgDsvFl) from supporting
  115. multiple types.
  116. There are two possible ways to fix this:
  117. 1) Include the type flag in the var args list.
  118. 2) Specify a seperate var args flag in cmDspVarArg_t.
  119. Option 1 seems better because:
  120. a. [**] It would allow setting other per instance flags in the cmDspSysAllocInst() call [*].
  121. b. It would support setting a var arg termination flag rather than relying on the current
  122. explicit argument count.
  123. c. This is also the method used in cmJsonMemberValues() and it has worked well there.
  124. Either of these options requires a substantial change to existing code.
  125. This change should therefore be made sooner rather than later.
  126. As the system currently works it is possible, and it often happens, that
  127. an instance's recv function will be called before it is reset. It seems like
  128. this is a bad thing. Maybe the process of resetting and transmitting dflt
  129. values should be broken into seperate passes. This idea could be extended
  130. to type checking as follows:
  131. a. a reset-0 pass is made to set the internal state of each instance to
  132. known values.
  133. b. a type check pass is made where each output port
  134. sends a type msg to all connected input ports to provide the types that
  135. it will send.
  136. c. a reset-1 pass is made allowing all of the type information to be
  137. used to determine the initial state.
  138. d. an initial default value transmission pass is made where some instances
  139. (like scalars) may transmit initial values
  140. e. a reset-2 pass is made allowing the initial values to be acted on.
  141. f. runtime occurs
  142. D. Questions:
  143. 0) What are the ways that an instance variable can get set?
  144. a. cmDspValueSet() - This is the canonical value setting function.
  145. All other value setting function call this function.
  146. The cmDspSetXXX() are type safe wrappers to this function.
  147. b. cmDspApplyDefault() - assign the default value to the actual variable
  148. via a call to cmDspValueSet(). This function is automatically called
  149. by cmDspApplyAllDefaults() which is usually in the instance reset function.
  150. c. cmDspSetEvent() - assign the value embedded in an event message
  151. to a variable. This is a wrapper function for cmDspValueSet() which
  152. checks to see if the value need to be echoed to the UI. See
  153. more about UI echoing in the next section.
  154. 1) Where do events arriving at an instance receive function originate from?
  155. There are two sources of events:
  156. 1. The output ports of other instances.
  157. 2. The UI (client application).
  158. Events arriving from the UI can be distinguished from events arriving
  159. from other instances because they have the evt.kUiDspFl flag set.
  160. 2) How does UI updating and echoing actually work?
  161. a. Overview:
  162. On creation (in cmDsUi.c) variables whose value must be reflected to the UI
  163. are marked with the kUiDsvFl - these variables are called 'UI variables'.
  164. When a UI variable receive a new value
  165. the new value must be reflected in the associated UI GUI control.
  166. When and how this is accomplished depends on the source of the new
  167. variable value. There are two sources of events arriving at
  168. an instance's receive function: the output port of another instance
  169. or the UI.
  170. Events which originate from the UI are marked with a evt.kUiDspFl.
  171. (cmDspSys.c:_cmDspSysHandleUiMsg())
  172. When a UI variable receives a value from the output port of another
  173. instance (i.e. kUiDspFl not set) then it must always send that value to
  174. the UI. In other words if the evt.kUiDspFl is NOT set then the
  175. value must be sent to the UI.
  176. When a UI variable receives a value from the UI (i.e. the evt.kUiDspFl is set)
  177. it may or may not need to reflect the value. If the UI already
  178. reflects the value then the value does not need to be sent back
  179. otherwise it does.
  180. The UI control determines whether it wants to receive the value it
  181. is sending back by setting the kDuplexDuiFl flag in it's msg to the engine.
  182. Upon receipt of this msg, in cmDspSys.c:_cmDspSysHandleUiMsg(),
  183. the system converts the msg to an event. If the kDuplexDuiFl
  184. is set then the kUiEchoDspFl is set in the event.
  185. When a UI variable receives a value from the UI and the evt.kUiEchoDspFl
  186. is set then the value must be reflected, otherwise it must not.
  187. The rules for updating UI variables (var. w/ kUiDsvFl set) can
  188. be summarized as follows:
  189. kUiDspFl kUiEchoDspFl Send to UI Notes
  190. -------- ------------ ---------- -------------------------------------------------------------
  191. 0 0 Yes The value originated from another port and therefore must be reflected.
  192. 0 1 <invalid> If kUiEchoDspFl is set then so must kUiDspFl.
  193. 1 0 No
  194. 1 1 Yes The value originated from the UI and ehco was requested.
  195. This logic is automatically handled together by
  196. cmDspSetEvent() and cmDspValueSet().
  197. b. Variable values are sent and received to and from the UI using
  198. kValueDuiId messages.
  199. c. It is possible to prevent values generated in the engine from being
  200. reflected to the UI by setting the kNoUpdateUiDspFl in the call to
  201. cmDspValueSet().
  202. d. Instance variables are marked as UI variables by the cmDspUIXXXCreate()
  203. functions. Note that instances that have assoicated UI controls generally
  204. have multiple UI variables. (e.g. min,max,step,label,value).
  205. e. Messages arriving from the UI are handled by cmDspSys.c:_cmDspSysHandleUiMsg()
  206. where they are converted to cmDspEvt_t's. All events generated from
  207. msgs arriving from the UI are marked with the kUiDspFl. If the msg kDuplexDuiFl
  208. is set then the event flag kUiEchoDspFl is set - to indicate that the instance
  209. should send the value back to the UI.
  210. This leads to the following potential situation: The msg with kUiEchoDspFl
  211. set arrives at its target instance - which in turn calls cmDspSetEvent() to update
  212. the target variable value. Because kUiEchoDspFl is set the value is automatically
  213. reflected to the UI as expected. However as part of the call to
  214. cmDspValueSet() within cmDspSetEvent() the event is also sent to any connected
  215. instances - a problem would occur if kUiEchoDspFl remained set when it
  216. was sent to the connected instances - because they might then also try to update
  217. their own UI inappropriately. In fact this is not a problem because
  218. _cmDspSendEvt() zeros the the evt.flags value prior to resending the event.
  219. 3) Proposed Data Typing Framework:
  220. a. Instance variables are assigned 3 data types:
  221. 1. cmDspSysAllocInst() var args type. This is the type that the var args argument
  222. to the instance constructor must be. The value provided by this method
  223. becomes the default value for the variable. This type must be unique - multiple
  224. type flags cannot be used for this value.
  225. 2. Strict data type. This is the type used to define the variable value.
  226. Any values which will be used to set the value of this variable must be able
  227. to be converted to this type.
  228. If the variable is used as on input then the system will warn if an output port
  229. is assigned which cannot be converted to this type. If the variable is used as
  230. an output then this is the type the variable will publish as the output type.
  231. All values arriving at the functions 'recv' function are guaranteed to be
  232. able to be converted to this type.
  233. 3. Alternate data types. Multiple types may be given to this type.
  234. If no strict data type is given then this will be the set of types accepted
  235. for input and reported for output.
  236. All value messages for the instance which do not fit the strict data type,
  237. but do fit the alternate data type, will be sent to the 'altRecvFunc'
  238. function. The data type of events arriving at this function may therefore
  239. need to be decoded in order to use the assoicated values.
  240. b. Connections from an output with a strict data type can be type checked in
  241. advance - since they are guaranteed to emit a specific data type.
  242. Connections from outputs without strict data types can only be type checked
  243. at runtime - since it is possible for the type to change once the execution
  244. starts.
  245. c. Other notes about data types:
  246. It seems like cmDsvValues() should in general only allow one type flag (along with
  247. the kMtxDsvFl) to be set at a time if the flag state is legal. Is this always the
  248. case? Can a macro be included to routinely check this? Are we careful to
  249. not confuse the actual and possible type flags in DSP instance variables?
  250. This is important when checking the types of variables arriving at in input port.
  251. Include a macro to test the legality of the actual value type leaving output ports
  252. and entering input ports.
  253. Note that the cmXXXDsvFl flags have the problem that it is not possible to
  254. specify some multiple types. For example it is not possible to specify both
  255. scalar and matrix types simultaneously. Once the matrix flag is set it must
  256. be assumed that all specific data types then are matrices.
  257. THIS IS A FUNDAMENTAL PROBLEM THAT MUST BE ADDRESSED.
  258. Note that scalar numeric values can easily be cheaply converted to other numeric
  259. types. It could be expensive however if vectors required conversion.
  260. Vectors are currently being passed as pointers. No conversion is occurring.
  261. d. Another proposal:
  262. Following connection time there is a type determination pass. The network
  263. is traversed in execution order. Each instance computes and emits the single
  264. type assigned to each of its output ports. Once emited these types will not
  265. change during runtime.
  266. Note that this does not preclude an input receiving multiple types.
  267. If a variable arrives at an input port which does not match the type of
  268. the variable associated with that type then it is sent to the NoTypeRecv()
  269. instance function.
  270. 2. Do values only get sent on change? If not - why not?
  271. No - based on cmDspClass.ccmDspValueSet() values are transmitted
  272. whenever they are set - there is not check for a change of value.
  273. 3. Write a function to support generating multiple enumerated
  274. ports - as is required by AMix or ASplit.
  275. (This is now done: See cmDspClass.h:cmDspArgSetup() )
  276. Update the existing code to use this scheme. (This still needs to be done.)
  277. Similar functions need to be written for connecting groups of ports
  278. in cmDspPgm.c. (This still needs to be done.)
  279. 5. It does not appear that the kInDsvFl and kOutDsvFl are actually used during
  280. the connection process. This means that a variable marked as an output
  281. could be used as an input and v.v.. Likewise variable marked as neither input
  282. nor output could be accessed. What are the input and output flags actually
  283. used for?
  284. In fact kInDsvFl and kOutDsvFl are not used at all. (3/18/12).
  285. It might be nice to allow everything to be an output - but to
  286. force inputs to be explicitely named.
  287. 6. Is there any implication for marking a variable as both an input and an output?
  288. 7. The audio buffers allocated in cmDspInstAlloc() may not be memory aligned.
  289. 8. Is there a way to add a generic enable/disable function to all instances?
  290. 9. Should all output audio buffers be zeroed by default during _cmDspXXXReset()?
  291. 10. Is the kConstDsvFl used? respected? necessary?
  292. yes - it is necessary because some variables cannot be changed after the constructor
  293. is completed. For example any instance that take an argument giving the
  294. number of ports as a variable. The port count argument cannot change because it
  295. might invalidate connections which had been already made to the existing ports.
  296. TODO: find all variables which cannot be changed after the constructor and mark
  297. them as const and prevent them from being the target of connections or events.
  298. 11. Is it OK to not assign a variable as either an input or an output. (this would
  299. allow it to be set from cmDspSysAllocInst() but then only changed internally).
  300. 12. Write some template DSP instances that provide commented examples of the
  301. common scenarios which an actual instance might encounter.
  302. 13. All errors in instances should use cmDspClassErr() or cmDspInstErr() not cmErrMsg().
  303. Update existing code.
  304. 14. The way that the master controls are created is wrong. The master controls should
  305. be created during the cmDspSysLoad() process rather than being created in kcApp.cpp.
  306. This would make them essentially identical to other controls - and would allow the
  307. master controls to be manipulated easily from inside a DSP instance.
  308. 15. The code for creating and decoding messages seems to be distributed everywhere.
  309. All of this functionality should be moved to cmMsgProtocol.c. See the code
  310. for encoding/decoding messages in cmAudioSys.c as an example.
  311. 16. The default behavior of buttons should be to to NOT send out their default values or
  312. symbols on instance reset. Determining whether an output value is sent on instance
  313. reset (as they all are currently ??? or are only UI sent out on reset???)
  314. could be another argument flag setting [**].
  315. 17. cmDspInstAlloc() should include another version called cmDspInstAllocV()
  316. which takes the cmDspArg_t fields as var args. This would allow
  317. array variables which currently use cmDspArgSetupN() to be given
  318. in one call - which would be less error prone than using cmDspArgSetupN().
  319. 18. Add helper functions to create common dsp instances like:
  320. scalar,button,check,file,audio in,audio out. These functions should
  321. support default values through literals or through resource paths.
  322. 19. Design a sub-net function for making sub-nets of instance nets
  323. that can then be treated like instances themselves.
  324. For example make a network of audio sources:
  325. audio file, signal generator, audio input, with gain and frequency
  326. controls.
  327. 20. Network construction (cmDspPgm.c) is divided into two parts.
  328. First the instances are allocated and then they are connected.
  329. There should always be a test for a failure between construction
  330. phase and the connection phase and then again after the connection phase.
  331. 21. The existing instances are not using cmReal_t and cmSample_t as they should.
  332. 22. It is possible for cmDspInstAlloc() to fail in an instance constructor and
  333. yet we are not testing for it in many instances.
  334. When a failure occurs after cmDspInstAlloc() how is the instance deleted
  335. prior to returning? ... is it necessary to delete it prior to returning?
  336. 23. For instances which act as files and which take a file name as at an input
  337. port - the correct way to implement the object is to open/reopen the file
  338. both on reset and when a new file name is received.
  339. The reset open covers the case where the default filename is used.
  340. The receieve open covers the case where a filename is received via the input port.
  341. 24. After each call to an instance member function (reset,recv,exec,etc.) the
  342. interal error object should be checked. This way an invalid state can
  343. be signaled inside one of the functions without having to worry about
  344. propagating the error to the return value. THis means that as long as
  345. a member function can report and safely complete it doesn't have to do
  346. much error handling internally.
  347. 25. As it is currently implemented all audio system sub-system share a
  348. single UDP network managers. This is NOT thread-safe. If more than
  349. one audio sub-system is actually used the program will crash.
  350. This can be solved by giving each sub-system it's own UDP network
  351. manager, where each sub-system is given it's own port number.
  352. */
  353. //==========================================================================================================================================
  354. enum
  355. {
  356. kLblPrId,
  357. kMsPrId,
  358. kInPrId
  359. };
  360. cmDspClass_t _cmPrinterDC;
  361. typedef struct
  362. {
  363. cmDspInst_t inst;
  364. unsigned limitCycles;
  365. } cmDspPrinter_t;
  366. cmDspInst_t* _cmDspPrinterAlloc(cmDspCtx_t* ctx, cmDspClass_t* classPtr, unsigned storeSymId, unsigned instSymId, unsigned id, unsigned va_cnt, va_list vl )
  367. {
  368. cmDspVarArg_t args[] =
  369. {
  370. { "lbl", kLblPrId, 0, 0, kInDsvFl | kStrzDsvFl | kOptArgDsvFl, "Label" },
  371. { "ms", kMsPrId, 0, 0, kInDsvFl | kUIntDsvFl | kOptArgDsvFl, "Period"},
  372. { "in", kInPrId, 0, 0, kInDsvFl | kTypeDsvMask, "Input port" },
  373. { NULL, 0, 0, 0, 0 }
  374. };
  375. cmDspPrinter_t* p = cmDspInstAlloc(cmDspPrinter_t,ctx,classPtr,args,instSymId,id,storeSymId,va_cnt,vl);
  376. cmDspSetDefaultUInt(ctx,&p->inst,kMsPrId, 0, 0 );
  377. return &p->inst;
  378. }
  379. cmDspRC_t _cmDspPrinterReset(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  380. {
  381. cmDspPrinter_t* p = (cmDspPrinter_t*)inst;
  382. p->limitCycles = ctx->cycleCnt;
  383. return kOkDspRC;
  384. }
  385. cmDspRC_t _cmDspPrinterRecv(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  386. {
  387. cmDspPrinter_t* p = (cmDspPrinter_t*)inst;
  388. if( evt->dstVarId == kInPrId && ctx->cycleCnt >= p->limitCycles )
  389. {
  390. p->limitCycles = ctx->cycleCnt + (unsigned)(cmDspUInt(inst,kMsPrId) * cmDspSampleRate(ctx) / (1000.0 * cmDspSamplesPerCycle(ctx)) );
  391. const cmChar_t* lbl = cmDspStrcz(inst,kLblPrId);
  392. if( cmDsvIsSymbol(evt->valuePtr) )
  393. cmRptPrintf(ctx->rpt,"%s'%s'",lbl==NULL?"":lbl,cmStringNullGuard(cmSymTblLabel(ctx->stH,cmDsvSymbol(evt->valuePtr))));
  394. else
  395. cmDsvPrint(evt->valuePtr,lbl,ctx->rpt);
  396. cmRptPrint(ctx->rpt,"\n");
  397. }
  398. return kOkDspRC;
  399. }
  400. struct cmDspClass_str* cmPrinterClassCons( cmDspCtx_t* ctx )
  401. {
  402. cmDspClassSetup(&_cmPrinterDC,ctx,"Printer",
  403. NULL,
  404. _cmDspPrinterAlloc,
  405. NULL,
  406. _cmDspPrinterReset,
  407. NULL,
  408. _cmDspPrinterRecv,
  409. NULL,
  410. NULL,
  411. "Print the value of any event arriving at 'in'.");
  412. return &_cmPrinterDC;
  413. }
  414. //==========================================================================================================================================
  415. enum
  416. {
  417. kMinCntId,
  418. kMaxCntId,
  419. kIncCntId,
  420. kWrapCntId,
  421. kOutCntId,
  422. kCycCntId,
  423. kNxtCntId,
  424. };
  425. cmDspClass_t _cmCounterDC;
  426. typedef struct
  427. {
  428. cmDspInst_t inst;
  429. double val;
  430. bool disableFl;
  431. } cmDspCounter_t;
  432. cmDspRC_t _cmDspCounterValidate( cmDspInst_t* inst, double min, double max, double inc )
  433. {
  434. if( max < min )
  435. return cmErrMsg(&inst->classPtr->err,kInvalidArgDspRC,"The counter maximum (%f) value must be greater than the counter minimum (%f) value.",max,min);
  436. if( max - min < inc )
  437. return cmErrMsg(&inst->classPtr->err,kInvalidArgDspRC,"The counter increment value (%f) must be less than or equal to the maximum - minimum difference (%f).",inc,max-min);
  438. return kOkDspRC;
  439. }
  440. cmDspInst_t* _cmDspCounterAlloc(cmDspCtx_t* ctx, cmDspClass_t* classPtr, unsigned storeSymId, unsigned instSymId, unsigned id, unsigned va_cnt, va_list vl )
  441. {
  442. cmDspVarArg_t args[] =
  443. {
  444. { "min", kMinCntId, 0, 0, kInDsvFl | kDoubleDsvFl | kReqArgDsvFl, "minimum" },
  445. { "max", kMaxCntId, 0, 0, kInDsvFl | kDoubleDsvFl | kReqArgDsvFl, "maximum" },
  446. { "inc", kIncCntId, 0, 0, kInDsvFl | kDoubleDsvFl | kReqArgDsvFl, "increment"},
  447. { "wrap", kWrapCntId, 0, 0, kInDsvFl | kBoolDsvFl | kOptArgDsvFl, "wrap"},
  448. { "out", kOutCntId, 0, 0, kOutDsvFl | kDoubleDsvFl, "out"},
  449. { "cycles", kCycCntId, 0, 0, kOutDsvFl | kDoubleDsvFl, "cycles"},
  450. { "next", kNxtCntId, 0, 0, kInDsvFl | kTypeDsvMask, "next"},
  451. { NULL, 0, 0, 0, 0 }
  452. };
  453. cmDspCounter_t* p = cmDspInstAlloc(cmDspCounter_t,ctx,classPtr,args,instSymId,id,storeSymId,va_cnt,vl);
  454. double min = cmDspDefaultDouble( &p->inst, kMinCntId );
  455. double max = cmDspDefaultDouble( &p->inst, kMaxCntId );
  456. double inc = cmDspDefaultDouble( &p->inst, kIncCntId );
  457. if( _cmDspCounterValidate(&p->inst, min, max, inc ) != kOkDspRC )
  458. return NULL;
  459. cmDspSetDefaultBool( ctx, &p->inst, kWrapCntId, false, true);
  460. cmDspSetDefaultDouble( ctx, &p->inst, kOutCntId, 0.0, min );
  461. cmDspSetDefaultDouble( ctx, &p->inst, kCycCntId, 0.0, 0.0 );
  462. return &p->inst;
  463. }
  464. cmDspRC_t _cmDspCounterReset(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  465. {
  466. cmDspCounter_t* p = (cmDspCounter_t*)inst;
  467. cmDspApplyAllDefaults(ctx,inst);
  468. p->val = cmDspDouble(inst,kMinCntId);
  469. p->disableFl = false; // the default values must be ok or the constructor fails
  470. return kOkDspRC;
  471. }
  472. void _cmDspCounterIncr( cmDspCtx_t* ctx, cmDspInst_t* inst )
  473. {
  474. cmDspCounter_t* p = (cmDspCounter_t*)inst;
  475. double min = cmDspDouble(inst,kMinCntId);
  476. double max = cmDspDouble(inst,kMaxCntId);
  477. double inc = cmDspDouble(inst,kIncCntId);
  478. bool wrapFl = cmDspBool(inst,kWrapCntId);
  479. bool limitFl = min <= max;
  480. // If min > max then no upper/lower limit is set on the value.
  481. // In this case the ouput will continue to increment and
  482. // no 'cycle' output will be generated.
  483. // If wrapFl is not set then the 'cycle' output will fire
  484. // exactly once when the counter crosses its limit.
  485. // if the new value is in range then send it
  486. if( min <= p->val && p->val < max )
  487. cmDspSetDouble( ctx, inst, kOutCntId, p->val );
  488. // the current value is out of range and wrap flag is not set
  489. if( limitFl && (p->val < min || p->val >= max) && (wrapFl==false))
  490. return;
  491. // do the increment
  492. p->val += inc;
  493. // if the new value is out of range
  494. if( limitFl && (p->val < min || p->val >= max) )
  495. {
  496. // if wrapping is allowed
  497. if( wrapFl )
  498. {
  499. if( p->val >= max )
  500. p->val = min + (p->val - max); // wrap to begin
  501. else
  502. if( p->val < min )
  503. p->val = max - (min - p->val); // wrap to end
  504. }
  505. // increment the cycle counter
  506. cmDspSetDouble( ctx, inst, kCycCntId, cmDspDouble( inst, kCycCntId ) + 1 );
  507. }
  508. }
  509. cmDspRC_t _cmDspCounterRecv(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  510. {
  511. cmDspCounter_t* p = (cmDspCounter_t*)inst;
  512. cmDspRC_t rc = kOkDspRC;
  513. switch( evt->dstVarId )
  514. {
  515. case kWrapCntId:
  516. cmDspSetEvent(ctx,inst, evt );
  517. break;
  518. case kMinCntId:
  519. case kMaxCntId:
  520. case kIncCntId:
  521. {
  522. cmDspSetEvent( ctx, inst, evt );
  523. double min = cmDspDouble( inst, kMinCntId );
  524. double max = cmDspDouble( inst, kMaxCntId );
  525. double inc = cmDspDouble( inst, kIncCntId );
  526. p->disableFl = (rc = _cmDspCounterValidate(inst, min, max, inc)) != kOkDspRC;
  527. }
  528. break;
  529. case kNxtCntId:
  530. if( !p->disableFl )
  531. _cmDspCounterIncr(ctx,inst);
  532. break;
  533. default:
  534. { assert(0); }
  535. }
  536. return rc;
  537. }
  538. struct cmDspClass_str* cmCounterClassCons( cmDspCtx_t* ctx )
  539. {
  540. cmDspClassSetup(&_cmCounterDC,ctx,"Counter",
  541. NULL,
  542. _cmDspCounterAlloc,
  543. NULL,
  544. _cmDspCounterReset,
  545. NULL,
  546. _cmDspCounterRecv,
  547. NULL,
  548. NULL,
  549. "Counter object. Set min => max to have no limit on the value." );
  550. return &_cmCounterDC;
  551. }
  552. //==========================================================================================================================================
  553. enum
  554. {
  555. kMaxPhId,
  556. kMultPhId,
  557. kPhsPhId,
  558. kOutPhId
  559. };
  560. cmDspClass_t _cmPhasorDC;
  561. typedef struct
  562. {
  563. cmDspInst_t inst;
  564. } cmDspPhasor_t;
  565. cmDspInst_t* _cmDspPhasorAlloc(cmDspCtx_t* ctx, cmDspClass_t* classPtr, unsigned storeSymId, unsigned instSymId, unsigned id, unsigned va_cnt, va_list vl )
  566. {
  567. unsigned chs = 1;
  568. cmDspVarArg_t args[] =
  569. {
  570. { "max", kMaxPhId, 0, 0, kInDsvFl | kDoubleDsvFl | kOptArgDsvFl, "Maximum accumulator value" },
  571. { "mult", kMultPhId, 0, 0, kInDsvFl | kDoubleDsvFl | kOptArgDsvFl, "Increment multiplier" },
  572. { "phs", kPhsPhId, 0, 0, kInDsvFl | kDoubleDsvFl | kOptArgDsvFl, "Next phase value" },
  573. { "out", kOutPhId, 0, chs, kOutDsvFl | kAudioBufDsvFl, "Audio output." },
  574. { NULL, 0, 0, 0, 0 }
  575. };
  576. // allocate the instance
  577. cmDspPhasor_t* p = cmDspInstAlloc(cmDspPhasor_t,ctx,classPtr,args,instSymId,id,storeSymId,va_cnt,vl);
  578. // assign default values to any of the the optional arg's which may not have been set from vl.
  579. cmDspSetDefaultDouble(ctx, &p->inst, kMaxPhId, 0.0, DBL_MAX);
  580. cmDspSetDefaultDouble(ctx, &p->inst, kMultPhId, 0.0, 1.0);
  581. cmDspSetDefaultDouble(ctx, &p->inst, kPhsPhId, 0.0, 0.0);
  582. return &p->inst;
  583. }
  584. cmDspRC_t _cmDspPhasorReset(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  585. {
  586. cmDspApplyAllDefaults(ctx,inst);
  587. cmDspZeroAudioBuf( ctx, inst, kOutPhId );
  588. return kOkDspRC;
  589. }
  590. cmDspRC_t _cmDspPhasorExec(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  591. {
  592. cmSample_t* bp = cmDspAudioBuf(ctx,inst,kOutPhId,0);
  593. const cmSample_t* ep = bp + cmDspAudioBufSmpCount(ctx,inst,kOutPhId,0);
  594. double mult = cmDspDouble(inst,kMultPhId);
  595. double max = cmDspDouble(inst,kMaxPhId);
  596. double phs = cmDspDouble(inst,kPhsPhId);
  597. double inc = mult;
  598. for(; bp<ep; ++bp)
  599. {
  600. while( phs >= max )
  601. phs -= max;
  602. *bp = phs;
  603. phs += inc;
  604. }
  605. cmDspSetDouble(ctx,inst,kPhsPhId,phs);
  606. return kOkDspRC;
  607. }
  608. cmDspRC_t _cmDspPhasorRecv(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  609. {
  610. switch( evt->dstVarId )
  611. {
  612. case kMultPhId:
  613. case kMaxPhId:
  614. case kPhsPhId:
  615. cmDspSetEvent(ctx, inst, evt );;
  616. break;
  617. default:
  618. { assert(0); }
  619. }
  620. return kOkDspRC;
  621. }
  622. struct cmDspClass_str* cmPhasorClassCons( cmDspCtx_t* ctx )
  623. {
  624. cmDspClassSetup(&_cmPhasorDC,ctx,"Phasor",
  625. NULL,
  626. _cmDspPhasorAlloc,
  627. NULL,
  628. _cmDspPhasorReset,
  629. _cmDspPhasorExec,
  630. _cmDspPhasorRecv,
  631. NULL,
  632. NULL,
  633. "Ramp wave signal generator.");
  634. return &_cmPhasorDC;
  635. }
  636. //==========================================================================================================================================
  637. enum
  638. {
  639. kHzSgId,
  640. kShapeSgId,
  641. kGainSgId,
  642. kOtCntSgId,
  643. kOutSgId
  644. };
  645. enum
  646. {
  647. kWhiteSgId, // 0
  648. kPinkSgId, // 1
  649. kSineSgId, // 2
  650. kCosSgId, // 3
  651. kSawSgId, // 4
  652. kSqrSgId, // 5
  653. kTriSgId, // 6
  654. kPulseSgId, // 7
  655. kPhasorSgId // 8
  656. };
  657. cmDspClass_t _cmSigGenDC;
  658. typedef struct
  659. {
  660. cmDspInst_t inst;
  661. cmReal_t phs;
  662. cmSample_t reg;
  663. } cmDspSigGen_t;
  664. cmDspInst_t* _cmDspSigGenAlloc(cmDspCtx_t* ctx, cmDspClass_t* classPtr, unsigned storeSymId, unsigned instSymId, unsigned id, unsigned va_cnt, va_list vl )
  665. {
  666. cmDspVarArg_t args[] =
  667. {
  668. { "hz", kHzSgId, 0, 0, kInDsvFl | kDoubleDsvFl | kOptArgDsvFl, "Signal frequency in Hertz." },
  669. { "shape", kShapeSgId, 0, 0, kInDsvFl | kUIntDsvFl | kOptArgDsvFl, "Wave shape 0=sine 1=cosine 2=white 3=pink" },
  670. { "gain", kGainSgId, 0, 0, kInDsvFl | kDoubleDsvFl | kOptArgDsvFl, "Output gain."},
  671. { "ot", kOtCntSgId, 0, 0, kInDsvFl | kUIntDsvFl | kOptArgDsvFl, "Overtone count."},
  672. { "out", kOutSgId, 0, 1, kOutDsvFl | kAudioBufDsvFl, "Audio output." },
  673. { NULL, 0, 0, 0, 0 }
  674. };
  675. cmDspSigGen_t* p = cmDspInstAlloc(cmDspSigGen_t,ctx,classPtr,args,instSymId,id,storeSymId,va_cnt,vl);
  676. cmDspSetDefaultDouble(ctx, &p->inst, kHzSgId, 0.0, 1000);
  677. cmDspSetDefaultUInt( ctx, &p->inst, kShapeSgId, 0, 0);
  678. cmDspSetDefaultUInt( ctx, &p->inst, kOtCntSgId, 0, 0);
  679. cmDspSetDefaultDouble(ctx, &p->inst, kGainSgId, 0.0, 0.9 );
  680. return &p->inst;
  681. }
  682. cmDspRC_t _cmDspSigGenReset(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  683. {
  684. cmDspSigGen_t* p = (cmDspSigGen_t*)inst;
  685. p->phs = 0;
  686. cmDspApplyAllDefaults(ctx,inst);
  687. cmDspZeroAudioBuf( ctx, inst, kOutSgId );
  688. p->reg = 0;
  689. return kOkDspRC;
  690. }
  691. cmDspRC_t _cmDspSigGenExec(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  692. {
  693. cmDspSigGen_t* p = (cmDspSigGen_t*)inst;
  694. unsigned chIdx = 0;
  695. cmSample_t* bp = cmDspAudioBuf(ctx,inst,kOutSgId,chIdx);
  696. unsigned n = cmDspAudioBufSmpCount(ctx,inst,kOutSgId,chIdx);
  697. const cmSample_t* ep = bp + n;
  698. double hz = cmDspDouble(inst,kHzSgId);
  699. double sr = cmDspSampleRate(ctx);
  700. double fact = 2.0 * M_PI * hz / sr;
  701. int shape = cmDspUInt(inst,kShapeSgId);
  702. double offs = shape == kCosSgId ? (-M_PI / 2.0) : 0;
  703. double gain = cmDspDouble(inst,kGainSgId);
  704. unsigned otCnt = cmDspUInt(inst,kOtCntSgId);
  705. switch( shape )
  706. {
  707. case kWhiteSgId:
  708. while( bp < ep )
  709. *bp++ = gain * 2.0 * ((cmSample_t)rand() / RAND_MAX - 0.5);
  710. break;
  711. case kPinkSgId:
  712. while( bp < ep )
  713. {
  714. cmSample_t s = gain * 2.0 * ((cmSample_t)rand() / RAND_MAX - 0.5);
  715. *bp++ = (s + p->reg)/2;
  716. p->reg = s;
  717. }
  718. break;
  719. case kSineSgId:
  720. case kCosSgId:
  721. while( bp<ep )
  722. {
  723. *bp++ = (cmSample_t)(gain * sin( fact * p->phs + offs ));
  724. p->phs += 1.0;
  725. }
  726. break;
  727. case kSawSgId:
  728. p->phs = cmVOS_SynthSawtooth(bp,n,(unsigned)p->phs,sr,hz,otCnt);
  729. cmVOS_MultVS(bp,n,gain);
  730. break;
  731. case kSqrSgId:
  732. p->phs = cmVOS_SynthSquare( bp,n,(unsigned)p->phs,sr,hz,otCnt );
  733. cmVOS_MultVS(bp,n,gain);
  734. break;
  735. case kTriSgId:
  736. p->phs = cmVOS_SynthTriangle( bp,n,(unsigned)p->phs,sr,hz,otCnt );
  737. cmVOS_MultVS(bp,n,gain);
  738. break;
  739. case kPulseSgId:
  740. p->phs = cmVOS_SynthPulseCos( bp,n,(unsigned)p->phs,sr,hz,otCnt );
  741. cmVOS_MultVS(bp,n,gain);
  742. break;
  743. case kPhasorSgId:
  744. p->phs = cmVOS_SynthPhasor( bp,n,(unsigned)p->phs,sr,hz );
  745. cmVOS_MultVS(bp,n,gain);
  746. break;
  747. default:
  748. { assert(0); }
  749. }
  750. return kOkDspRC;
  751. }
  752. cmDspRC_t _cmDspSigGenRecv(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  753. {
  754. cmDspRC_t rc;
  755. if((rc = cmDspSetEvent(ctx,inst,evt)) == kOkDspRC )
  756. {
  757. switch( evt->dstVarId )
  758. {
  759. case kShapeSgId:
  760. //printf("%s %i\n",cmDspInstLabel(ctx,inst),cmDspUInt(inst,kShapeSgId));
  761. break;
  762. }
  763. }
  764. return rc;
  765. }
  766. struct cmDspClass_str* cmSigGenClassCons( cmDspCtx_t* ctx )
  767. {
  768. cmDspClassSetup(&_cmSigGenDC,ctx,"SigGen",
  769. NULL,
  770. _cmDspSigGenAlloc,
  771. NULL,
  772. _cmDspSigGenReset,
  773. _cmDspSigGenExec,
  774. _cmDspSigGenRecv,
  775. NULL,
  776. NULL,
  777. "Variable frequency and waveshape signal generator." );
  778. return &_cmSigGenDC;
  779. }
  780. //==========================================================================================================================================
  781. enum
  782. {
  783. kChAiId,
  784. kGainAiId,
  785. kOutAiId
  786. };
  787. cmDspClass_t _cmAudioInDC;
  788. typedef struct
  789. {
  790. cmDspInst_t inst;
  791. bool errFl; // used to control error reporting
  792. } cmDspAudioIn_t;
  793. cmDspInst_t* _cmDspAudioInAlloc(cmDspCtx_t* ctx, cmDspClass_t* classPtr, unsigned storeSymId, unsigned instSymId, unsigned id, unsigned va_cnt, va_list vl )
  794. {
  795. cmDspVarArg_t args[] =
  796. {
  797. { "ch", kChAiId, 0, 0, kInDsvFl | kUIntDsvFl | kReqArgDsvFl, "Audio input channel index"},
  798. { "gain", kGainAiId, 0, 0, kInDsvFl | kDoubleDsvFl | kOptArgDsvFl, "Input gain multiplier" },
  799. { "out", kOutAiId, 0, 1, kOutDsvFl | kAudioBufDsvFl, "Audio output" },
  800. { NULL, 0, 0, 0, 0 }
  801. };
  802. cmDspAudioIn_t* p = cmDspInstAlloc(cmDspAudioIn_t,ctx,classPtr,args,instSymId,id,storeSymId,va_cnt,vl);
  803. cmDspSetDefaultUInt( ctx, &p->inst, kChAiId, 0, 0);
  804. cmDspSetDefaultDouble( ctx, &p->inst, kGainAiId, 0, 1.0);
  805. return &p->inst;
  806. }
  807. cmDspRC_t _cmDspAudioInReset(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  808. {
  809. cmDspRC_t rc = kOkDspRC;
  810. cmDspAudioIn_t* p = (cmDspAudioIn_t*)inst;
  811. p->errFl = false;
  812. cmDspApplyAllDefaults(ctx,inst);
  813. return rc;
  814. }
  815. cmDspRC_t _cmDspAudioInExec(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  816. {
  817. unsigned chIdx = cmDspUInt(inst,kChAiId);
  818. unsigned iChCnt = ctx->ctx->iChCnt;
  819. cmDspAudioIn_t* p = (cmDspAudioIn_t*)inst;
  820. double gain = cmDspDouble(inst,kGainAiId);
  821. if( chIdx >= iChCnt )
  822. {
  823. if( p->errFl== false )
  824. {
  825. cmDspInstErr(ctx,inst,kInvalidArgDspRC,"The input channel index %i is invalid. Channel count:%i.",chIdx,iChCnt);
  826. p->errFl = true;
  827. }
  828. cmDspZeroAudioBuf(ctx,inst,kOutAiId);
  829. return kOkDspRC;
  830. }
  831. //unsigned n = cmDspSamplesPerCycle(ctx);
  832. unsigned n = cmDspAudioBufSmpCount(ctx,inst,kOutAiId,0);
  833. cmSample_t* dp = cmDspAudioBuf(ctx,inst,kOutAiId,0);
  834. assert( n == cmDspAudioBufSmpCount(ctx,inst,kOutAiId,chIdx));
  835. assert(dp != NULL);
  836. // if this channel is disabled then iChArray[chIdx] will be NULL
  837. if( ctx->ctx->iChArray[chIdx]!=NULL )
  838. cmVOS_MultVVS(dp,n,ctx->ctx->iChArray[chIdx],(cmSample_t)gain);
  839. return kOkDspRC;
  840. }
  841. cmDspRC_t _cmDspAudioInRecv(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  842. {
  843. cmDspRC_t rc = kOkDspRC;
  844. switch( evt->dstVarId )
  845. {
  846. case kChAiId:
  847. if( cmDspSetEvent(ctx,inst,evt) != kOkDspRC )
  848. {
  849. // if the exec callback was previously disabled and the new channel value is valid then re-enable the exec callback.
  850. if( inst->execFunc==NULL && cmDspUInt(inst,kChAiId) < ctx->ctx->iChCnt )
  851. inst->execFunc = _cmDspAudioInExec;
  852. }
  853. break;
  854. case kGainAiId:
  855. cmDspSetEvent(ctx,inst,evt);
  856. break;
  857. }
  858. return rc;
  859. }
  860. struct cmDspClass_str* cmAudioInClassCons( cmDspCtx_t* ctx )
  861. {
  862. cmDspClassSetup(&_cmAudioInDC,ctx,"AudioIn",
  863. NULL,
  864. _cmDspAudioInAlloc,
  865. NULL,
  866. _cmDspAudioInReset,
  867. _cmDspAudioInExec,
  868. _cmDspAudioInRecv,
  869. NULL,
  870. NULL,
  871. "Audio output port");
  872. return &_cmAudioInDC;
  873. }
  874. //==========================================================================================================================================
  875. enum
  876. {
  877. kChAoId,
  878. kGainAoId,
  879. kInAoId
  880. };
  881. cmDspClass_t _cmAudioOutDC;
  882. typedef struct
  883. {
  884. cmDspInst_t inst;
  885. } cmDspAudioOut_t;
  886. cmDspInst_t* _cmDspAudioOutAlloc(cmDspCtx_t* ctx, cmDspClass_t* classPtr, unsigned storeSymId, unsigned instSymId, unsigned id, unsigned va_cnt, va_list vl )
  887. {
  888. cmDspVarArg_t args[] =
  889. {
  890. { "ch", kChAoId, 0, 0, kInDsvFl | kUIntDsvFl | kReqArgDsvFl, "Audio output channel index"},
  891. { "gain",kGainAoId,0, 0, kInDsvFl | kDoubleDsvFl | kOptArgDsvFl, "Output gain multiplier"},
  892. { "in", kInAoId, 0, 1, kInDsvFl | kAudioBufDsvFl, "Audio input" },
  893. { NULL, 0, 0, 0, 0 }
  894. };
  895. cmDspAudioOut_t* p = cmDspInstAlloc(cmDspAudioOut_t,ctx,classPtr,args,instSymId,id,storeSymId,va_cnt,vl);
  896. cmDspSetDefaultUInt( ctx, &p->inst, kChAoId, 0, 0);
  897. cmDspSetDefaultDouble( ctx, &p->inst, kGainAoId, 0, 1.0);
  898. return &p->inst;
  899. }
  900. cmDspRC_t _cmDspAudioOutReset(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  901. {
  902. cmDspRC_t rc = kOkDspRC;
  903. cmDspApplyAllDefaults(ctx,inst);
  904. return rc;
  905. }
  906. cmDspRC_t _cmDspAudioOutExec(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  907. {
  908. cmDspRC_t rc = kOkDspRC;
  909. unsigned chIdx = cmDspUInt(inst,kChAoId);
  910. unsigned oChCnt = ctx->ctx->oChCnt;
  911. double gain = cmDspDouble(inst,kGainAoId);
  912. if( chIdx >= oChCnt )
  913. {
  914. rc = cmDspInstErr(ctx,inst,kInvalidArgDspRC,"The output channel index %i is invalid. Channel count:%i.",chIdx,oChCnt);
  915. inst->execFunc = NULL; // disable callbacks - this prevents the error msg from repeating
  916. return rc;
  917. }
  918. const cmSample_t* sp = cmDspAudioBuf(ctx,inst,kInAoId,0);
  919. if( sp == NULL )
  920. {
  921. inst->execFunc = NULL; // if there is no connected input then disable further callbacks
  922. return kOkDspRC;
  923. }
  924. unsigned n = cmDspSamplesPerCycle(ctx);
  925. assert( n == cmDspVarRows(inst,kInAoId) );
  926. // if this channel is disabled or set to pass-through then chArray[chIdx] will be NULL
  927. if( ctx->ctx->oChArray[chIdx] != NULL )
  928. cmVOS_MultVVS(ctx->ctx->oChArray[chIdx],n,sp,(cmSample_t)gain);
  929. return kOkDspRC;
  930. }
  931. cmDspRC_t _cmDspAudioOutRecv(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  932. {
  933. cmDspRC_t rc = kOkDspRC;
  934. switch( evt->dstVarId )
  935. {
  936. case kChAoId:
  937. if( cmDspSetEvent(ctx,inst,evt) != kOkDspRC )
  938. {
  939. // if the exec callback was previously disabled and the new channel value is valid then re-enable the exec callback.
  940. if( inst->execFunc==NULL && cmDspUInt(inst,kChAoId) < ctx->ctx->oChCnt )
  941. inst->execFunc = _cmDspAudioOutExec;
  942. }
  943. break;
  944. case kGainAoId:
  945. cmDspSetEvent(ctx,inst,evt);
  946. break;
  947. }
  948. return rc;
  949. }
  950. struct cmDspClass_str* cmAudioOutClassCons( cmDspCtx_t* ctx )
  951. {
  952. cmDspClassSetup(&_cmAudioOutDC,ctx,"AudioOut",
  953. NULL,
  954. _cmDspAudioOutAlloc,
  955. NULL,
  956. _cmDspAudioOutReset,
  957. _cmDspAudioOutExec,
  958. _cmDspAudioOutRecv,
  959. NULL,NULL,
  960. "Audio output port");
  961. return &_cmAudioOutDC;
  962. }
  963. //==========================================================================================================================================
  964. enum
  965. {
  966. kFnAofId,
  967. kChCntAofId,
  968. kGain0AofId,
  969. kGain1AofId,
  970. kIn0AofId,
  971. kIn1AofId,
  972. kSelAofId
  973. };
  974. cmDspClass_t _cmAudioFileOutDC;
  975. typedef struct
  976. {
  977. cmDspInst_t inst;
  978. cmSample_t* smpBuf;
  979. unsigned smpCnt;
  980. unsigned bits;
  981. cmAudioFileH_t afH;
  982. unsigned openSymId;
  983. unsigned closeSymId;
  984. } cmDspAudioFileOut_t;
  985. cmDspRC_t _cmDspAudioFileOutCreateFile( cmDspCtx_t* ctx, cmDspInst_t* inst, unsigned chCnt )
  986. {
  987. cmDspRC_t rc = kOkDspRC;
  988. cmDspAudioFileOut_t* p = (cmDspAudioFileOut_t*)inst;
  989. const cmChar_t* fn = cmDspStrcz(inst,kFnAofId);
  990. if(cmAudioFileIsValid(p->afH) )
  991. cmAudioFileDelete(&p->afH);
  992. if( cmAudioFileIsValid(p->afH = cmAudioFileNewCreate(fn, cmDspSampleRate(ctx), p->bits, chCnt, &rc, ctx->rpt )) == false )
  993. rc = cmDspClassErr(ctx,inst->classPtr,kVarArgParseFailDspRC,"The output audio file '%s' create failed.",fn);
  994. return rc;
  995. }
  996. cmDspInst_t* _cmDspAudioFileOutAlloc(cmDspCtx_t* ctx, cmDspClass_t* classPtr, unsigned storeSymId, unsigned instSymId, unsigned id, unsigned va_cnt, va_list vl )
  997. {
  998. cmDspVarArg_t args[] =
  999. {
  1000. { "fn", kFnAofId, 0, 0, kInDsvFl | kStrzDsvFl | kReqArgDsvFl, "Audio file name"},
  1001. { "chs", kChCntAofId, 0, 0, kInDsvFl | kUIntDsvFl | kReqArgDsvFl, "Channel count"},
  1002. { "gain0", kGain0AofId, 0, 0, kInDsvFl | kDoubleDsvFl | kOptArgDsvFl, "Output gain 0 multiplier"},
  1003. { "gain1", kGain1AofId, 0, 0, kInDsvFl | kDoubleDsvFl | kOptArgDsvFl, "Output gain 1 multiplier"},
  1004. { "in0", kIn0AofId, 0, 1, kInDsvFl | kAudioBufDsvFl, "Audio input 0"},
  1005. { "in1", kIn1AofId, 0, 1, kInDsvFl | kAudioBufDsvFl, "Audio input 1"},
  1006. { "sel", kSelAofId, 0, 0, kInDsvFl, "Open | Close"},
  1007. { NULL, 0, 0, 0, 0 }
  1008. };
  1009. cmDspAudioFileOut_t* p = cmDspInstAlloc(cmDspAudioFileOut_t,ctx,classPtr,args,instSymId,id,storeSymId,va_cnt,vl);
  1010. cmDspValue_t chCntVal;
  1011. cmDsvSetUInt(&chCntVal,cmMin(2,cmDspUInt(&p->inst,kChCntAofId)));
  1012. cmDspSetDefault(ctx, &p->inst, kChCntAofId, &chCntVal );
  1013. cmDspSetDefaultDouble( ctx, &p->inst, kGain0AofId, 0, 1.0);
  1014. cmDspSetDefaultDouble( ctx, &p->inst, kGain1AofId, 0, 1.0);
  1015. p->bits = 16;
  1016. p->afH = cmNullAudioFileH;
  1017. p->openSymId = cmSymTblRegisterStaticSymbol(ctx->stH,"open");
  1018. p->closeSymId = cmSymTblRegisterStaticSymbol(ctx->stH,"close");
  1019. return &p->inst;
  1020. }
  1021. cmDspRC_t _cmDspAudioFileOutReset(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  1022. {
  1023. cmDspRC_t rc = kOkDspRC;
  1024. cmDspAudioFileOut_t* p = (cmDspAudioFileOut_t*)inst;
  1025. unsigned chCnt = cmDspUInt(inst,kChCntAofId);
  1026. cmDspApplyAllDefaults(ctx,inst);
  1027. p->smpCnt = cmDspSamplesPerCycle(ctx) * chCnt;
  1028. p->smpBuf = cmLhResizeN(ctx->lhH, cmSample_t, p->smpBuf, p->smpCnt);
  1029. rc = _cmDspAudioFileOutCreateFile( ctx, inst, chCnt );
  1030. return rc;
  1031. }
  1032. cmDspRC_t _cmDspAudioFileOutExec(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  1033. {
  1034. cmDspRC_t rc = kOkDspRC;
  1035. cmDspAudioFileOut_t* p = (cmDspAudioFileOut_t*)inst;;
  1036. unsigned fpc = cmDspSamplesPerCycle(ctx);
  1037. unsigned chCnt = cmDspUInt(inst,kChCntAofId);
  1038. cmSample_t* chArray[chCnt];
  1039. unsigned i;
  1040. // Assume that both channls have the same number of samples.
  1041. // (cmAudioWriteFile() has the same constraint )
  1042. int sn = cmDspAudioBufSmpCount(ctx,inst,kIn0AofId,0);
  1043. // This code can handle the case where the input channels contain
  1044. // more than or less than cmDspSamplesPerCycle().
  1045. while(sn>0)
  1046. {
  1047. // we can process at most 'fpc' samples on one iteration
  1048. unsigned n = cmMin(sn,fpc);
  1049. sn -= n;
  1050. // apply output gain
  1051. for(i=0; i<chCnt; ++i)
  1052. {
  1053. chArray[i] = p->smpBuf + i*fpc;
  1054. const cmSample_t* sp = i==0 ? cmDspAudioBuf(ctx,inst,kIn0AofId,0) : cmDspAudioBuf(ctx,inst,kIn1AofId,0);
  1055. cmSample_t gain = i==0 ? cmDspDouble(inst,kGain0AofId) : cmDspDouble(inst,kGain1AofId);
  1056. cmVOS_MultVVS(chArray[i], n, sp, (cmSample_t)gain);
  1057. }
  1058. // write the samples
  1059. if( cmAudioFileWriteSample(p->afH, n, chCnt, chArray ) != kOkAfRC )
  1060. rc = cmDspClassErr(ctx,inst->classPtr,kFileWriteFailDspRC,"An audio output file write failed.");
  1061. }
  1062. return rc;
  1063. }
  1064. cmDspRC_t _cmDspAudioFileOutRecv( cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  1065. {
  1066. cmDspRC_t rc = kOkDspRC;
  1067. switch( evt->dstVarId )
  1068. {
  1069. case kGain1AofId:
  1070. case kGain0AofId:
  1071. cmDspSetEvent(ctx,inst,evt);
  1072. break;
  1073. case kFnAofId:
  1074. cmDspSetEvent(ctx,inst,evt);
  1075. rc = _cmDspAudioFileOutCreateFile(ctx,inst,cmDspUInt(inst,kChCntAofId));
  1076. break;
  1077. case kSelAofId:
  1078. {
  1079. cmDspAudioFileOut_t* p = (cmDspAudioFileOut_t*)inst;
  1080. unsigned symId = cmDsvSymbol(evt->valuePtr);
  1081. if( symId == p->openSymId )
  1082. rc = _cmDspAudioFileOutCreateFile(ctx,inst,cmDspUInt(inst,kChCntAofId));
  1083. else
  1084. {
  1085. if( symId == p->closeSymId )
  1086. {
  1087. if(cmAudioFileIsValid(p->afH) )
  1088. cmAudioFileDelete(&p->afH);
  1089. }
  1090. else
  1091. {
  1092. rc = cmErrMsg(&inst->classPtr->err,kInvalidArgDspRC,"Unknown selector symbol (%i) %s.",symId,cmStringNullGuard(cmSymTblLabel(ctx->stH,symId)));
  1093. }
  1094. }
  1095. }
  1096. }
  1097. return rc;
  1098. }
  1099. cmDspRC_t _cmDspAudioFileOutFree( cmDspCtx_t* ctx, struct cmDspInst_str* inst, const cmDspEvt_t* evtPtr )
  1100. {
  1101. cmDspAudioFileOut_t* p = (cmDspAudioFileOut_t*)inst;
  1102. if(cmAudioFileIsValid(p->afH) )
  1103. cmAudioFileDelete(&p->afH);
  1104. return kOkDspRC;
  1105. }
  1106. struct cmDspClass_str* cmAudioFileOutClassCons( cmDspCtx_t* ctx )
  1107. {
  1108. cmDspClassSetup(&_cmAudioFileOutDC,ctx,"AudioFileOut",
  1109. NULL,
  1110. _cmDspAudioFileOutAlloc,
  1111. _cmDspAudioFileOutFree,
  1112. _cmDspAudioFileOutReset,
  1113. _cmDspAudioFileOutExec,
  1114. _cmDspAudioFileOutRecv,
  1115. NULL,NULL,
  1116. "Audio file output port");
  1117. return &_cmAudioFileOutDC;
  1118. }
  1119. //==========================================================================================================================================
  1120. enum
  1121. {
  1122. kTypScId,
  1123. kMinScId,
  1124. kMaxScId,
  1125. kStpScId,
  1126. kValScId,
  1127. kLblScId,
  1128. kSendScId
  1129. };
  1130. cmDspClass_t _cmScalarDC;
  1131. typedef struct
  1132. {
  1133. cmDspInst_t inst;
  1134. } cmDspScalar_t;
  1135. cmDspInst_t* _cmDspScalarAlloc(cmDspCtx_t* ctx, cmDspClass_t* classPtr, unsigned storeSymId, unsigned instSymId, unsigned id, unsigned va_cnt, va_list vl )
  1136. {
  1137. cmDspVarArg_t args[] =
  1138. {
  1139. { "typ", kTypScId, 0, 0, kInDsvFl | kUIntDsvFl | kReqArgDsvFl, "Type" },
  1140. { "min", kMinScId, 0, 0, kInDsvFl | kDoubleDsvFl | kReqArgDsvFl, "Minimum value"},
  1141. { "max", kMaxScId, 0, 0, kInDsvFl | kDoubleDsvFl | kReqArgDsvFl, "Maximum value"},
  1142. { "step", kStpScId, 0, 0, kInDsvFl | kDoubleDsvFl | kReqArgDsvFl, "Step value (set to 0 to ignore)"},
  1143. { "val", kValScId, 0, 0, kInDsvFl | kOutDsvFl | kDoubleDsvFl | kReqArgDsvFl | kSendDfltDsvFl, "Current value"},
  1144. { "lbl", kLblScId, 0, 0, kStrzDsvFl | kOptArgDsvFl, "Label"},
  1145. { "send", kSendScId, 0, 0, kInDsvFl | kTypeDsvMask, "Send value on any msg."},
  1146. { NULL, 0, 0, 0, 0 }
  1147. };
  1148. cmDspScalar_t* p = cmDspInstAlloc(cmDspScalar_t,ctx,classPtr,args,instSymId,id,storeSymId,va_cnt,vl);
  1149. cmDspSetDefaultUInt( ctx, &p->inst, kTypScId, 0, kNumberDuiId);
  1150. cmDspSetDefaultDouble(ctx, &p->inst, kMinScId, 0.0, 0);
  1151. cmDspSetDefaultDouble(ctx, &p->inst, kMaxScId, 0.0, 1);
  1152. cmDspSetDefaultDouble(ctx, &p->inst, kStpScId, 0.0, 0);
  1153. unsigned typeId = cmDspDefaultUInt(&p->inst,kTypScId);
  1154. // create the UI control
  1155. cmDspUiScalarCreate(ctx,&p->inst,typeId,kMinScId,kMaxScId,kStpScId,kValScId,kLblScId);
  1156. return &p->inst;
  1157. }
  1158. cmDspRC_t _cmDspScalarReset(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  1159. {
  1160. cmDspApplyAllDefaults(ctx,inst);
  1161. return kOkDspRC;
  1162. }
  1163. cmDspRC_t _cmDspScalarRecv(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  1164. {
  1165. if( evt->dstVarId == kSendScId )
  1166. {
  1167. // NOT SURE IF THIS IS CORRECT OR NOT - IT SHOULD FORCE THE CURRENT VALUE TO BE
  1168. // SENT - THE CURRENT VALUE SHOULD ALREADY BE AT THE UI SO THERE DOESN'T SEEM
  1169. // TO BE ANY REASON TO UPDATE IT THERE.
  1170. cmDspSetDouble( ctx, inst, kValScId, cmDspDouble(inst,kValScId ));
  1171. return kOkDspRC;
  1172. }
  1173. switch( evt->dstVarId )
  1174. {
  1175. case kMinScId:
  1176. case kMaxScId:
  1177. case kStpScId:
  1178. case kValScId:
  1179. cmDspSetEvent(ctx,inst,evt);
  1180. break;
  1181. default:
  1182. {assert(0);}
  1183. }
  1184. return kOkDspRC;
  1185. }
  1186. cmDspRC_t _cmDspScalarPresetRdWr( cmDspCtx_t* ctx, cmDspInst_t* inst, bool storeFl )
  1187. {
  1188. return cmDspVarPresetRdWr(ctx,inst,kValScId,storeFl);
  1189. }
  1190. struct cmDspClass_str* cmScalarClassCons( cmDspCtx_t* ctx )
  1191. {
  1192. cmDspClassSetup(&_cmScalarDC,ctx,"Scalar",
  1193. NULL,
  1194. _cmDspScalarAlloc,
  1195. NULL,
  1196. _cmDspScalarReset,
  1197. NULL,
  1198. _cmDspScalarRecv,
  1199. _cmDspScalarPresetRdWr,
  1200. NULL,
  1201. "Scalar value control.");
  1202. return &_cmScalarDC;
  1203. }
  1204. //==========================================================================================================================================
  1205. enum
  1206. {
  1207. kValTxId,
  1208. kLblTxId
  1209. };
  1210. cmDspClass_t _cmTextDC;
  1211. typedef struct
  1212. {
  1213. cmDspInst_t inst;
  1214. } cmDspText_t;
  1215. cmDspInst_t* _cmDspTextAlloc(cmDspCtx_t* ctx, cmDspClass_t* classPtr, unsigned storeSymId, unsigned instSymId, unsigned id, unsigned va_cnt, va_list vl )
  1216. {
  1217. cmDspVarArg_t args[] =
  1218. {
  1219. { "val", kValTxId, 0, 0, kInDsvFl | kOutDsvFl | kStrzDsvFl | kReqArgDsvFl | kSendDfltDsvFl, "Current string"},
  1220. { "lbl", kLblTxId, 0, 0, kStrzDsvFl | kOptArgDsvFl, "Label"},
  1221. { NULL, 0, 0, 0, 0 }
  1222. };
  1223. cmDspText_t* p = cmDspInstAlloc(cmDspText_t,ctx,classPtr,args,instSymId,id,storeSymId,va_cnt,vl);
  1224. // create the UI control
  1225. cmDspUiTextCreate(ctx,&p->inst,kValTxId,kLblTxId);
  1226. return &p->inst;
  1227. }
  1228. cmDspRC_t _cmDspTextReset(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  1229. {
  1230. cmDspApplyAllDefaults(ctx,inst);
  1231. return kOkDspRC;
  1232. }
  1233. cmDspRC_t _cmDspTextRecv(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  1234. {
  1235. switch( evt->dstVarId )
  1236. {
  1237. case kValTxId:
  1238. cmDspSetEvent(ctx,inst,evt);
  1239. break;
  1240. default:
  1241. {assert(0);}
  1242. }
  1243. return kOkDspRC;
  1244. }
  1245. struct cmDspClass_str* cmTextClassCons( cmDspCtx_t* ctx )
  1246. {
  1247. cmDspClassSetup(&_cmTextDC,ctx,"Text",
  1248. NULL,
  1249. _cmDspTextAlloc,
  1250. NULL,
  1251. _cmDspTextReset,
  1252. NULL,
  1253. _cmDspTextRecv,
  1254. NULL,NULL,
  1255. "Text value control.");
  1256. return &_cmTextDC;
  1257. }
  1258. //==========================================================================================================================================
  1259. enum
  1260. {
  1261. kInMtId,
  1262. kMinMtId,
  1263. kMaxMtId,
  1264. kTimeMtId,
  1265. kLblMtId,
  1266. };
  1267. cmDspClass_t _cmMeterDC;
  1268. typedef struct
  1269. {
  1270. cmDspInst_t inst;
  1271. unsigned updSmpCnt;
  1272. unsigned lastCycleCnt;
  1273. double value;
  1274. unsigned cnt;
  1275. } cmDspMeter_t;
  1276. cmDspInst_t* _cmDspMeterAlloc(cmDspCtx_t* ctx, cmDspClass_t* classPtr, unsigned storeSymId, unsigned instSymId, unsigned id, unsigned va_cnt, va_list vl )
  1277. {
  1278. cmDspVarArg_t args[] =
  1279. {
  1280. { "in", kInMtId, 0, 0, kInDsvFl | kDoubleDsvFl | kReqArgDsvFl, "Current value"},
  1281. { "min", kMinMtId, 0, 0, kInDsvFl | kDoubleDsvFl | kReqArgDsvFl, "Minimum value"},
  1282. { "max", kMaxMtId, 0, 0, kInDsvFl | kDoubleDsvFl | kReqArgDsvFl, "Maximum value"},
  1283. { "time", kTimeMtId, 0, 0, kInDsvFl | kDoubleDsvFl | kOptArgDsvFl, "UI update time in milliseconds (default:50)"},
  1284. { "label",kLblMtId, 0, 0, kStrzDsvFl, "Label"},
  1285. { NULL, 0, 0, 0, 0 }
  1286. };
  1287. cmDspMeter_t* p = cmDspInstAlloc(cmDspMeter_t,ctx,classPtr,args,instSymId,id,storeSymId,va_cnt,vl);
  1288. cmDspSetDefaultDouble(ctx, &p->inst, kInMtId, 0.0, 0);
  1289. cmDspSetDefaultDouble(ctx, &p->inst, kMinMtId, 0.0, 0);
  1290. cmDspSetDefaultDouble(ctx, &p->inst, kMaxMtId, 0.0, 1);
  1291. cmDspSetDefaultDouble(ctx, &p->inst, kTimeMtId, 0.0, 50.0);
  1292. // create the UI control
  1293. cmDspUiMeterCreate(ctx,&p->inst,kMinMtId,kMaxMtId,kInMtId,kLblMtId);
  1294. return &p->inst;
  1295. }
  1296. cmDspRC_t _cmDspMeterReset(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  1297. {
  1298. cmDspMeter_t* p = (cmDspMeter_t*)inst;
  1299. cmDspApplyAllDefaults(ctx,inst);
  1300. double updateMs = cmDspDouble(inst,kTimeMtId);
  1301. p->updSmpCnt = floor(cmDspSampleRate(ctx) * updateMs / 1000.0);
  1302. p->lastCycleCnt = 0;
  1303. p->cnt = 0;
  1304. p->value = 0;
  1305. return kOkDspRC;
  1306. }
  1307. cmDspRC_t _cmDspMeterExec(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  1308. {
  1309. cmDspMeter_t* p = (cmDspMeter_t*)inst;
  1310. double curVal = p->value;
  1311. bool deltaFl = p->cnt!=0 && curVal != cmDspDouble(inst,kInMtId);
  1312. bool expireFl = (ctx->cycleCnt - p->lastCycleCnt) * cmDspSamplesPerCycle(ctx) > p->updSmpCnt;
  1313. // if the meter value changed and the update time has expired
  1314. if( deltaFl && expireFl )
  1315. {
  1316. cmDspSetDouble(ctx,inst,kInMtId,curVal);
  1317. p->value = 0;
  1318. p->cnt = 0;
  1319. p->lastCycleCnt = ctx->cycleCnt;
  1320. }
  1321. return kOkDspRC;
  1322. }
  1323. cmDspRC_t _cmDspMeterRecv(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  1324. {
  1325. cmDspMeter_t* p = (cmDspMeter_t*)inst;
  1326. switch( evt->dstVarId )
  1327. {
  1328. case kInMtId:
  1329. p->value = cmDsvGetDouble(evt->valuePtr);
  1330. ++p->cnt;
  1331. return kOkDspRC;
  1332. case kTimeMtId:
  1333. p->updSmpCnt = floor(cmDspSampleRate(ctx) * cmDsvGetDouble(evt->valuePtr) / 1000.0);
  1334. break;
  1335. }
  1336. return cmDspSetEvent(ctx,inst,evt);
  1337. }
  1338. struct cmDspClass_str* cmMeterClassCons( cmDspCtx_t* ctx )
  1339. {
  1340. cmDspClassSetup(&_cmMeterDC,ctx,"Meter",
  1341. NULL,
  1342. _cmDspMeterAlloc,
  1343. NULL,
  1344. _cmDspMeterReset,
  1345. _cmDspMeterExec,
  1346. _cmDspMeterRecv,
  1347. NULL,NULL,
  1348. "Meter display.");
  1349. return &_cmMeterDC;
  1350. }
  1351. //==========================================================================================================================================
  1352. enum
  1353. {
  1354. kInLbId,
  1355. kAlignLbId
  1356. };
  1357. cmDspClass_t _cmLabelDC;
  1358. typedef struct
  1359. {
  1360. cmDspInst_t inst;
  1361. } cmDspLabel_t;
  1362. cmDspInst_t* _cmDspLabelAlloc(cmDspCtx_t* ctx, cmDspClass_t* classPtr, unsigned storeSymId, unsigned instSymId, unsigned id, unsigned va_cnt, va_list vl )
  1363. {
  1364. cmDspVarArg_t args[] =
  1365. {
  1366. { "in", kInLbId, 0, 0, kInDsvFl | kStrzDsvFl | kReqArgDsvFl, "LabelText" },
  1367. { "align",kAlignLbId, 0, 0, kInDsvFl | kUIntDsvFl | kOptArgDsvFl, "Alignment 0=right 1=left 2=center" },
  1368. { NULL, 0, 0, 0, 0 }
  1369. };
  1370. cmDspLabel_t* p = cmDspInstAlloc(cmDspLabel_t,ctx,classPtr,args,instSymId,id,storeSymId,va_cnt,vl);
  1371. cmDspSetDefaultDouble(ctx, &p->inst, kAlignLbId, 0.0, kLeftAlignDuiId);
  1372. // create the UI control
  1373. cmDspUiLabelCreate(ctx,&p->inst,kInLbId,kAlignLbId);
  1374. return &p->inst;
  1375. }
  1376. cmDspRC_t _cmDspLabelReset(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  1377. {
  1378. cmDspApplyAllDefaults(ctx,inst);
  1379. return kOkDspRC;
  1380. }
  1381. cmDspRC_t _cmDspLabelRecv(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  1382. {
  1383. return cmDspSetEvent(ctx,inst,evt);
  1384. }
  1385. struct cmDspClass_str* cmLabelClassCons( cmDspCtx_t* ctx )
  1386. {
  1387. cmDspClassSetup(&_cmLabelDC,ctx,"Label",
  1388. NULL,
  1389. _cmDspLabelAlloc,
  1390. NULL,
  1391. _cmDspLabelReset,
  1392. NULL,
  1393. _cmDspLabelRecv,
  1394. NULL,NULL,
  1395. "Label control.");
  1396. return &_cmLabelDC;
  1397. }
  1398. //==========================================================================================================================================
  1399. enum
  1400. {
  1401. kTypBtId,
  1402. kOutBtId,
  1403. kSymBtId,
  1404. kLblBtId,
  1405. kInBtId
  1406. };
  1407. cmDspClass_t _cmButtonDC;
  1408. typedef struct
  1409. {
  1410. cmDspInst_t inst;
  1411. unsigned resetSymId;
  1412. } cmDspButton_t;
  1413. cmDspInst_t* _cmDspButtonAlloc(cmDspCtx_t* ctx, cmDspClass_t* classPtr, unsigned storeSymId, unsigned instSymId, unsigned id, unsigned va_cnt, va_list vl )
  1414. {
  1415. va_list vl1;
  1416. va_copy(vl1,vl);
  1417. assert( va_cnt >= 1 );
  1418. unsigned typeId = va_arg(vl,unsigned);
  1419. // check buttons should transmit their default values - push buttons should not.
  1420. unsigned sendDfltFl = typeId == kCheckDuiId ? kSendDfltDsvFl : 0;
  1421. cmDspVarArg_t args[] =
  1422. {
  1423. { "typ", kTypBtId, 0, 0, kUIntDsvFl | kReqArgDsvFl, "Type" },
  1424. { "out", kOutBtId, 0, 0, kOutDsvFl | kDoubleDsvFl | kOptArgDsvFl | sendDfltFl, "Value"},
  1425. { "sym", kSymBtId, 0, 0, kOutDsvFl | kSymDsvFl | kOptArgDsvFl | sendDfltFl, "Symbol Value"},
  1426. { "label",kLblBtId, 0, 0, kInDsvFl | kStrzDsvFl | kOptArgDsvFl, "Label"},
  1427. { "in", kInBtId, 0, 0, kInDsvFl | kTypeDsvMask, "Simulate UI"},
  1428. { NULL, 0, 0, 0, 0 }
  1429. };
  1430. cmDspButton_t* p = cmDspInstAlloc(cmDspButton_t,ctx,classPtr,args,instSymId,id,storeSymId,va_cnt,vl1);
  1431. cmDspSetDefaultDouble(ctx, &p->inst, kOutBtId, 0.0, typeId==kCheckDuiId ? 0.0 : 1.0);
  1432. cmDspSetDefaultSymbol(ctx, &p->inst, kSymBtId, instSymId );
  1433. cmDspSetDefaultStrcz( ctx, &p->inst, kLblBtId, NULL, cmSymTblLabel(ctx->stH,instSymId));
  1434. p->resetSymId = cmSymTblRegisterStaticSymbol(ctx->stH,"_reset");
  1435. // create the UI control
  1436. cmDspUiButtonCreate(ctx,&p->inst,typeId,kOutBtId,kLblBtId);
  1437. return &p->inst;
  1438. }
  1439. cmDspRC_t _cmDspButtonReset(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  1440. {
  1441. cmDspApplyAllDefaults(ctx,inst);
  1442. return kOkDspRC;
  1443. }
  1444. cmDspRC_t _cmDspButtonRecv(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  1445. {
  1446. // the 'in' port is the only input port
  1447. // but the UI sends button pushes use kOutBtId - should this be changed?
  1448. assert( evt->dstVarId == kInBtId || evt->dstVarId == kOutBtId );
  1449. // We accept all types at the 'in' port but are only interested
  1450. // in transmitting doubles from the 'out' port.
  1451. if( cmDsvCanConvertFlags( kDoubleDsvFl, evt->valuePtr->flags ) )
  1452. {
  1453. // Redirect events which can be converted to type kDoubleDsvFl
  1454. // to the output port.
  1455. //
  1456. // Convert the event dest var id from the 'kInBtId' to 'kOutBtId'
  1457. // and update the UI with the incoming value
  1458. cmDspSetEventUiId(ctx,inst,evt,kOutBtId);
  1459. }
  1460. // no matter what kind of msg enters the 'in' port send a symbol out the 'sym' port
  1461. if( inst->symId != cmInvalidId )
  1462. cmDspSetSymbol( ctx, inst, kSymBtId, inst->symId );
  1463. return kOkDspRC;
  1464. }
  1465. cmDspRC_t _cmDspButtonPresetRdWr( cmDspCtx_t* ctx, cmDspInst_t* inst, bool storeFl )
  1466. {
  1467. cmDspRC_t rc = kOkDspRC;
  1468. if( cmDspUInt(inst,kTypBtId) == kCheckDuiId )
  1469. rc = cmDspVarPresetRdWr(ctx,inst,kOutBtId,storeFl);
  1470. return rc;
  1471. }
  1472. cmDspRC_t _cmDspButtonSysRecvFunc( cmDspCtx_t* ctx, struct cmDspInst_str* inst, unsigned attrSymId, const cmDspValue_t* value )
  1473. {
  1474. cmDspButton_t* p = (cmDspButton_t*)inst;
  1475. if( attrSymId == p->resetSymId )
  1476. {
  1477. cmDspSetSymbol( ctx, inst, kSymBtId, p->resetSymId );
  1478. cmDspSetDouble(ctx,inst,kOutBtId, cmDspDouble(inst,kOutBtId));
  1479. }
  1480. return kOkDspRC;
  1481. }
  1482. struct cmDspClass_str* cmButtonClassCons( cmDspCtx_t* ctx )
  1483. {
  1484. cmDspClassSetup(&_cmButtonDC,ctx,"Button",
  1485. NULL,
  1486. _cmDspButtonAlloc,
  1487. NULL,
  1488. _cmDspButtonReset,
  1489. NULL,
  1490. _cmDspButtonRecv,
  1491. _cmDspButtonPresetRdWr,
  1492. _cmDspButtonSysRecvFunc,
  1493. "Button control.");
  1494. return &_cmButtonDC;
  1495. }
  1496. //==========================================================================================================================================
  1497. cmDspClass_t _cmReorderDC;
  1498. typedef struct
  1499. {
  1500. cmDspInst_t inst;
  1501. unsigned portCnt; // count of input ports and count of output ports
  1502. unsigned* execFlArray; // execFlArray[portCnt] - true for ports which should cause obj to generate output
  1503. unsigned* orderArray; // orderArray[portCnt] - port output order map
  1504. } cmDspReorder_t;
  1505. cmDspInst_t* _cmDspReorderAlloc(cmDspCtx_t* ctx, cmDspClass_t* classPtr, unsigned storeSymId, unsigned instSymId, unsigned id, unsigned va_cnt, va_list vl )
  1506. {
  1507. if( va_cnt < 1 )
  1508. {
  1509. cmDspClassErr(ctx,classPtr,kVarArgParseFailDspRC,"Reorder objects must have arguments.");
  1510. return NULL;
  1511. }
  1512. // the first argument is the count of input ports (which is also the count of output ports)
  1513. int portCnt = va_arg(vl,int);
  1514. if( portCnt < 2 )
  1515. {
  1516. cmDspClassErr(ctx,classPtr,kInvalidArgDspRC,"Reorder objects must have at least 2 ports.");
  1517. return NULL;
  1518. }
  1519. cmDspVarArg_t args[portCnt*2+1];
  1520. unsigned i;
  1521. int maxLabelCharCnt = 15;
  1522. cmChar_t label[ maxLabelCharCnt+1 ];
  1523. label[maxLabelCharCnt] = 0;
  1524. for(i=0; i<portCnt*2; ++i)
  1525. {
  1526. snprintf(label,maxLabelCharCnt,"%s-%i", (i<portCnt?"in":"out"), i%portCnt);
  1527. unsigned symId = cmSymTblRegisterSymbol(ctx->stH,label);
  1528. args[i].label = cmSymTblLabel(ctx->stH,symId);
  1529. args[i].constId = i;
  1530. args[i].rn = 0;
  1531. args[i].cn = 0;
  1532. args[i].flags = (i<portCnt ? kInDsvFl : kOutDsvFl) | kTypeDsvMask;
  1533. args[i].doc = i<portCnt ? "Any input" : "Any output";
  1534. }
  1535. memset(args+i,0,sizeof(args[0]));
  1536. cmDspReorder_t* p = cmDspInstAlloc(cmDspReorder_t,ctx,classPtr,args,instSymId,id,storeSymId,va_cnt,vl);
  1537. if( p != NULL )
  1538. {
  1539. p->orderArray = cmLhAllocZ(ctx->lhH,unsigned,portCnt*2);
  1540. p->execFlArray = p->orderArray + portCnt;
  1541. p->portCnt = portCnt;
  1542. if( va_cnt-1 < portCnt )
  1543. cmDspClassErr(ctx,classPtr,kVarArgParseFailDspRC,"The reorder constructor must contain an output order map.");
  1544. else
  1545. {
  1546. for(i=0; i<portCnt; ++i)
  1547. {
  1548. int order = va_arg(vl,int);
  1549. if( order >= portCnt )
  1550. cmDspClassErr(ctx,classPtr,kInvalidArgDspRC,"The port order index %i is outside the valid range of 0-%i.",order,portCnt-1);
  1551. else
  1552. p->orderArray[ order ] = i;
  1553. }
  1554. va_cnt -= portCnt+1;
  1555. for(i=0; i<va_cnt; ++i)
  1556. {
  1557. int execPortIdx = va_arg(vl,int);
  1558. if( execPortIdx >= portCnt )
  1559. cmDspClassErr(ctx,classPtr,kInvalidArgDspRC,"The port exec index %i is outside the valid range of 0-%i.",execPortIdx,portCnt-1);
  1560. else
  1561. p->execFlArray[ execPortIdx ] = true;
  1562. }
  1563. }
  1564. }
  1565. return &p->inst;
  1566. }
  1567. cmDspRC_t _cmDspReorderFree(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  1568. {
  1569. cmDspReorder_t* p = (cmDspReorder_t*)inst;
  1570. cmLhFree(ctx->lhH,p->orderArray);
  1571. return kOkDspRC;
  1572. }
  1573. cmDspRC_t _cmDspReorderRecv(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  1574. {
  1575. cmDspRC_t rc = kOkDspRC;
  1576. cmDspReorder_t* p = (cmDspReorder_t*)inst;
  1577. cmDspSetEvent(ctx,inst,evt);
  1578. if( evt->dstVarId < p->portCnt )
  1579. if( p->execFlArray[evt->dstVarId] )
  1580. {
  1581. unsigned i;
  1582. for(i=0; i<p->portCnt; ++i)
  1583. {
  1584. unsigned inVarId = p->orderArray[i];
  1585. unsigned outVarId = inVarId + p->portCnt;
  1586. const cmDspVar_t* varPtr = cmDspVarIdToCPtr(inst, inVarId );
  1587. assert(varPtr != NULL);
  1588. if((rc = cmDspValueSet(ctx, inst, outVarId, &varPtr->value, 0 )) != kOkDspRC )
  1589. break;
  1590. }
  1591. }
  1592. return rc;
  1593. }
  1594. struct cmDspClass_str* cmReorderClassCons( cmDspCtx_t* ctx )
  1595. {
  1596. cmDspClassSetup(&_cmReorderDC,ctx,"Reorder",
  1597. NULL,
  1598. _cmDspReorderAlloc,
  1599. _cmDspReorderFree,
  1600. NULL,
  1601. NULL,
  1602. _cmDspReorderRecv,
  1603. NULL,NULL,
  1604. "Reorder value control.");
  1605. return &_cmReorderDC;
  1606. }
  1607. //==========================================================================================================================================
  1608. enum
  1609. {
  1610. kDirFnId,
  1611. kPatFnId,
  1612. kValFnId,
  1613. };
  1614. cmDspClass_t _cmFnameDC;
  1615. typedef struct
  1616. {
  1617. cmDspInst_t inst;
  1618. } cmDspFname_t;
  1619. // Pattern string for HTML and image files:
  1620. // "HTML Files (*.html)\tImage Files (*.{bmp,gif,jpg,png})"
  1621. // The va_list must include 3 args:
  1622. // A pointer to a string referning to a default filename or directory or NULL.
  1623. // A pointer to a string referring to a pattern string or NULL.
  1624. // A bool to set the 'dirFl'.
  1625. cmDspInst_t* _cmDspFnameAlloc(cmDspCtx_t* ctx, cmDspClass_t* classPtr, unsigned storeSymId, unsigned instSymId, unsigned id, unsigned va_cnt, va_list vl )
  1626. {
  1627. cmDspVarArg_t args[] =
  1628. {
  1629. { "dir", kDirFnId, 0, 0, kInDsvFl | kReqArgDsvFl | kBoolDsvFl, "Dir=true Filename=false" },
  1630. { "pat", kPatFnId, 0, 0, kInDsvFl | kOptArgDsvFl | kStrzDsvFl, "File pattern string (e.g. HTML Files (*.html)\tImage Files (*.{bmp,gif,jpg,png}))" },
  1631. { "out", kValFnId, 0, 0, kOutDsvFl | kOptArgDsvFl | kStrzDsvFl, "Current file or directory name." },
  1632. { NULL, 0, 0, 0, 0 }
  1633. };
  1634. cmDspFname_t* p = cmDspInstAlloc(cmDspFname_t,ctx,classPtr,args,instSymId,id,storeSymId,va_cnt,vl);
  1635. cmDspSetDefaultBool( ctx, &p->inst, kDirFnId, false, false);
  1636. cmDspSetDefaultStrcz(ctx, &p->inst, kPatFnId, NULL, "All Files (*.*)");
  1637. cmDspSetDefaultStrcz(ctx, &p->inst, kValFnId, NULL, cmFsUserDir());
  1638. cmDspUiFnameCreate(ctx,&p->inst,kValFnId,kPatFnId,kDirFnId);
  1639. return &p->inst;
  1640. }
  1641. cmDspRC_t _cmDspFnameReset(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  1642. {
  1643. cmDspApplyAllDefaults(ctx,inst);
  1644. return kOkDspRC;
  1645. }
  1646. cmDspRC_t _cmDspFnameRecv(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  1647. {
  1648. cmDspSetEvent(ctx,inst,evt);
  1649. switch( evt->dstVarId )
  1650. {
  1651. case kDirFnId:
  1652. case kPatFnId:
  1653. case kValFnId:
  1654. break;
  1655. default:
  1656. {assert(0);}
  1657. }
  1658. return kOkDspRC;
  1659. }
  1660. struct cmDspClass_str* cmFnameClassCons( cmDspCtx_t* ctx )
  1661. {
  1662. cmDspClassSetup(&_cmFnameDC,ctx,"Fname",
  1663. NULL,
  1664. _cmDspFnameAlloc,
  1665. NULL,
  1666. _cmDspFnameReset,
  1667. NULL,
  1668. _cmDspFnameRecv,
  1669. NULL,NULL,
  1670. "File or directory chooser control.");
  1671. return &_cmFnameDC;
  1672. }
  1673. //==========================================================================================================================================
  1674. cmDspClass_t _cmMsgListDC;
  1675. typedef struct
  1676. {
  1677. cmDspInst_t inst;
  1678. cmJsonH_t jsH; // current JSON tree
  1679. cmJsonNode_t* np; // ptr to JSON array
  1680. unsigned colCnt; // number of elements in the JSON sub-arrays (rows)
  1681. cmJsonH_t dfltJsH; // default JSON tree (the default JSON array node ptr (np) is stored in the var array but we must also maintain the assoc'd JSON handle othwerwise the pointer will not be valid)
  1682. unsigned* typeIdArray; // JSON types for each column size: typeIdArray[ colCnt ]
  1683. unsigned symColCnt; // same as number of elements of typeIdArray[] == kStringTId
  1684. unsigned symRowCnt; // same as cmJsonChildCount(p->np)
  1685. unsigned* symM; // symM[symRowCnt,symColCnt] symbol matrix
  1686. } cmDspMsgList_t;
  1687. // create a matrix to hold the symbol id's associated with any string values
  1688. cmDspRC_t _cmDspMsgListLoadSymbolMtx( cmDspCtx_t* ctx, cmDspMsgList_t* p )
  1689. {
  1690. assert(cmJsonIsArray(p->np));
  1691. unsigned i,j,k;
  1692. // remove any existing symbols
  1693. if( p->symM != NULL )
  1694. for(i=0; i<p->symColCnt*p->symRowCnt; ++i)
  1695. if( p->symM[i] != cmInvalidId )
  1696. cmSymTblRemove(ctx->stH,p->symM[i]);
  1697. // reallocate the symbol matrix
  1698. p->symRowCnt = cmJsonChildCount(p->np);
  1699. p->symM = cmLhResizeN(ctx->lhH,unsigned,p->symM,p->symRowCnt*p->symColCnt);
  1700. // for each row in the JSON array
  1701. for(i=0; i<p->symRowCnt; ++i)
  1702. {
  1703. const cmJsonNode_t* cnp = cmJsonArrayElementC(p->np,i);
  1704. // for each column in row whose data type is a string
  1705. for(j=0,k=0; k<p->symColCnt; ++j)
  1706. if( p->typeIdArray[j] == kStringTId )
  1707. {
  1708. const cmJsonNode_t* vnp = cmJsonArrayElementC(cnp,j);
  1709. unsigned idx = k*p->symRowCnt + i;
  1710. const cmChar_t* text;
  1711. // register the string with the symbol table
  1712. if((text = vnp->u.stringVal) != NULL )
  1713. p->symM[ idx ] = cmSymTblRegisterStaticSymbol(ctx->stH,text);
  1714. else
  1715. p->symM[ idx ] = cmInvalidId;
  1716. ++k;
  1717. }
  1718. }
  1719. return kOkDspRC;
  1720. }
  1721. // Load a JSON file and set the supplied cmJsonH_t handle.
  1722. cmDspRC_t _cmDspMsgListLoadFile( cmDspCtx_t* ctx, cmErr_t* err, const cmChar_t* rsrcLabel, const cmChar_t* fn, cmJsonH_t* hp, unsigned* colCntPtr, cmJsonNode_t** npp )
  1723. {
  1724. cmDspRC_t rc = kOkDspRC; //
  1725. cmJsonNode_t* np = NULL; //
  1726. cmJsonH_t jsH = cmJsonNullHandle; //
  1727. *hp = cmJsonNullHandle;
  1728. *colCntPtr = 0;
  1729. *npp = NULL;
  1730. // if no file name was given ...
  1731. if( fn==NULL || strlen(fn)==0 )
  1732. {
  1733. jsH = ctx->rsrcJsH; // ... use the rsrc file
  1734. if( cmJsonIsValid(ctx->rsrcJsH) == false )
  1735. return cmErrMsg(err,kJsonFailDspRC,"No JSON cfg resource exists for this DSP program.");
  1736. fn = NULL;
  1737. }
  1738. else
  1739. {
  1740. if( cmJsonInitializeFromFile(&jsH,fn,ctx->cmCtx) != kOkJsRC )
  1741. return cmErrMsg(err,kJsonFailDspRC,"The msg list JSON file load failed on '%s'.",fn);
  1742. }
  1743. // find the array named by rsrcLabel
  1744. if((np = cmJsonFindValue(jsH,rsrcLabel,NULL,cmInvalidId)) == NULL)
  1745. return cmErrMsg(err,kJsonFailDspRC,"The msg list JSON tree does not have an array named '%s'.",rsrcLabel);
  1746. // be sure the msg list really is an array
  1747. if( cmJsonIsArray(np) == false )
  1748. return cmErrMsg(err,kJsonFailDspRC,"The msg list JSON element named '%s' is not an array.", rsrcLabel);
  1749. if( fn == NULL )
  1750. fn = "<resource file>";
  1751. // count of elements in the array
  1752. unsigned n = cmJsonChildCount(np);
  1753. unsigned m = 0;
  1754. unsigned i,j;
  1755. // for each line in the array
  1756. for(i=0; i<n; ++i)
  1757. {
  1758. const cmJsonNode_t* cnp;
  1759. // get the ith sub-array (row)
  1760. if((cnp = cmJsonArrayElementC(np,i)) != NULL )
  1761. {
  1762. // verify that it is an array
  1763. if( cmJsonIsArray(cnp ) == false )
  1764. return cmErrMsg(err,kJsonFailDspRC,"The msg list JSON element in '%s' at index %i is not an array.",fn,i);
  1765. // track the number of elements (columns) per row
  1766. unsigned q = cmJsonChildCount(cnp);
  1767. // if this is the first row then use it to set the valid column count
  1768. if( i==0 )
  1769. m = q;
  1770. else
  1771. {
  1772. if( m != q )
  1773. return cmErrMsg(err,kJsonFailDspRC,"The msg list sub-array at index %i has a different number of elements than the preceding sub-arrays in '%s'.",i,fn);
  1774. }
  1775. }
  1776. }
  1777. //
  1778. // determine and validate the column types
  1779. //
  1780. unsigned typeIdArray[m];
  1781. // for each row
  1782. for(i=0; i<n; ++i)
  1783. {
  1784. const cmJsonNode_t* cnp = cmJsonArrayElementC(np,i);
  1785. // for each column
  1786. for(j=0; j<m; ++j)
  1787. {
  1788. const cmJsonNode_t* sap = cmJsonArrayElementC(cnp,j);
  1789. unsigned typeId = sap->typeId & kMaskTId;
  1790. // the first row sets the expected type id for each column
  1791. switch(i)
  1792. {
  1793. case 0:
  1794. if( typeId != kStringTId )
  1795. return cmErrMsg(err,kJsonFailDspRC,"The first row of a msg list (%s) file must contain string elements which set the colum labels.",rsrcLabel);
  1796. break;
  1797. case 1:
  1798. typeIdArray[j] = typeId;
  1799. break;
  1800. default:
  1801. {
  1802. // if the type is a string then it can only
  1803. // match if the column is a string or null
  1804. // so we assume an error
  1805. if( typeId == kStringTId )
  1806. rc = kJsonFailDspRC;
  1807. switch(typeIdArray[j])
  1808. {
  1809. case kStringTId:
  1810. if( typeId != kStringTId && typeId != kNullTId)
  1811. return cmErrMsg(err,kJsonFailDspRC,"The msg list element at row index %i column index %i cannot be converted to a string in '%s'.",i,j,fn);
  1812. rc = kOkDspRC; // clear the assummed error
  1813. break;
  1814. case kNullTId: // null can be converted to anything
  1815. typeIdArray[j] = typeId;
  1816. break;
  1817. case kIntTId:
  1818. if( typeId == kRealTId ) // ints may be promoted to reals
  1819. typeIdArray[j] = kRealTId;
  1820. break;
  1821. case kRealTId:
  1822. break;
  1823. case kFalseTId:
  1824. case kTrueTId: // bools may be promoted to ints or reals
  1825. if( typeId == kIntTId || typeId == kRealTId )
  1826. typeIdArray[j] = typeId;
  1827. break;
  1828. default:
  1829. return cmErrMsg(err,kJsonFailDspRC,"The msg list element at row index %i column index %i is not a string,int,real,bool, or null type in '%s'.",i,j,fn);
  1830. }
  1831. if( rc != kOkDspRC )
  1832. return cmErrMsg(err,kJsonFailDspRC,"The string msg list element at row index %i column index %i cannot be converted to the column type in '%s'.",i,j,fn);
  1833. } // end dflt
  1834. } // end switch
  1835. } // end row
  1836. } // end list
  1837. // VERY TRICKY - store the column type id's in the label columns type id.
  1838. // This is stupid but safe because the column type id's are known to be set to kStringTId.
  1839. cmJsonNode_t* lnp = np->u.childPtr->u.childPtr;
  1840. for(i=0; i<m; ++i,lnp=lnp->siblingPtr)
  1841. lnp->typeId = typeIdArray[i];
  1842. *hp = fn==NULL ? cmJsonNullHandle : jsH;
  1843. *npp = np;
  1844. *colCntPtr = m;
  1845. return rc;
  1846. }
  1847. // use the JSON list labels to setup the cmDspVarArg_t records associated with each msg output var.
  1848. cmDspMsgList_t* _cmDspMsgListCons( cmDspCtx_t* ctx, cmDspClass_t* classPtr, unsigned storeSymId, unsigned instSymId, unsigned id, const cmDspVarArg_t* args, cmJsonH_t jsH, unsigned colCnt, cmJsonNode_t* np, unsigned typeIdArray[], unsigned va_cnt, va_list vl )
  1849. {
  1850. unsigned i,j;
  1851. unsigned fixedArgCnt = 0;
  1852. for(i=0; args[i].label != NULL; ++i)
  1853. ++fixedArgCnt;
  1854. cmDspVarArg_t a[ fixedArgCnt + colCnt + 1 ];
  1855. // copy the fixed arg's into the first fixedArgCnt ele's of a[]
  1856. for(j=0; j<fixedArgCnt; ++j)
  1857. a[j] = args[j];
  1858. // remove the label row from the JSON array
  1859. cmJsonNode_t* lnp = np->u.childPtr; // store the pointer to the label row
  1860. //np->u.childPtr = lnp->siblingPtr; // remove the labels from the array
  1861. // for each column
  1862. for(i=0; i<colCnt; ++i,++j)
  1863. {
  1864. cmJsonNode_t* lp = cmJsonArrayElement(lnp,i);
  1865. // store a pointer to the label
  1866. a[j].label = lp->u.stringVal;
  1867. a[j].constId = j;
  1868. a[j].rn = 0;
  1869. a[j].cn = 0;
  1870. a[j].flags = kOutDsvFl;
  1871. a[j].doc = "Msg output";
  1872. typeIdArray[i] = lp->typeId;
  1873. // convert the JSON type to a DSV type
  1874. switch( lp->typeId )
  1875. {
  1876. case kNullTId: a[j].flags |= kUIntDsvFl; break;
  1877. case kIntTId: a[j].flags |= kIntDsvFl; break;
  1878. case kRealTId: a[j].flags |= kDoubleDsvFl; break;
  1879. case kTrueTId: a[j].flags |= kBoolDsvFl; break;
  1880. case kFalseTId: a[j].flags |= kBoolDsvFl; break;
  1881. case kStringTId: a[j].flags |= kSymDsvFl; break; // strings are treated as symbols (UInt)
  1882. default:
  1883. { assert(0); }
  1884. }
  1885. // undo the tricky bit with the label types
  1886. lp->typeId = kStringTId;
  1887. }
  1888. // set the null sentinel at the end of the arg array
  1889. memset(a + j,0,sizeof(cmDspVarArg_t));
  1890. return (cmDspMsgList_t*)cmDspInstAlloc(cmDspMsgList_t,ctx,classPtr,a,instSymId,id,storeSymId,va_cnt,vl);
  1891. }
  1892. cmDspRC_t _cmDspMsgListReload( cmDspCtx_t* ctx, cmDspMsgList_t* p, const cmChar_t* rsrcLabel, const cmChar_t* fn )
  1893. {
  1894. cmDspRC_t rc = kOkDspRC;
  1895. cmJsonH_t jsH = cmJsonNullHandle;
  1896. unsigned colCnt = 0;
  1897. cmJsonNode_t* np = NULL;
  1898. // load the file
  1899. if((rc = _cmDspMsgListLoadFile(ctx,&p->inst.classPtr->err,rsrcLabel,fn,&jsH,&colCnt,&np)) != kOkDspRC )
  1900. return cmDspInstErr(ctx,&p->inst,kJsonFailDspRC,"The msg list file '%s' load failed.",fn);
  1901. // verify that the col count is correct
  1902. if( colCnt != p->colCnt )
  1903. return cmDspInstErr(ctx,&p->inst,kJsonFailDspRC,"The column count (%i) of msg list file '%s does not match the msg list column count %i.",colCnt,p->colCnt);
  1904. unsigned fixArgCnt = p->inst.varCnt - p->colCnt;
  1905. cmJsonNode_t* lnp = np->u.childPtr->u.childPtr;
  1906. unsigned i,j;
  1907. for(i=0,j=fixArgCnt; i<colCnt; ++i,++j, lnp=lnp->siblingPtr)
  1908. {
  1909. const cmChar_t* labelStr = cmSymTblLabel(ctx->stH,p->inst.varArray[j].symId);
  1910. // the labels of the new file must match the labels of the previous file
  1911. if( strcmp(lnp->u.stringVal,labelStr) )
  1912. return cmDspInstErr(ctx,&p->inst,kJsonFailDspRC,"The msg list file '%s' label '%s' does not match the msg list label '%s' in column index %i.",fn,labelStr,lnp->u.stringVal,i);
  1913. // if the msg column is a string ....
  1914. if( (p->inst.varArray[j].flags & kTypeDsvMask) == kStrzDsvFl )
  1915. {
  1916. // ... then the file column must also be a string or null
  1917. if( lnp->typeId != kStringTId && np->typeId != kNullTId )
  1918. return cmDspInstErr(ctx,&p->inst,kJsonFailDspRC,"The data type of msg list file '%s' column index %i must be a string or null.",fn,i);
  1919. }
  1920. else // otherwie if the msg column is a number ...
  1921. {
  1922. // ... then the file type can't be a string
  1923. if( lnp->typeId == kStringTId )
  1924. return cmDspInstErr(ctx,&p->inst,kJsonFailDspRC,"The data type of msg list file '%s' column index %i cannot be a string.",fn,i);
  1925. // TODO: maybe there are other type conversions to check for here.
  1926. }
  1927. // reset the typeid of the labels
  1928. // (this is a cleanup from the tricky bit at the end of _cmDspListLoadFile())
  1929. lnp->typeId = kStringTId;
  1930. }
  1931. if( cmJsonIsValid( jsH ) )
  1932. {
  1933. if( cmHandlesAreNotEqual(p->jsH,p->dfltJsH) && cmHandlesAreNotEqual(p->jsH,ctx->rsrcJsH) )
  1934. cmJsonFinalize(&p->jsH);
  1935. p->jsH = jsH;
  1936. p->np = np;
  1937. _cmDspMsgListLoadSymbolMtx(ctx,p);
  1938. }
  1939. return rc;
  1940. }
  1941. enum
  1942. {
  1943. kRsrcMlId,
  1944. kFnMlId,
  1945. kSelMlId,
  1946. kListMlId,
  1947. kCntMlId,
  1948. kOutBaseMlId // identify the first output port
  1949. };
  1950. cmDspInst_t* _cmDspMsgListAlloc(cmDspCtx_t* ctx, cmDspClass_t* classPtr, unsigned storeSymId, unsigned instSymId, unsigned id, unsigned va_cnt, va_list vl )
  1951. {
  1952. va_list vl2;
  1953. cmDspVarArg_t args[] =
  1954. {
  1955. { "rsrc", kRsrcMlId, 0, 0, kInDsvFl | kReqArgDsvFl | kStrzDsvFl, "Msg list resource label"},
  1956. { "fn", kFnMlId, 0, 0, kInDsvFl | kOptArgDsvFl | kStrzDsvFl, "Msg list file name" },
  1957. { "sel", kSelMlId, 0, 0, kOutDsvFl | kInDsvFl | kOptArgDsvFl | kUIntDsvFl, "Current selection index" },
  1958. { "list", kListMlId, 0, 0, kInDsvFl | kJsonDsvFl, "Msg list data as a JSON array"},
  1959. { "cnt", kCntMlId, 0, 0, kOutDsvFl | kSendDfltDsvFl | kUIntDsvFl , "Count of elements."},
  1960. { NULL, 0, 0, 0, 0 }
  1961. };
  1962. va_copy(vl2,vl);
  1963. if( va_cnt < 1 )
  1964. {
  1965. cmErrMsg(&classPtr->err,kVarArgParseFailDspRC,"The message list constructor must contain at least two arguments.");
  1966. goto errLabel;
  1967. }
  1968. const cmChar_t* rsrcLabel = va_arg(vl,const char*);
  1969. const cmChar_t* fn = va_cnt>1 ? va_arg(vl,const char*) : NULL;
  1970. unsigned colCnt = 0;
  1971. cmJsonH_t jsH = cmJsonNullHandle;
  1972. cmDspMsgList_t* p;
  1973. cmJsonNode_t* np;
  1974. cmDspRC_t rc;
  1975. // be sure the rsrc label contains a valid string
  1976. if( rsrcLabel==NULL || strlen(rsrcLabel)==0 )
  1977. {
  1978. cmErrMsg(&classPtr->err,kVarArgParseFailDspRC,"No msg list resource label was given.");
  1979. goto errLabel;
  1980. }
  1981. // load and validate the JSON file
  1982. if((rc = _cmDspMsgListLoadFile(ctx,&classPtr->err,rsrcLabel,fn,&jsH,&colCnt,&np)) == kOkDspRC )
  1983. {
  1984. unsigned i;
  1985. unsigned typeIdArray[colCnt];
  1986. // allocate the instance
  1987. if((p = _cmDspMsgListCons(ctx,classPtr,storeSymId,instSymId,id,args,jsH,colCnt, np, typeIdArray, va_cnt, vl2 )) != NULL )
  1988. {
  1989. p->jsH = jsH;
  1990. p->np = np;
  1991. p->dfltJsH = jsH;
  1992. p->colCnt = colCnt;
  1993. p->typeIdArray = cmLhAllocZ( ctx->lhH, unsigned, colCnt );
  1994. memcpy(p->typeIdArray,typeIdArray,sizeof(p->typeIdArray[0])*colCnt);
  1995. p->symColCnt = 0;
  1996. for(i=0; i<p->colCnt; ++i)
  1997. if( p->typeIdArray[i] == kStringTId )
  1998. ++p->symColCnt;
  1999. _cmDspMsgListLoadSymbolMtx(ctx,p);
  2000. cmDspSetDefaultStrcz( ctx,&p->inst, kRsrcMlId,NULL, rsrcLabel); // rsrc label
  2001. cmDspSetDefaultStrcz( ctx,&p->inst, kFnMlId, NULL, fn); // file name var
  2002. cmDspSetDefaultJson( ctx,&p->inst, kListMlId,NULL, np); // default tree
  2003. cmDspSetDefaultUInt( ctx,&p->inst, kSelMlId, 0, 0); // selection
  2004. cmDspSetDefaultUInt( ctx,&p->inst, kCntMlId, 0, p->symRowCnt);
  2005. // if there is only one column then signal the UI to create a menu button rather
  2006. // than a list by setting the height to zero.
  2007. unsigned height = p->colCnt == 1 ? 0 : 5;
  2008. // create the list UI element
  2009. cmDspUiMsgListCreate(ctx, &p->inst, height, kListMlId, kSelMlId );
  2010. return &p->inst;
  2011. }
  2012. }
  2013. errLabel:
  2014. return NULL;
  2015. }
  2016. cmDspRC_t _cmDspMsgListFree(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  2017. {
  2018. cmDspMsgList_t* p = (cmDspMsgList_t*)inst;
  2019. // be careful not release the ctx->rsrcJsH handle if is happens to be the p->dflJsH
  2020. if( cmJsonIsValid(p->dfltJsH) && cmHandlesAreNotEqual(p->jsH,p->dfltJsH) && cmHandlesAreNotEqual(p->dfltJsH,ctx->rsrcJsH))
  2021. if( cmJsonFinalize(&p->dfltJsH) != kOkJsRC )
  2022. cmDspInstErr(ctx,inst,kJsonFailDspRC,"JSON default tree finalize failed.");
  2023. // be careful not to release the ctx->rsrcJsH handle if it happens to be the p->jsH
  2024. if( cmJsonIsValid(p->jsH) && cmHandlesAreNotEqual(p->dfltJsH,ctx->rsrcJsH) )
  2025. if( cmJsonFinalize( &p->jsH ) != kOkJsRC )
  2026. cmDspInstErr(ctx,inst,kJsonFailDspRC,"JSON finalization failed.");
  2027. cmLhFree(ctx->lhH,p->typeIdArray);
  2028. p->typeIdArray = NULL;
  2029. cmLhFree(ctx->lhH,p->symM);
  2030. p->symM = NULL;
  2031. return kOkDspRC;
  2032. }
  2033. cmDspRC_t _cmDspMsgListReset(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  2034. {
  2035. cmDspApplyAllDefaults(ctx,inst);
  2036. return kOkDspRC;
  2037. }
  2038. cmDspRC_t _cmDspMsgOnSel( cmDspCtx_t* ctx, cmDspMsgList_t* p, unsigned rowIdx )
  2039. {
  2040. cmDspRC_t rc = kOkDspRC;
  2041. unsigned i,j;
  2042. unsigned symId;
  2043. const cmJsonNode_t* cnp = cmJsonArrayElementC(p->np,rowIdx);
  2044. assert( cnp != NULL );
  2045. // for each output variable (column)
  2046. for(i=0,j=0; i<p->colCnt; ++i)
  2047. {
  2048. unsigned varId = kOutBaseMlId + i; // variable id
  2049. const cmJsonNode_t* np = cmJsonArrayElementC(cnp,i); // json row array
  2050. assert( np != NULL );
  2051. switch( p->typeIdArray[i] )
  2052. {
  2053. case kNullTId:
  2054. break;
  2055. case kIntTId:
  2056. {
  2057. int v;
  2058. if( cmJsonIntValue(np,&v) != kOkJsRC )
  2059. { assert(0); }
  2060. rc = cmDspSetInt(ctx,&p->inst,varId,v);
  2061. }
  2062. break;
  2063. case kRealTId:
  2064. {
  2065. double v;
  2066. if( cmJsonRealValue(np,&v) != kOkJsRC )
  2067. { assert(0); }
  2068. rc = cmDspSetDouble(ctx,&p->inst,varId,v);
  2069. }
  2070. break;
  2071. case kTrueTId:
  2072. case kFalseTId:
  2073. {
  2074. bool v;
  2075. if( cmJsonBoolValue(np,&v) != kOkJsRC )
  2076. { assert(0); }
  2077. rc = cmDspSetBool(ctx,&p->inst,varId,v);
  2078. }
  2079. break;
  2080. case kStringTId:
  2081. {
  2082. assert( j < p->symColCnt );
  2083. if((symId = p->symM[ (j*p->symRowCnt) + rowIdx ]) != cmInvalidId )
  2084. if((rc = cmDspSetSymbol(ctx,&p->inst,varId,symId )) != kOkDspRC )
  2085. break;
  2086. ++j;
  2087. }
  2088. break;
  2089. default:
  2090. { assert(0); }
  2091. } // end switch
  2092. } // end for
  2093. return rc;
  2094. }
  2095. cmDspRC_t _cmDspMsgListRecv(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  2096. {
  2097. cmDspRC_t rc = kOkDspRC;
  2098. cmDspMsgList_t* p = (cmDspMsgList_t*)inst;
  2099. switch( evt->dstVarId )
  2100. {
  2101. case kRsrcMlId:
  2102. {
  2103. const cmChar_t* fn = cmDspStrcz(inst,kFnMlId);
  2104. const cmChar_t* rsrcLabel = cmDsvStrz(evt->valuePtr);
  2105. if( rsrcLabel != NULL )
  2106. {
  2107. if((rc = _cmDspMsgListReload(ctx,p,rsrcLabel,fn)) != kOkDspRC )
  2108. return cmDspInstErr(ctx,&p->inst,kJsonFailDspRC,"The msg list file '%s' load failed.",fn);
  2109. cmDspSetEvent(ctx,inst,evt);
  2110. cmDspSetJson(ctx,inst,kListMlId,p->np);
  2111. cmDspSetUInt(ctx,inst,kSelMlId,0);
  2112. cmDspSetUInt(ctx,inst,kCntMlId,p->symRowCnt);
  2113. }
  2114. }
  2115. break;
  2116. case kFnMlId:
  2117. // Store the new file name.
  2118. // A new file will not be loaded until the next rsrc label is received.
  2119. cmDspSetEvent(ctx,inst,evt);
  2120. break;
  2121. case kListMlId:
  2122. break;
  2123. case kSelMlId:
  2124. {
  2125. unsigned rowIdx = cmDsvGetUInt(evt->valuePtr);
  2126. assert( rowIdx < p->symRowCnt);
  2127. // set the current selection variable
  2128. if((rc = cmDspSetEvent(ctx,inst,evt)) == kOkDspRC )
  2129. rc = _cmDspMsgOnSel(ctx,p,rowIdx);
  2130. } //end case
  2131. break;
  2132. }
  2133. return rc;
  2134. }
  2135. cmDspRC_t _cmDspMsgListPresetRdWr( cmDspCtx_t* ctx, cmDspInst_t* inst, bool storeFl )
  2136. {
  2137. cmDspRC_t rc = kOkDspRC;
  2138. cmDspMsgList_t* p = (cmDspMsgList_t*)inst;
  2139. if((rc = cmDspVarPresetRdWr(ctx,inst,kSelMlId,storeFl)) == kOkDspRC )
  2140. {
  2141. if( !storeFl )
  2142. rc = _cmDspMsgOnSel(ctx,p, cmDspUInt(inst,kSelMlId) );
  2143. }
  2144. return rc;
  2145. }
  2146. struct cmDspClass_str* cmMsgListClassCons( cmDspCtx_t* ctx )
  2147. {
  2148. cmDspClassSetup(&_cmMsgListDC,ctx,"MsgList",
  2149. NULL,
  2150. _cmDspMsgListAlloc,
  2151. _cmDspMsgListFree,
  2152. _cmDspMsgListReset,
  2153. NULL,
  2154. _cmDspMsgListRecv,
  2155. _cmDspMsgListPresetRdWr,
  2156. NULL,
  2157. "Message list selection control.");
  2158. return &_cmMsgListDC;
  2159. }
  2160. //==========================================================================================================================================
  2161. enum
  2162. {
  2163. kLenWtId,
  2164. kShapeWtId,
  2165. kFnWtId,
  2166. kLoopWtId,
  2167. kBegWtId,
  2168. kEndWtId,
  2169. kCmdWtId,
  2170. kOtWtId,
  2171. kGainWtId,
  2172. kPhsWtId,
  2173. kOutWtId,
  2174. kCntWtId,
  2175. kFIdxWtId,
  2176. kDoneWtId
  2177. };
  2178. enum
  2179. {
  2180. kSilenceWtId, // 0
  2181. kFileWtId, // 1
  2182. kWhiteWtId, // 2
  2183. kPinkWtId, // 3
  2184. kSineWtId, // 4
  2185. kCosWtId, // 5
  2186. kSqrWtId, // 6
  2187. kTriWtId, // 7
  2188. kSawWtId, // 8
  2189. kPulseWtId, // 9
  2190. kImpulseWtId, // 10
  2191. kPhasorWtId, // 11
  2192. kShapeWtCnt
  2193. };
  2194. cmDspClass_t _cmWaveTableDC;
  2195. typedef struct
  2196. {
  2197. cmDspInst_t inst;
  2198. cmSample_t* wt; // wave table memory
  2199. unsigned wti; // next location to write samples into the wavetable
  2200. unsigned wtn; // count of empty samples (avail for writing over) in the wavetable.
  2201. unsigned fi; // absolute index into the file of the next sample to read
  2202. unsigned fn; // length of the file in samples
  2203. unsigned cfi; // absolute index into the file of the beginning of the current audio vector
  2204. unsigned cfn; // when cfi >= cfn and doneFl is set then the 'done' msg is sent
  2205. unsigned loopCnt; // current loop count
  2206. bool doneFl; // the wave table source is exhausted
  2207. cmAudioFileH_t afH; // current audio file handle
  2208. int nxtBegSmpIdx; // the beg/end sample index to use with the next filename to arrive at port 'fn'
  2209. int nxtEndSmpIdx; //
  2210. cmThreadH_t thH;
  2211. bool loadFileFl;
  2212. cmDspCtx_t* ctx;
  2213. double phsOffs;
  2214. double phsLast;
  2215. unsigned onSymId;
  2216. unsigned offSymId;
  2217. unsigned doneSymId;
  2218. bool useThreadFl;
  2219. } cmDspWaveTable_t;
  2220. bool _cmDspWaveTableThreadFunc( void* param);
  2221. cmDspInst_t* _cmDspWaveTableAlloc(cmDspCtx_t* ctx, cmDspClass_t* classPtr, unsigned storeSymId, unsigned instSymId, unsigned id, unsigned va_cnt, va_list vl )
  2222. {
  2223. cmDspVarArg_t args[] =
  2224. {
  2225. { "len", kLenWtId, 0, 0, kInDsvFl | kUIntDsvFl | kOptArgDsvFl, "Wave table length in samples" },
  2226. { "shape", kShapeWtId, 0, 0, kInDsvFl | kUIntDsvFl | kOptArgDsvFl, "Wave shape 0=silent 1=file 2=sine 3=white" },
  2227. { "fn", kFnWtId, 0, 0, kInDsvFl | kStrzDsvFl | kOptArgDsvFl, "Optional audio file name" },
  2228. { "loop", kLoopWtId, 0, 0, kInDsvFl | kIntDsvFl | kOptArgDsvFl, "-1=loop forever >0=loop count (dflt:-1)"},
  2229. { "beg", kBegWtId, 0, 0, kInDsvFl | kIntDsvFl | kOptArgDsvFl, "File begin sample index" },
  2230. { "end", kEndWtId, 0, 0, kInDsvFl | kIntDsvFl | kOptArgDsvFl, "File end sample index (-1=play all)" },
  2231. { "cmd", kCmdWtId, 0, 0, kInDsvFl | kSymDsvFl | kOptArgDsvFl, "Command: on off"},
  2232. { "ot", kOtWtId, 0, 0, kInDsvFl | kUIntDsvFl | kOptArgDsvFl, "Overtone count"},
  2233. { "gain", kGainWtId, 0, 0, kInDsvFl | kDoubleDsvFl|kOptArgDsvFl, "Gain"},
  2234. { "phs", kPhsWtId, 0, 0, kInDsvFl | kAudioBufDsvFl, "Driving phase" },
  2235. { "out", kOutWtId, 0, 1, kOutDsvFl | kAudioBufDsvFl, "Audio output" },
  2236. { "cnt", kCntWtId, 0, 0, kOutDsvFl | kIntDsvFl, "Loop count event."},
  2237. { "fidx", kFIdxWtId, 0, 0, kOutDsvFl | kUIntDsvFl, "Current audio file index."},
  2238. { "done", kDoneWtId, 0, 0, kOutDsvFl | kSymDsvFl, "'done' sent after last loop."},
  2239. { NULL, 0, 0, 0, 0 }
  2240. };
  2241. cmDspWaveTable_t* p = cmDspInstAlloc(cmDspWaveTable_t,ctx,classPtr,args,instSymId,id,storeSymId,va_cnt,vl);
  2242. // get the filename given in the va_list (or NULL if no filename was given)
  2243. const cmChar_t* fn = cmDspDefaultStrcz(&p->inst,kFnWtId);
  2244. p->offSymId = cmSymTblRegisterStaticSymbol(ctx->stH,"off");
  2245. p->onSymId = cmSymTblRegisterStaticSymbol(ctx->stH,"on");
  2246. p->doneSymId= cmSymTblRegisterStaticSymbol(ctx->stH,"done");
  2247. cmDspSetDefaultUInt( ctx, &p->inst, kLenWtId, 0, cmDspSampleRate(ctx));
  2248. cmDspSetDefaultUInt( ctx, &p->inst, kShapeWtId, 0, kSilenceWtId );
  2249. cmDspSetDefaultStrcz( ctx, &p->inst, kFnWtId, NULL, fn );
  2250. cmDspSetDefaultInt( ctx, &p->inst, kLoopWtId, 0, -1 );
  2251. cmDspSetDefaultInt( ctx, &p->inst, kBegWtId, 0, 0 );
  2252. cmDspSetDefaultInt( ctx, &p->inst, kEndWtId, 0, -1 );
  2253. cmDspSetDefaultSymbol(ctx, &p->inst, kCmdWtId, p->onSymId );
  2254. cmDspSetDefaultUInt( ctx, &p->inst, kOtWtId, 0, 5 );
  2255. cmDspSetDefaultDouble(ctx, &p->inst, kGainWtId, 0, 1.0 );
  2256. cmDspSetDefaultUInt( ctx, &p->inst, kFIdxWtId, 0, 0 );
  2257. p->useThreadFl = false;
  2258. return &p->inst;
  2259. }
  2260. cmDspRC_t _cmDspWaveTableFree(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  2261. {
  2262. cmDspWaveTable_t* p = (cmDspWaveTable_t*)inst;
  2263. if( cmThreadIsValid(p->thH) )
  2264. if( cmThreadDestroy(&p->thH) != kOkThRC )
  2265. cmDspInstErr(ctx,inst,kThreadFailDspRC,"The wavetable file reader thread failed to close.");
  2266. if( cmAudioFileIsValid(p->afH) )
  2267. cmAudioFileDelete(&p->afH);
  2268. cmLhFree(ctx->lhH,p->wt);
  2269. return kOkDspRC;
  2270. }
  2271. // Read the next block of 'rdSmpCnt' samples starting at the absolute file index 'p->fi'
  2272. // into wt[rdSmpCnt].
  2273. // If the end of the file segment marked by absolute file indexes 'begSmpIdx' to 'endSmpIdx'
  2274. // is encountered in the middle of the requested block and the wave table is in loop
  2275. // mode then the the function will automatically begin reading from the begining of the
  2276. // file segment. If the end of the file segment is encountered and the wave table is not
  2277. // in loop mode then the empty portion of wt[] will be set to zero.
  2278. cmDspRC_t _cmDspWaveTableReadBlock( cmDspCtx_t* ctx, cmDspWaveTable_t* p, cmSample_t* wt, unsigned rdSmpCnt, int begSmpIdx, int endSmpIdx, int maxLoopCnt )
  2279. {
  2280. unsigned actFrmCnt = 0;
  2281. unsigned chIdx = 0;
  2282. unsigned chCnt = 1;
  2283. unsigned fn = endSmpIdx - p->fi + 1; // count of samples between p->fi and endSmpIdx
  2284. unsigned n0 = rdSmpCnt;
  2285. unsigned n1 = 0;
  2286. // if the requested sample count will go past the end of the file segment
  2287. if( rdSmpCnt > fn )
  2288. {
  2289. n1 = rdSmpCnt - fn;
  2290. n0 = rdSmpCnt - n1;
  2291. }
  2292. // if we don't have a valid file yet - then
  2293. if( cmAudioFileIsValid(p->afH) == false )
  2294. {
  2295. cmVOS_Zero(wt,n0);
  2296. return kOkDspRC;
  2297. }
  2298. // read the first block of samples
  2299. if( cmAudioFileReadSample(p->afH, n0, chIdx, chCnt, &wt, &actFrmCnt ) != kOkAfRC )
  2300. return cmDspInstErr(ctx,&p->inst,kVarNotValidDspRC,"An error occured while reading the wave table file.");
  2301. // BUG BUG BUG
  2302. // This assertion will fail if the file beg/end markers are not legal given the file length.
  2303. // An error msg would be more appropriate.
  2304. assert( actFrmCnt == n0 );
  2305. // increment the wave table pointer
  2306. wt += n0;
  2307. p->fi += n0;
  2308. // if n1 != 0 then we have encountered the end of the file segment
  2309. if( n1 > 0 )
  2310. {
  2311. ++p->loopCnt;
  2312. // send the loop count event
  2313. cmDspSetInt(ctx,&p->inst,kCntWtId,p->loopCnt);
  2314. // if we have played all the requested loops
  2315. if( maxLoopCnt != -1 && p->loopCnt >= maxLoopCnt )
  2316. {
  2317. p->doneFl = true;
  2318. cmVOS_Zero(wt,n1); // zero to the end of the buffer
  2319. p->cfn = p->cfi + cmDspUInt((cmDspInst_t*)p,kLenWtId) - p->wtn - n0;
  2320. assert( p->cfn >= p->cfi );
  2321. }
  2322. else
  2323. {
  2324. // seek to the first sample indicated by the 'beg' variable
  2325. if( cmAudioFileSeek(p->afH,begSmpIdx) != kOkAfRC )
  2326. return cmDspInstErr(ctx,&p->inst,kVarNotValidDspRC,"Seeking failed on the wave table file.",fn);
  2327. // read the second block of samples
  2328. if( cmAudioFileReadSample(p->afH, n1, chIdx, chCnt, &wt, &actFrmCnt ) != kOkAfRC )
  2329. return cmDspInstErr(ctx,&p->inst,kVarNotValidDspRC,"An error occured while reading the wave table file.");
  2330. assert( actFrmCnt == n1 );
  2331. // reset the file index tracker
  2332. p->fi = begSmpIdx + n1;
  2333. p->cfi = begSmpIdx;
  2334. }
  2335. }
  2336. return kOkDspRC;
  2337. }
  2338. cmDspRC_t _cmDspWaveTableReadAudioFile( cmDspCtx_t* ctx, cmDspWaveTable_t* p, unsigned wtSmpCnt, unsigned rdSmpCnt )
  2339. {
  2340. unsigned n0 = rdSmpCnt;
  2341. unsigned n1 = 0;
  2342. int begSmpIdx = cmDspInt(&p->inst,kBegWtId);
  2343. int endSmpIdx = cmDspInt(&p->inst,kEndWtId);
  2344. int maxLoopCnt= cmDspInt(&p->inst,kLoopWtId);
  2345. if( endSmpIdx < begSmpIdx )
  2346. endSmpIdx = p->fn-1;
  2347. // if this read will wrap to the beginning of the wave table
  2348. if( p->wti + rdSmpCnt > wtSmpCnt )
  2349. {
  2350. n0 = wtSmpCnt - p->wti; // count of samples to read into the end of p->wt[]
  2351. n1 = rdSmpCnt - n0; // count of samples to read into the beg of p->wt[]
  2352. }
  2353. assert(n1<wtSmpCnt);
  2354. // the first read always starts at p->wt + p->wti
  2355. if( p->doneFl )
  2356. cmVOS_Zero(p->wt + p->wti,n0);
  2357. else
  2358. if( _cmDspWaveTableReadBlock(ctx, p, p->wt+p->wti, n0,begSmpIdx,endSmpIdx,maxLoopCnt ) != kOkDspRC )
  2359. return cmDspInstErr(ctx,&p->inst,kVarNotValidDspRC,"An error occured while reading the wave table file.");
  2360. p->wtn -= n0; // decrease the count of available samples
  2361. p->wti += n0;
  2362. if( n1 > 0 )
  2363. {
  2364. // the second read always starts at the beginning of the wave table
  2365. if( p->doneFl )
  2366. cmVOS_Zero(p->wt,n1);
  2367. else
  2368. if( _cmDspWaveTableReadBlock(ctx, p, p->wt, n1,begSmpIdx,endSmpIdx,maxLoopCnt ) != kOkDspRC )
  2369. return cmDspInstErr(ctx,&p->inst,kVarNotValidDspRC,"An error occured while reading the wave table file.");
  2370. p->wtn -= n1; // decrease the count of available samples
  2371. p->wti = n1;
  2372. }
  2373. //p->wtn -= rdSmpCnt; // decrease the count of available samples
  2374. return kOkDspRC;
  2375. }
  2376. cmDspRC_t _cmDspWaveTableInitAudioFile( cmDspCtx_t* ctx, cmDspWaveTable_t* p )
  2377. {
  2378. cmDspRC_t rc;
  2379. cmAudioFileH_t afH;
  2380. cmRC_t afRC;
  2381. cmAudioFileInfo_t afInfo;
  2382. const cmChar_t* fn = cmDspStrcz(&p->inst,kFnWtId);
  2383. unsigned wtSmpCnt = cmDspUInt(&p->inst,kLenWtId);
  2384. int begSmpIdx= cmDspInt(&p->inst,kBegWtId);
  2385. // if the file name is valid
  2386. if( fn == NULL || strlen(fn)==0 )
  2387. {
  2388. cmDspInstErr(ctx,&p->inst,kVarNotValidDspRC,"Audio file loading was requested for the wave table but no file name was given.");
  2389. goto errLabel;
  2390. }
  2391. // open the audio file
  2392. afH = cmAudioFileNewOpen(fn,&afInfo,&afRC,ctx->rpt);
  2393. // check for file open errors
  2394. if( afRC != kOkAfRC )
  2395. {
  2396. rc = cmDspInstErr(ctx,&p->inst,kVarNotValidDspRC,"The audio file '%s' could not be opened. ('%s').",fn,cmAudioFileErrorMsg(afRC));
  2397. goto errLabel;
  2398. }
  2399. // if the file opened but is invalid
  2400. if( cmAudioFileIsValid(p->afH) )
  2401. cmAudioFileDelete(&p->afH);
  2402. // seek to the first sample indicated by the 'beg' variable
  2403. if( cmAudioFileSeek(afH,begSmpIdx) != kOkAfRC )
  2404. {
  2405. rc = cmDspInstErr(ctx,&p->inst,kVarNotValidDspRC,"Seeking failed on the audio file '%s'.",fn);
  2406. goto errLabel;
  2407. }
  2408. p->afH = afH;
  2409. p->fi = begSmpIdx;
  2410. p->cfi = begSmpIdx;
  2411. p->fn = afInfo.frameCnt;
  2412. p->wti = 0;
  2413. p->wtn = wtSmpCnt;
  2414. // read the first block of samples
  2415. if((rc= _cmDspWaveTableReadAudioFile(ctx,p,wtSmpCnt,wtSmpCnt))!= kOkDspRC )
  2416. goto errLabel;
  2417. //printf("Wt:%s %i %i\n",fn,begSmpIdx,cmDspInt(&p->inst,kEndWtId));
  2418. // set the shape param to kFileWtId
  2419. //if((rc= cmDspSetUInt(ctx,&p->inst,kShapeWtId,kFileWtId)) != kOkDspRC )
  2420. // goto errLabel;
  2421. errLabel:
  2422. if( rc != kOkDspRC )
  2423. cmDspSetUInt(ctx,&p->inst,kShapeWtId,kSilenceWtId);
  2424. return rc;
  2425. }
  2426. bool _cmDspWaveTableThreadFunc( void* param)
  2427. {
  2428. cmDspWaveTable_t* p = (cmDspWaveTable_t*)param;
  2429. if( p->loadFileFl )
  2430. {
  2431. p->loadFileFl = false;
  2432. if( _cmDspWaveTableInitAudioFile(p->ctx,p) == kOkDspRC )
  2433. {
  2434. p->phsOffs = p->phsLast;
  2435. cmDspSetUInt(p->ctx,&p->inst,kShapeWtId,kFileWtId);
  2436. }
  2437. cmThreadPause(p->thH,kPauseThFl);
  2438. }
  2439. return true;
  2440. }
  2441. // Files are loaded via a background thread.
  2442. cmDspRC_t _cmDspWaveTableStartFileLoadThread( cmDspCtx_t* ctx, cmDspWaveTable_t* p, const cmChar_t* fn )
  2443. {
  2444. cmDspRC_t rc = kOkDspRC;
  2445. if( fn == NULL )
  2446. return rc;
  2447. if( p->loadFileFl )
  2448. return cmDspInstErr(ctx,&p->inst,kInvalidStateDspRC,"The audio file '%s' was not loaded because another file is in the process of being loaded.",cmStringNullGuard(fn));
  2449. if(p->useThreadFl && cmThreadIsValid(p->thH) == false)
  2450. cmThreadCreate(&p->thH,_cmDspWaveTableThreadFunc,p,ctx->rpt);
  2451. if(p->useThreadFl && cmThreadIsValid(p->thH) == false )
  2452. return cmDspInstErr(ctx,&p->inst,kInvalidStateDspRC,"The audio file '%s' was not loaded because the audio load thread is invalid.",cmStringNullGuard(fn));
  2453. p->loadFileFl = true;
  2454. p->ctx = ctx;
  2455. cmDspSetUInt(ctx,&p->inst,kShapeWtId,kSilenceWtId);
  2456. cmDspSetStrcz(ctx,&p->inst,kFnWtId,fn);
  2457. if( p->useThreadFl == false )
  2458. {
  2459. // use non-threaded load
  2460. if((rc = _cmDspWaveTableInitAudioFile(p->ctx,p)) != kOkDspRC )
  2461. return cmDspInstErr(ctx,&p->inst,kVarNotValidDspRC,"The audio file '%s' was not loaded.",cmStringNullGuard(fn));
  2462. p->phsOffs = p->phsLast;
  2463. cmDspSetUInt(p->ctx,&p->inst,kShapeWtId,kFileWtId);
  2464. p->loadFileFl = false;
  2465. }
  2466. else
  2467. {
  2468. // use threaded load - this works but it isn't really thread safe
  2469. if( cmThreadPause(p->thH,0) != kOkThRC )
  2470. return cmDspInstErr(ctx,&p->inst,kThreadFailDspRC,"The audio file '%s' was not loaded because audio thread enable failed.",cmStringNullGuard(fn));
  2471. }
  2472. return rc;
  2473. }
  2474. // This function is called whenever the source mode variable changes (or a new file name arrives)
  2475. cmDspRC_t _cmDspWaveTableCreateTable( cmDspCtx_t* ctx, cmDspWaveTable_t* p )
  2476. {
  2477. cmDspRC_t rc = kOkDspRC;
  2478. unsigned shapeId = cmDspUInt(&p->inst,kShapeWtId);
  2479. unsigned wtSmpCnt = cmDspUInt(&p->inst,kLenWtId);
  2480. unsigned otCnt = cmDspUInt(&p->inst,kOtWtId);
  2481. cmSample_t gain = 0.9;
  2482. double hz = 1.0;
  2483. double sr = cmDspSampleRate(ctx);
  2484. assert( wtSmpCnt > 0 );
  2485. if( p->wt == NULL )
  2486. p->wt = cmLhResizeNZ(ctx->lhH,cmSample_t,p->wt,wtSmpCnt);
  2487. else
  2488. cmVOS_Zero(p->wt,wtSmpCnt);
  2489. p->wtn = wtSmpCnt; // all samples in the wt are avail for filling
  2490. p->wti = 0; // beginning with the first sample
  2491. p->loopCnt = 0; // we are starting from a new source so set the loop cnt to 0
  2492. p->doneFl = false; // and the doneFl to false
  2493. assert( p->wt != NULL );
  2494. switch( shapeId )
  2495. {
  2496. case kSilenceWtId:
  2497. break;
  2498. case kFileWtId:
  2499. printf("Loading:%i %i %s\n",p->nxtBegSmpIdx,p->nxtEndSmpIdx,cmDspStrcz(&p->inst,kFnWtId));
  2500. rc = _cmDspWaveTableStartFileLoadThread(ctx,p,cmDspStrcz(&p->inst,kFnWtId));
  2501. break;
  2502. case kWhiteWtId:
  2503. cmVOS_Random(p->wt,wtSmpCnt,-gain,gain);
  2504. break;
  2505. case kPinkWtId:
  2506. cmVOS_SynthPinkNoise(p->wt,wtSmpCnt,0.0);
  2507. cmVOS_MultVS(p->wt,wtSmpCnt,gain);
  2508. break;
  2509. case kSineWtId:
  2510. cmVOS_SynthSine(p->wt,wtSmpCnt,0,sr,hz);
  2511. cmVOS_MultVS(p->wt,wtSmpCnt,gain);
  2512. break;
  2513. case kCosWtId:
  2514. cmVOS_SynthCosine(p->wt,wtSmpCnt,0,sr,hz);
  2515. cmVOS_MultVS(p->wt,wtSmpCnt,gain);
  2516. break;
  2517. case kSawWtId:
  2518. cmVOS_SynthSawtooth(p->wt,wtSmpCnt,0,sr,hz,otCnt);
  2519. cmVOS_MultVS(p->wt,wtSmpCnt,gain);
  2520. break;
  2521. case kSqrWtId:
  2522. cmVOS_SynthSquare( p->wt,wtSmpCnt,0,sr,hz,otCnt );
  2523. cmVOS_MultVS(p->wt,wtSmpCnt,gain);
  2524. break;
  2525. case kTriWtId:
  2526. cmVOS_SynthTriangle( p->wt,wtSmpCnt,0,sr,hz,otCnt );
  2527. cmVOS_MultVS(p->wt,wtSmpCnt,gain);
  2528. break;
  2529. case kPulseWtId:
  2530. cmVOS_SynthPulseCos( p->wt,wtSmpCnt,0,sr,hz,otCnt );
  2531. cmVOS_MultVS(p->wt,wtSmpCnt,gain);
  2532. break;
  2533. case kPhasorWtId:
  2534. cmVOS_SynthPhasor( p->wt,wtSmpCnt,0,sr,hz );
  2535. cmVOS_MultVS(p->wt,wtSmpCnt,gain);
  2536. break;
  2537. }
  2538. return rc;
  2539. }
  2540. cmDspRC_t _cmDspWaveTableReset(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  2541. {
  2542. cmDspWaveTable_t* p = (cmDspWaveTable_t*)inst;
  2543. cmDspApplyAllDefaults(ctx,inst);
  2544. cmDspZeroAudioBuf(ctx,inst,kOutWtId);
  2545. p->nxtBegSmpIdx = cmDspInt(&p->inst,kBegWtId);
  2546. p->nxtEndSmpIdx = cmDspInt(&p->inst,kEndWtId);
  2547. return _cmDspWaveTableCreateTable(ctx,p);
  2548. }
  2549. cmDspRC_t _cmDspWaveTableExec(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  2550. {
  2551. cmDspRC_t rc = kOkDspRC;
  2552. const cmSample_t* phsV = cmDspAudioBuf(ctx,inst,kPhsWtId,0);
  2553. if( phsV == NULL )
  2554. {
  2555. inst->execFunc = NULL; // disable this instance because it has no input
  2556. return kOkDspRC;
  2557. }
  2558. cmDspWaveTable_t* p = (cmDspWaveTable_t*)inst;
  2559. unsigned mode = cmDspSymbol(inst,kCmdWtId);
  2560. unsigned srcId = cmDspUInt(inst,kShapeWtId);
  2561. if( mode == p->offSymId || srcId == kSilenceWtId )
  2562. {
  2563. cmDspZeroAudioBuf(ctx,inst,kOutWtId);
  2564. return kOkDspRC;
  2565. }
  2566. cmSample_t* outV = cmDspAudioBuf(ctx,inst,kOutWtId,0);
  2567. unsigned outCnt = cmDspVarRows(inst,kOutWtId);
  2568. unsigned wtSmpCnt = cmDspUInt(inst,kLenWtId);
  2569. double gain = cmDspDouble(inst,kGainWtId);
  2570. unsigned i;
  2571. // for each output sample
  2572. for(i=0; i<outCnt; ++i)
  2573. {
  2574. // get the wave table location
  2575. unsigned x = fmod(phsV[i] - p->phsOffs,wtSmpCnt);
  2576. // if the wt loctn is passed the end of the table
  2577. /*
  2578. if( x >= wtSmpCnt )
  2579. {
  2580. offs += wtSmpCnt;
  2581. x -= wtSmpCnt;
  2582. }
  2583. */
  2584. // read the wt into the output
  2585. // BUG BUG BUG BUG
  2586. // BUG BUG BUG BUG - THIS DIVISION BY 0.5 IS HACK
  2587. // BUG BUG BUG BUG
  2588. //outV[i] = 0.5 * p->wt[x];
  2589. outV[i] = gain * p->wt[x];
  2590. }
  2591. p->phsLast = phsV[outCnt-1];
  2592. // if we are reading from a file ...
  2593. if( srcId == kFileWtId )
  2594. {
  2595. unsigned rdSmpCnt = 8192; // file read block sample count
  2596. p->wtn += outCnt;
  2597. // ... and there are rdSmpCnt avail locations in the wave table
  2598. if( p->wtn >= rdSmpCnt )
  2599. rc = _cmDspWaveTableReadAudioFile(ctx, p, wtSmpCnt, rdSmpCnt );
  2600. // send the current audio file index
  2601. if( p->doneFl && p->cfi < p->cfn && p->cfn <= (p->cfi + outCnt) )
  2602. cmDspSetSymbol(ctx,inst,kDoneWtId,p->doneSymId);
  2603. else
  2604. cmDspSetUInt(ctx,inst,kFIdxWtId,p->cfi);
  2605. p->cfi += outCnt;
  2606. }
  2607. return rc;
  2608. }
  2609. cmDspRC_t _cmDspWaveTableRecv(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  2610. {
  2611. cmDspRC_t rc = kOkDspRC;
  2612. cmDspWaveTable_t* p = (cmDspWaveTable_t*)inst;
  2613. switch( evt->dstVarId )
  2614. {
  2615. case kFnWtId: // a new file name arrived - this automatically switches the source mode to kFileWtId
  2616. {
  2617. const cmChar_t* fn = cmDsvStrz(evt->valuePtr);
  2618. if( cmFsIsFile( fn )==false )
  2619. cmDspInstErr(ctx,&p->inst,kInvalidArgDspRC,"'%s' does not exist.",cmStringNullGuard(fn));
  2620. else
  2621. {
  2622. cmDspSetEvent(ctx,inst,evt); // set the file name variable
  2623. cmDspSetInt(ctx,inst,kBegWtId,p->nxtBegSmpIdx); // set the beg/end smp idx var's from the stored nxtBeg/EndSmpIdx values
  2624. cmDspSetInt(ctx,inst,kEndWtId,p->nxtEndSmpIdx); //
  2625. cmDspSetUInt(ctx,inst,kShapeWtId,kFileWtId); // switch to file mode
  2626. rc = _cmDspWaveTableCreateTable(ctx,p); // reload the wavetable
  2627. }
  2628. }
  2629. break;
  2630. case kBegWtId:
  2631. // store for next incoming file name msg
  2632. p->nxtBegSmpIdx = cmDsvGetInt(evt->valuePtr);
  2633. break;
  2634. case kEndWtId:
  2635. // store for next incoming file name msg
  2636. p->nxtEndSmpIdx = cmDsvGetInt(evt->valuePtr);
  2637. break;
  2638. case kShapeWtId:
  2639. if( cmDsvGetUInt(evt->valuePtr) < kShapeWtCnt )
  2640. {
  2641. cmDspSetEvent(ctx,inst,evt); // switch modes
  2642. rc = _cmDspWaveTableCreateTable(ctx,p); // reload the wavetable
  2643. }
  2644. break;
  2645. case kLenWtId: // we don't support table size changes
  2646. break;
  2647. case kPhsWtId:
  2648. break;
  2649. case kCmdWtId:
  2650. if((rc = cmDspSetEvent(ctx,inst,evt)) == kOkDspRC )
  2651. {
  2652. if( cmDspSymbol(inst,kCmdWtId) == p->onSymId )
  2653. {
  2654. //rc = _cmDspWaveTableReset(ctx,inst, evt );
  2655. rc = _cmDspWaveTableCreateTable(ctx,p);
  2656. cmDspSetSymbol(ctx,inst,kCmdWtId,p->onSymId);
  2657. p->phsOffs = 0;
  2658. p->phsLast = 0;
  2659. }
  2660. }
  2661. break;
  2662. case kOtWtId:
  2663. if((rc = cmDspSetEvent(ctx,inst,evt)) == kOkDspRC )
  2664. rc = _cmDspWaveTableCreateTable(ctx,p); // reload the wavetable
  2665. break;
  2666. case kGainWtId:
  2667. rc = cmDspSetEvent(ctx,inst,evt);
  2668. break;
  2669. default:
  2670. { assert(0); }
  2671. }
  2672. return rc;
  2673. }
  2674. struct cmDspClass_str* cmWaveTableClassCons( cmDspCtx_t* ctx )
  2675. {
  2676. cmDspClassSetup(&_cmWaveTableDC,ctx,"WaveTable",
  2677. NULL,
  2678. _cmDspWaveTableAlloc,
  2679. _cmDspWaveTableFree,
  2680. _cmDspWaveTableReset,
  2681. _cmDspWaveTableExec,
  2682. _cmDspWaveTableRecv,
  2683. NULL,
  2684. NULL,
  2685. "Variable frequency and waveshape signal generator." );
  2686. return &_cmWaveTableDC;
  2687. }
  2688. //==========================================================================================================================================
  2689. enum
  2690. {
  2691. kFmtSpId,
  2692. kOutSpId,
  2693. kInSpId,
  2694. kSprintfLabelCharCnt = 15,
  2695. kSprintfDocCharCnt = 31,
  2696. kSprintfBufCharCnt = 1023
  2697. };
  2698. cmDspClass_t _cmSprintfDC;
  2699. typedef struct
  2700. {
  2701. unsigned flags; // dsv type id for this fmt conversion or 0 if it is a literal string
  2702. unsigned fsi; // index into the fmt string where the fmt starts (always points to an '%' char)
  2703. unsigned fsn; // length of the format string
  2704. cmChar_t label[ kSprintfLabelCharCnt+1 ];
  2705. cmChar_t doc[ kSprintfDocCharCnt+1 ];
  2706. } cmDspSprintfFmt_t;
  2707. typedef struct
  2708. {
  2709. cmDspInst_t inst;
  2710. cmChar_t buf[ kSprintfBufCharCnt+1]; // output string buffer
  2711. unsigned inCnt; // count conversion spec's in the fmtStr[]
  2712. cmDspSprintfFmt_t* fmtArray; // fmtArray[inCnt]
  2713. cmChar_t* fmtStr; // C-style printf format string.
  2714. } cmDspSprintf_t;
  2715. cmDspRC_t _cmSprintfGetInputCnt( cmDspCtx_t* ctx, cmDspClass_t* classPtr, const cmChar_t* fmt, unsigned* inCntPtr )
  2716. {
  2717. unsigned i,n;
  2718. unsigned inCnt = 0;
  2719. if( fmt== NULL || (n=strlen(fmt))==0 )
  2720. return cmErrMsg(&classPtr->err,kInvalidArgDspRC,"Empty format string.");
  2721. for(i=0; i<n; ++i)
  2722. {
  2723. // handle the escape character
  2724. if( fmt[i] == '\\' )
  2725. ++i; // for now we will just skip the next character
  2726. else
  2727. if( fmt[i] == '%' )
  2728. ++inCnt;
  2729. }
  2730. *inCntPtr = inCnt;
  2731. return kOkDspRC;
  2732. }
  2733. cmDspRC_t _cmSprintfGetInputTypes( cmDspCtx_t* ctx, cmDspClass_t* classPtr, const cmChar_t* fmt, cmDspSprintfFmt_t fmtArray[], unsigned inCnt )
  2734. {
  2735. unsigned i,j,n;
  2736. if( fmt== NULL || (n=strlen(fmt))==0 )
  2737. return cmErrMsg(&classPtr->err,kInvalidArgDspRC,"Empty format string.");
  2738. n = strlen(fmt);
  2739. for(i=0,j=0; i<n; ++i)
  2740. {
  2741. // handle the escape character
  2742. if( fmt[i] == '\\' )
  2743. ++i; // for now we will just skip the next character
  2744. else
  2745. if( fmt[i] == '%' )
  2746. {
  2747. unsigned fn;
  2748. if((fn = strcspn(fmt+i,"diouxXfeEgGcs")) == 0 )
  2749. return cmErrMsg(&classPtr->err,kInvalidArgDspRC,"Invalid format string on input conversion at index:%i.",j);
  2750. ++fn;
  2751. fmtArray[j].fsi = i;
  2752. fmtArray[j].fsn = fn;
  2753. snprintf(fmtArray[j].label,kSprintfLabelCharCnt,"in-%i",j);
  2754. fmtArray[j].label[kSprintfLabelCharCnt]=0;
  2755. fmtArray[j].label[kSprintfDocCharCnt] = 0;
  2756. switch( fmt[ i + fn - 1 ] )
  2757. {
  2758. case 'd':
  2759. case 'i':
  2760. fmtArray[j].flags = kIntDsvFl;
  2761. snprintf(fmtArray[j].doc,kSprintfDocCharCnt,"Integer input %i.",j);
  2762. break;
  2763. case 'o':
  2764. case 'u':
  2765. case 'x':
  2766. case 'X':
  2767. fmtArray[j].flags = kUIntDsvFl;
  2768. snprintf(fmtArray[j].doc,kSprintfDocCharCnt,"Unsigned input %i.",j);
  2769. break;
  2770. case 'f':
  2771. case 'e':
  2772. case 'E':
  2773. case 'g':
  2774. case 'G':
  2775. fmtArray[j].flags = kDoubleDsvFl;
  2776. snprintf(fmtArray[j].doc,kSprintfDocCharCnt,"Double input %i.",j);
  2777. break;
  2778. case 'c':
  2779. fmtArray[j].flags = kUCharDsvFl;
  2780. snprintf(fmtArray[j].doc,kSprintfDocCharCnt,"Unsigned char input %i.",j);
  2781. break;
  2782. case 's':
  2783. fmtArray[j].flags = kStrzDsvFl | kSymDsvFl;
  2784. snprintf(fmtArray[j].doc,kSprintfDocCharCnt,"String input %i.",j);
  2785. break;
  2786. default:
  2787. { assert(0); }
  2788. }
  2789. i += fn - 1;
  2790. ++j;
  2791. }
  2792. }
  2793. return kOkDspRC;
  2794. }
  2795. cmDspRC_t _cmSprintfLoadFormat(cmDspSprintf_t** pp, cmDspCtx_t* ctx, cmDspClass_t* classPtr, unsigned instSymId, unsigned id, unsigned storeSymId, cmDspVarArg_t args[], unsigned va_cnt, va_list vl )
  2796. {
  2797. cmDspRC_t rc;
  2798. unsigned i,j;
  2799. va_list vl2;
  2800. unsigned inCnt = 0;
  2801. unsigned fixedArgCnt = 0;
  2802. cmDspSprintf_t* p = NULL;
  2803. const cmChar_t* fmt = NULL;
  2804. cmDspSprintfFmt_t* fmtArray = NULL;
  2805. va_copy(vl2,vl);
  2806. *pp = NULL;
  2807. if( va_cnt > 0 )
  2808. fmt = va_arg(vl,const char*);
  2809. if( va_cnt < 1 || fmt == NULL )
  2810. return cmErrMsg(&classPtr->err,kVarArgParseFailDspRC,"Expected the format string as the first argument.");
  2811. // calc the number of fixed args
  2812. for(i=0; args[i].label != NULL; ++i)
  2813. ++fixedArgCnt;
  2814. // calc the count of input args
  2815. if((rc = _cmSprintfGetInputCnt(ctx, classPtr, fmt, &inCnt)) != kOkDspRC )
  2816. return rc;
  2817. if( inCnt > 0 )
  2818. {
  2819. fmtArray = cmLhAllocZ( ctx->lhH, cmDspSprintfFmt_t, inCnt );
  2820. rc = _cmSprintfGetInputTypes(ctx, classPtr, fmt, fmtArray, inCnt );
  2821. }
  2822. if( rc == kOkDspRC )
  2823. {
  2824. unsigned argCnt = fixedArgCnt + inCnt;
  2825. cmDspVarArg_t argArray[ argCnt+1 ];
  2826. // copy in fixed args
  2827. for(i=0; i<fixedArgCnt; ++i)
  2828. argArray[i] = args[i];
  2829. // calc input args
  2830. for(j=0; i<argCnt; ++i,++j)
  2831. {
  2832. argArray[i].label = fmtArray[j].label;
  2833. argArray[i].constId = i;
  2834. argArray[i].rn = 0;
  2835. argArray[i].cn = 0;
  2836. argArray[i].flags = kInDsvFl | fmtArray[j].flags;
  2837. argArray[i].doc = fmtArray[j].doc;
  2838. }
  2839. // set the sentinel arg to all zeros
  2840. memset(argArray + argCnt,0,sizeof(cmDspVarArg_t));
  2841. if((p = cmDspInstAlloc(cmDspSprintf_t,ctx,classPtr,argArray,instSymId,id,storeSymId,va_cnt,vl2)) != NULL )
  2842. {
  2843. // make a copy of the format string - we need to be sure that it is in
  2844. // r/w memory in order that _cmDspSprintfGenString() can write to it
  2845. p->fmtStr = cmLhResizeN(ctx->lhH,cmChar_t,p->fmtStr,strlen(fmt)+1);
  2846. strcpy(p->fmtStr,fmt);
  2847. cmLhFree(ctx->lhH,p->fmtArray);
  2848. p->fmtArray = fmtArray;
  2849. p->inCnt = inCnt;
  2850. memset(p->buf,0,kSprintfBufCharCnt+1);
  2851. }
  2852. *pp = p;
  2853. }
  2854. if( cmErrLastRC(&classPtr->err) != kOkDspRC )
  2855. cmLhFree(ctx->lhH,fmtArray);
  2856. return rc;
  2857. }
  2858. cmDspRC_t _cmDspSprintfGenString(cmDspCtx_t* ctx, cmDspSprintf_t* p )
  2859. {
  2860. cmDspRC_t rc = kOkDspRC;
  2861. unsigned fsi = 0; // format string index
  2862. unsigned i = 0; // fmtArray[] index
  2863. unsigned bi = 0; // string buffer index
  2864. unsigned bn = kSprintfBufCharCnt; // available char's in the string buffer
  2865. cmChar_t* fmt = p->fmtStr;
  2866. unsigned fn = strlen(fmt)+1;
  2867. // for each
  2868. for(i=0; i<p->inCnt && bn>0; ++i)
  2869. {
  2870. const cmDspSprintfFmt_t* f = p->fmtArray + i;
  2871. unsigned varId = kInSpId + i;
  2872. const cmDspVar_t* varPtr = cmDspVarIdToCPtr(&p->inst, varId);
  2873. assert(varPtr != NULL);
  2874. // if there are literal char's to copy prior to the format
  2875. if( fsi < f->fsi )
  2876. {
  2877. unsigned cn = cmMin(f->fsi-fsi,bn);
  2878. strncpy(p->buf+bi,fmt+fsi,cn);
  2879. bn -= cn;
  2880. fsi += cn;
  2881. bi += cn;
  2882. }
  2883. if( bn == 0 )
  2884. {
  2885. rc = cmDspInstErr(ctx,&p->inst,kInvalidArgDspRC,"The internal string buffer is too small.");
  2886. break;
  2887. }
  2888. unsigned pn = 0;
  2889. char c = fmt[ f->fsi + f->fsn ];
  2890. // zero terminate the format string for this input
  2891. fmt[ f->fsi + f->fsn] = 0;
  2892. // if the conversion fmt is for a string then the kSymDsvFl will be set
  2893. // which will prevent the switch() from working - so clear the sym flag here.
  2894. unsigned flags = cmClrFlag(f->flags,kSymDsvFl);
  2895. switch(flags)
  2896. {
  2897. case kUCharDsvFl:
  2898. // not implemented - need to implment a uchar variable type or
  2899. // assume a one character strz.
  2900. assert(0);
  2901. break;
  2902. case kIntDsvFl:
  2903. pn = snprintf(p->buf+bi,bn,fmt + fsi, cmDspInt(&p->inst,varId));
  2904. break;
  2905. case kUIntDsvFl:
  2906. pn = snprintf(p->buf+bi,bn,fmt + fsi, cmDspUInt(&p->inst,varId));
  2907. break;
  2908. case kDoubleDsvFl:
  2909. pn = snprintf(p->buf+bi,bn,fmt + fsi, cmDspDouble(&p->inst,varId));
  2910. break;
  2911. case kStrzDsvFl:
  2912. if( cmDspIsSymbol(&p->inst,varId) )
  2913. pn = snprintf(p->buf+bi,bn,fmt + fsi, cmStringNullGuard(cmSymTblLabel(ctx->stH,cmDspSymbol(&p->inst,varId))));
  2914. else
  2915. pn = snprintf(p->buf+bi,bn,fmt + fsi, cmDspStrcz(&p->inst,varId));
  2916. break;
  2917. default:
  2918. { assert(0); }
  2919. }
  2920. // restore the char written over by the termination zero
  2921. fmt[ f->fsi + f->fsn] = c;
  2922. assert(pn<=bn);
  2923. bn -= pn;
  2924. bi += pn;
  2925. fsi += f->fsn;
  2926. }
  2927. // if there is literal text in the format string after the last conversion spec.
  2928. if( fsi < fn )
  2929. {
  2930. unsigned cn = cmMin(fn-fsi,bn);
  2931. strncpy(p->buf+bi,fmt+fsi,cn);
  2932. }
  2933. return rc;
  2934. }
  2935. cmDspInst_t* _cmDspSprintfAlloc(cmDspCtx_t* ctx, cmDspClass_t* classPtr, unsigned storeSymId, unsigned instSymId, unsigned id, unsigned va_cnt, va_list vl )
  2936. {
  2937. cmDspVarArg_t args[] =
  2938. {
  2939. { "fmt", kFmtSpId, 0, 0, kInDsvFl | kStrzDsvFl | kReqArgDsvFl, "Format string" },
  2940. { "out", kOutSpId, 0, 0, kOutDsvFl | kStrzDsvFl, "Output string" },
  2941. { NULL, 0, 0, 0, 0 }
  2942. };
  2943. cmDspSprintf_t* p = NULL;
  2944. if( _cmSprintfLoadFormat(&p, ctx, classPtr, instSymId, id, storeSymId, args, va_cnt, vl ) == kOkDspRC )
  2945. return &p->inst;
  2946. return NULL;
  2947. }
  2948. cmDspRC_t _cmDspSprintfFree(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  2949. {
  2950. cmDspSprintf_t* p = (cmDspSprintf_t*)inst;
  2951. cmLhFree(ctx->lhH,p->fmtArray);
  2952. cmLhFree(ctx->lhH,p->fmtStr);
  2953. p->fmtArray=NULL;
  2954. return kOkDspRC;
  2955. }
  2956. cmDspRC_t _cmDspSprintfReset(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  2957. {
  2958. return kOkDspRC;
  2959. }
  2960. cmDspRC_t _cmDspSprintfRecv(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  2961. {
  2962. cmDspRC_t rc= kOkDspRC;
  2963. cmDspSprintf_t* p = (cmDspSprintf_t*)inst;
  2964. if( kInSpId <= evt->dstVarId && evt->dstVarId < kInSpId + p->inCnt )
  2965. {
  2966. cmDspSetEvent(ctx,inst,evt);
  2967. //if( evt->dstVarId == kInSpId )
  2968. if((rc = _cmDspSprintfGenString(ctx,p)) == kOkDspRC )
  2969. cmDspSetStrcz(ctx,inst,kOutSpId,p->buf);
  2970. }
  2971. return rc;
  2972. }
  2973. struct cmDspClass_str* cmSprintfClassCons( cmDspCtx_t* ctx )
  2974. {
  2975. cmDspClassSetup(&_cmSprintfDC,ctx,"Sprintf",
  2976. NULL,
  2977. _cmDspSprintfAlloc,
  2978. _cmDspSprintfFree,
  2979. _cmDspSprintfReset,
  2980. NULL,
  2981. _cmDspSprintfRecv,
  2982. NULL,NULL,
  2983. "String formatter." );
  2984. return &_cmSprintfDC;
  2985. }
  2986. //==========================================================================================================================================
  2987. enum
  2988. {
  2989. kOutAmId,
  2990. kBaseInAmId
  2991. };
  2992. cmDspClass_t _cmAMixDC;
  2993. typedef struct
  2994. {
  2995. cmDspInst_t inst;
  2996. unsigned inPortCnt;
  2997. unsigned baseGainId;
  2998. unsigned baseMuteId;
  2999. } cmDspAMix_t;
  3000. cmDspInst_t* _cmDspAMixAlloc(cmDspCtx_t* ctx, cmDspClass_t* classPtr, unsigned storeSymId, unsigned instSymId, unsigned id, unsigned va_cnt, va_list vl )
  3001. {
  3002. if( va_cnt < 1 )
  3003. {
  3004. cmDspClassErr(ctx,classPtr,kVarArgParseFailDspRC,"The 'AMix' constructor must have a count of input ports.");
  3005. return NULL;
  3006. }
  3007. // args:
  3008. // <inPortCnt> <gain0>, <gain1> (the default gains are optional)
  3009. unsigned i;
  3010. int inPortCnt = va_arg(vl,int);
  3011. unsigned baseGainAmId = kBaseInAmId + inPortCnt;
  3012. unsigned baseMuteAmId = baseGainAmId + inPortCnt;
  3013. double dfltGain[ inPortCnt ];
  3014. if( va_cnt == 1 )
  3015. cmVOD_Fill(dfltGain,inPortCnt,1.0);
  3016. else
  3017. if( va_cnt == 2 )
  3018. {
  3019. dfltGain[0] = va_arg(vl,double);
  3020. cmVOD_Fill(dfltGain+1,inPortCnt-1,dfltGain[0]);
  3021. }
  3022. else
  3023. if( va_cnt == inPortCnt + 1 )
  3024. {
  3025. for(i=0; i<inPortCnt; ++i)
  3026. dfltGain[i] = va_arg(vl,double);
  3027. }
  3028. else
  3029. {
  3030. cmDspClassErr(ctx,classPtr,kInvalidArgDspRC,"The mix argument list must contain no default gain values, one default gain value, or all default gain values.");
  3031. return NULL;
  3032. }
  3033. cmDspAMix_t* p = cmDspInstAllocV(cmDspAMix_t,ctx,classPtr,instSymId,id,storeSymId,0,vl,
  3034. 1, "out", kOutAmId, 0, 1, kOutDsvFl | kAudioBufDsvFl, "Audio output",
  3035. inPortCnt, "in", kBaseInAmId, 0, 0, kInDsvFl | kAudioBufDsvFl, "Audio input",
  3036. inPortCnt, "gain", baseGainAmId, 0, 0, kInDsvFl | kDoubleDsvFl, "Gain input",
  3037. inPortCnt, "mute", baseMuteAmId, 0, 0, kInDsvFl | kBoolDsvFl, "Mute input",
  3038. 0 );
  3039. p->inPortCnt = inPortCnt;
  3040. p->baseGainId = baseGainAmId;
  3041. p->baseMuteId = baseMuteAmId;
  3042. for(i=0; i<inPortCnt; ++i)
  3043. {
  3044. cmDspSetDefaultDouble( ctx, &p->inst, p->baseGainId + i, 0.0, dfltGain[i]);
  3045. cmDspSetDefaultBool( ctx, &p->inst, p->baseMuteId + i, false, false );
  3046. }
  3047. /*
  3048. // read any default gain settings
  3049. --va_cnt;
  3050. for(i=0; i<inPortCnt; ++i)
  3051. {
  3052. // if excplicit gains are not given then default to 1.0.
  3053. double dflt = 1.0;
  3054. if( i < va_cnt )
  3055. dflt = va_arg(vl,double);
  3056. cmDspSetDefaultDouble( ctx, &p->inst, p->baseGainId + i, 0.0, dflt);
  3057. }
  3058. */
  3059. return &p->inst;
  3060. }
  3061. cmDspRC_t _cmDspAMixReset(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  3062. {
  3063. cmDspRC_t rc = kOkDspRC;
  3064. cmDspApplyAllDefaults(ctx,inst);
  3065. cmDspZeroAudioBuf(ctx,inst,kOutAmId);
  3066. return rc;
  3067. }
  3068. cmDspRC_t _cmDspAMixExec(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  3069. {
  3070. cmDspAMix_t* p = (cmDspAMix_t*)inst;
  3071. unsigned i;
  3072. cmDspZeroAudioBuf(ctx,inst,kOutAmId);
  3073. unsigned n = cmDspAudioBufSmpCount(ctx,inst,kOutAmId,0);
  3074. cmSample_t* dp = cmDspAudioBuf(ctx,inst,kOutAmId,0);
  3075. for(i=0; i<p->inPortCnt; ++i)
  3076. {
  3077. const cmSample_t* sp = cmDspAudioBuf(ctx,inst,kBaseInAmId+i,0);
  3078. if( sp != NULL )
  3079. {
  3080. double gain = cmDspDouble(inst,p->baseGainId+i);
  3081. cmVOS_MultSumVVS(dp,n,sp,(cmSample_t)gain);
  3082. }
  3083. }
  3084. return kOkDspRC;
  3085. }
  3086. cmDspRC_t _cmDspAMixRecv(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  3087. {
  3088. cmDspRC_t rc = kOkDspRC;
  3089. cmDspAMix_t* p = (cmDspAMix_t*)inst;
  3090. if( p->baseGainId <= evt->dstVarId && evt->dstVarId < p->baseGainId + p->inPortCnt )
  3091. {
  3092. cmDspSetEvent(ctx,inst,evt);
  3093. //printf("rcv:%i %f\n",evt->dstVarId,cmDspDouble(inst,evt->dstVarId));
  3094. }
  3095. return rc;
  3096. }
  3097. struct cmDspClass_str* cmAMixClassCons( cmDspCtx_t* ctx )
  3098. {
  3099. cmDspClassSetup(&_cmAMixDC,ctx,"AMix",
  3100. NULL,
  3101. _cmDspAMixAlloc,
  3102. NULL,
  3103. _cmDspAMixReset,
  3104. _cmDspAMixExec,
  3105. _cmDspAMixRecv,
  3106. NULL,NULL,
  3107. "Audio mixer");
  3108. return &_cmAMixDC;
  3109. }
  3110. //==========================================================================================================================================
  3111. enum
  3112. {
  3113. kInAsId,
  3114. kBaseOutAsId
  3115. };
  3116. cmDspClass_t _cmASplitDC;
  3117. typedef struct
  3118. {
  3119. cmDspInst_t inst;
  3120. unsigned outPortCnt;
  3121. unsigned baseGainId;
  3122. } cmDspASplit_t;
  3123. // A splitter has one audio input port and multiple audio output ports.
  3124. // A gain input is automatically provided for each output port.
  3125. cmDspInst_t* _cmDspASplitAlloc(cmDspCtx_t* ctx, cmDspClass_t* classPtr, unsigned storeSymId, unsigned instSymId, unsigned id, unsigned va_cnt, va_list vl )
  3126. {
  3127. cmDspVarArg_t args[] =
  3128. {
  3129. { "in", kInAsId, 0, 0, kInDsvFl | kAudioBufDsvFl, "Audio input" },
  3130. { NULL, 0, 0, 0, 0 }
  3131. };
  3132. if( va_cnt < 1 )
  3133. {
  3134. cmDspClassErr(ctx,classPtr,kVarArgParseFailDspRC,"The 'ASplit' constructor must have a count of input ports.");
  3135. return NULL;
  3136. }
  3137. // args:
  3138. // <outPortCnt> <gain0>, <gain1> (the default gains are optional)
  3139. unsigned i,j,k;
  3140. int outPortCnt = va_arg(vl,int);
  3141. unsigned fixArgCnt = sizeof(args)/sizeof(args[0]) - 1;
  3142. unsigned argCnt = fixArgCnt + 2*outPortCnt + 1;
  3143. cmDspVarArg_t argArray[ argCnt ];
  3144. int labelCharCnt = 15;
  3145. cmChar_t label[ labelCharCnt + 1 ];
  3146. label[labelCharCnt] = 0;
  3147. //
  3148. for(i=0; i<fixArgCnt; ++i)
  3149. argArray[i] = args[i];
  3150. // define the audio output port specifications
  3151. for(j=0,k=0; j<outPortCnt; ++i,++j,++k)
  3152. {
  3153. snprintf(label,labelCharCnt,"out-%i",j);
  3154. unsigned symId = cmSymTblRegisterSymbol(ctx->stH,label);
  3155. argArray[i].label = cmSymTblLabel(ctx->stH,symId);
  3156. argArray[i].constId = kBaseOutAsId + k;
  3157. argArray[i].rn = 0;
  3158. argArray[i].cn = 1;
  3159. argArray[i].flags = kOutDsvFl | kAudioBufDsvFl;
  3160. argArray[i].doc = "Audio Input";
  3161. }
  3162. // define the gain input specifications
  3163. for(j=0; j<outPortCnt; ++i,++j,++k)
  3164. {
  3165. snprintf(label,labelCharCnt,"gain-%i",j);
  3166. unsigned symId = cmSymTblRegisterSymbol(ctx->stH,label);
  3167. argArray[i].label = cmSymTblLabel(ctx->stH,symId);
  3168. argArray[i].constId = kBaseOutAsId + k;
  3169. argArray[i].rn = 0;
  3170. argArray[i].cn = 0;
  3171. argArray[i].flags = kInDsvFl | kDoubleDsvFl;
  3172. argArray[i].doc = "Gain input";
  3173. }
  3174. // set the NULL end-of-arg-array sentinel
  3175. memset(argArray + i, 0, sizeof(argArray[0]));
  3176. cmDspASplit_t* p = cmDspInstAlloc(cmDspASplit_t,ctx,classPtr,argArray,instSymId,id,storeSymId,0,vl);
  3177. p->outPortCnt = outPortCnt;
  3178. p->baseGainId = kBaseOutAsId + outPortCnt;
  3179. // read any default gain settings
  3180. --va_cnt;
  3181. for(i=0; i<outPortCnt; ++i)
  3182. {
  3183. double dflt = 1.0;
  3184. if( i < va_cnt )
  3185. dflt = va_arg(vl,double);
  3186. cmDspSetDefaultDouble( ctx, &p->inst, p->baseGainId + i, 0.0, dflt);
  3187. }
  3188. return &p->inst;
  3189. }
  3190. cmDspRC_t _cmDspASplitReset(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  3191. {
  3192. cmDspRC_t rc = kOkDspRC;
  3193. cmDspASplit_t* p = (cmDspASplit_t*)inst;
  3194. int i;
  3195. cmDspApplyAllDefaults(ctx,inst);
  3196. for(i=0; i<p->outPortCnt; ++i)
  3197. cmDspZeroAudioBuf(ctx,inst,kBaseOutAsId+i);
  3198. return rc;
  3199. }
  3200. cmDspRC_t _cmDspASplitExec(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  3201. {
  3202. cmDspASplit_t* p = (cmDspASplit_t*)inst;
  3203. unsigned i;
  3204. unsigned n = cmDspAudioBufSmpCount(ctx,inst,kBaseOutAsId,0);
  3205. const cmSample_t* sp = cmDspAudioBuf(ctx,inst,kInAsId,0);
  3206. for(i=0; i<p->outPortCnt; ++i)
  3207. {
  3208. cmSample_t* dp = cmDspAudioBuf(ctx,inst,kBaseOutAsId+i,0);
  3209. double gain = cmDspDouble(inst,p->baseGainId+i);
  3210. cmVOS_MultVVS(dp,n,sp,(cmSample_t)gain);
  3211. }
  3212. return kOkDspRC;
  3213. }
  3214. cmDspRC_t _cmDspASplitRecv(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  3215. {
  3216. cmDspRC_t rc = kOkDspRC;
  3217. cmDspASplit_t* p = (cmDspASplit_t*)inst;
  3218. if( p->baseGainId <= evt->dstVarId && evt->dstVarId < p->baseGainId + p->outPortCnt )
  3219. {
  3220. cmDspSetEvent(ctx,inst,evt);
  3221. }
  3222. return rc;
  3223. }
  3224. struct cmDspClass_str* cmASplitClassCons( cmDspCtx_t* ctx )
  3225. {
  3226. cmDspClassSetup(&_cmASplitDC,ctx,"ASplit",
  3227. NULL,
  3228. _cmDspASplitAlloc,
  3229. NULL,
  3230. _cmDspASplitReset,
  3231. _cmDspASplitExec,
  3232. _cmDspASplitRecv,
  3233. NULL,NULL,
  3234. "Audio splitter");
  3235. return &_cmASplitDC;
  3236. }
  3237. //==========================================================================================================================================
  3238. enum
  3239. {
  3240. kInAmId,
  3241. kMinAmId,
  3242. kMaxAmId,
  3243. kValAmId, // meter value
  3244. kLblAmId,
  3245. };
  3246. #define cmDspMeter_MIN (-100)
  3247. #define cmDspMeter_MAX (0)
  3248. cmDspClass_t _cmAMeterDC;
  3249. typedef struct
  3250. {
  3251. cmDspInst_t inst;
  3252. unsigned bufN;
  3253. unsigned idx;
  3254. cmReal_t sum;
  3255. cmReal_t val;
  3256. } cmDspAMeter_t;
  3257. cmDspInst_t* _cmDspAMeterAlloc(cmDspCtx_t* ctx, cmDspClass_t* classPtr, unsigned storeSymId, unsigned instSymId, unsigned id, unsigned va_cnt, va_list vl )
  3258. {
  3259. cmDspVarArg_t args[] =
  3260. {
  3261. { "in", kInAmId, 0, 0, kInDsvFl | kAudioBufDsvFl, "Audio input"},
  3262. { "min", kMinAmId, 0, 0, kDoubleDsvFl, "Minimum value"},
  3263. { "max", kMaxAmId, 0, 0, kDoubleDsvFl, "Maximum value"},
  3264. { "val", kValAmId, 0, 0, kDoubleDsvFl, "Meter value"},
  3265. { "label",kLblAmId, 0, 0, kStrzDsvFl, "Label."},
  3266. { NULL, 0, 0, 0, 0 }
  3267. };
  3268. cmDspAMeter_t* p = cmDspInstAlloc(cmDspAMeter_t,ctx,classPtr,args,instSymId,id,storeSymId,va_cnt,vl);
  3269. double updateMs = 100;
  3270. double sr = cmDspSampleRate(ctx);
  3271. unsigned spc = cmDspSamplesPerCycle(ctx);
  3272. p->bufN = cmMax(1,floor(updateMs * sr/ (1000.0 * spc)));
  3273. cmDspSetDefaultDouble(ctx, &p->inst, kValAmId, 0.0, cmDspMeter_MIN);
  3274. cmDspSetDefaultDouble(ctx, &p->inst, kMinAmId, 0.0, cmDspMeter_MIN);
  3275. cmDspSetDefaultDouble(ctx, &p->inst, kMaxAmId, 0.0, cmDspMeter_MAX);
  3276. // create the UI control
  3277. cmDspUiMeterCreate(ctx,&p->inst,kMinAmId,kMaxAmId,kValAmId,kLblAmId);
  3278. return &p->inst;
  3279. }
  3280. cmDspRC_t _cmDspAMeterReset(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  3281. {
  3282. cmDspAMeter_t* p = (cmDspAMeter_t*)inst;
  3283. cmDspApplyAllDefaults(ctx,inst);
  3284. //cmDspZeroAudioBuf(ctx,inst,kInAmId);
  3285. p->idx = 0;
  3286. p->sum = 0;
  3287. p->val = 0;
  3288. return kOkDspRC;
  3289. }
  3290. cmDspRC_t _cmDspAMeterExec(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  3291. {
  3292. cmDspAMeter_t* p = (cmDspAMeter_t*)inst;
  3293. unsigned n = cmDspAudioBufSmpCount(ctx,inst,kInAmId,0);
  3294. const cmSample_t* sp = cmDspAudioBuf(ctx,inst,kInAmId,0);
  3295. if( sp == NULL )
  3296. {
  3297. inst->execFunc = NULL; // if there is no connected input then disable further callbacks
  3298. return kOkDspRC;
  3299. }
  3300. p->sum += cmVOS_SquaredSum(sp,n);
  3301. ++p->idx;
  3302. if( p->idx == p->bufN )
  3303. {
  3304. cmReal_t coeff = 0.7;
  3305. cmReal_t rms = sqrt(p->sum/(n*p->bufN));
  3306. p->idx = 0;
  3307. p->sum = 0;
  3308. p->val = rms > p->val ? rms : (rms*(1.0-coeff)) + (p->val*coeff);
  3309. double db = cmMax(cmDspMeter_MIN,cmMin(cmDspMeter_MAX,20.0 * log10(p->val)));
  3310. cmDspSetDouble(ctx, inst, kValAmId, db);
  3311. }
  3312. return kOkDspRC;
  3313. }
  3314. struct cmDspClass_str* cmAMeterClassCons( cmDspCtx_t* ctx )
  3315. {
  3316. cmDspClassSetup(&_cmAMeterDC,ctx,"AMeter",
  3317. NULL,
  3318. _cmDspAMeterAlloc,
  3319. NULL,
  3320. _cmDspAMeterReset,
  3321. _cmDspAMeterExec,
  3322. NULL,
  3323. NULL,NULL,
  3324. "Audio meter display.");
  3325. return &_cmAMeterDC;
  3326. }
  3327. //==========================================================================================================================================
  3328. //
  3329. //
  3330. // Read files created by this object with the Octave function cmTextFile().
  3331. //
  3332. //
  3333. enum
  3334. {
  3335. kCntTfId,
  3336. kFnTfId,
  3337. kBaseTfId
  3338. };
  3339. cmDspClass_t _cmTextFileDC;
  3340. typedef struct
  3341. {
  3342. cmDspInst_t inst;
  3343. int inPortCnt;
  3344. cmFileH_t fH;
  3345. } cmDspTextFile_t;
  3346. cmDspInst_t* _cmDspTextFileAlloc(cmDspCtx_t* ctx, cmDspClass_t* classPtr, unsigned storeSymId, unsigned instSymId, unsigned id, unsigned va_cnt, va_list vl )
  3347. {
  3348. cmDspVarArg_t args[] =
  3349. {
  3350. { "cnt", kCntTfId, 0, 0, kIntDsvFl | kReqArgDsvFl, "Input port count"},
  3351. { "fn", kFnTfId, 0, 0, kInDsvFl | kStrzDsvFl | kReqArgDsvFl, "File name"},
  3352. { NULL, 0, 0, 0, 0 }
  3353. };
  3354. if( va_cnt < 1 )
  3355. {
  3356. cmDspClassErr(ctx,classPtr,kInvalidArgDspRC,"The text file object must be given a input port count argument.");
  3357. return NULL;
  3358. }
  3359. va_list vl1;
  3360. va_copy(vl1,vl);
  3361. int i,j;
  3362. int inPortCnt = va_arg(vl1,int);
  3363. unsigned fixArgCnt = sizeof(args)/sizeof(args[0]) - 1;
  3364. unsigned argCnt = fixArgCnt + inPortCnt + 1;
  3365. cmDspVarArg_t argArray[ argCnt ];
  3366. if( inPortCnt <= 0 )
  3367. {
  3368. cmDspClassErr(ctx,classPtr,kInvalidArgDspRC,"The text file input port count must be a positive integer.");
  3369. return NULL;
  3370. }
  3371. //
  3372. for(i=0; i<fixArgCnt; ++i)
  3373. argArray[i] = args[i];
  3374. // define the input port specifications
  3375. for(j=0; j<inPortCnt; ++j,++i)
  3376. {
  3377. int labelCharCnt = 15;
  3378. cmChar_t label[ labelCharCnt + 1 ];
  3379. label[labelCharCnt] = 0;
  3380. snprintf(label,labelCharCnt,"in-%i",j);
  3381. unsigned symId = cmSymTblRegisterSymbol(ctx->stH,label);
  3382. argArray[i].label = cmSymTblLabel(ctx->stH,symId);
  3383. argArray[i].constId = kBaseTfId + j;
  3384. argArray[i].rn = 0;
  3385. argArray[i].cn = 0;
  3386. argArray[i].flags = kInDsvFl | kDoubleDsvFl | kSymDsvFl;
  3387. argArray[i].doc = "Data input";
  3388. }
  3389. // set the NULL end-of-arg-array sentinel
  3390. memset(argArray + i, 0, sizeof(argArray[0]));
  3391. cmDspTextFile_t* p = cmDspInstAlloc(cmDspTextFile_t,ctx,classPtr,argArray,instSymId,id,storeSymId,va_cnt,vl);
  3392. p->inPortCnt = inPortCnt;
  3393. p->fH = cmFileNullHandle;
  3394. return &p->inst;
  3395. }
  3396. cmDspRC_t _cmDspTextFileFree(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  3397. {
  3398. cmDspTextFile_t* p = (cmDspTextFile_t*)inst;
  3399. if( cmFileClose(&p->fH) )
  3400. return cmErrMsg(&inst->classPtr->err, kInstFinalFailDspRC, "Text file close failed.");
  3401. return kOkDspRC;
  3402. }
  3403. cmDspRC_t _cmDspTextFileReset(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  3404. {
  3405. cmDspRC_t rc = kOkDspRC;
  3406. cmDspTextFile_t* p = (cmDspTextFile_t*)inst;
  3407. cmDspApplyAllDefaults(ctx,inst);
  3408. const cmChar_t* fn = cmDspStrcz(inst,kFnTfId);
  3409. if( cmFileOpen( &p->fH, fn, kWriteFileFl, ctx->cmCtx->err.rpt ) != kOkFileRC )
  3410. rc = cmErrMsg(&inst->classPtr->err, kInstResetFailDspRC, "Text file open failed.");
  3411. return rc;
  3412. }
  3413. cmDspRC_t _cmDspTextFileRecv(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  3414. {
  3415. cmDspTextFile_t* p = (cmDspTextFile_t*)inst;
  3416. cmDspSetEvent(ctx,inst,evt);
  3417. if( cmFileIsValid(p->fH) && evt->dstVarId >= kBaseTfId )
  3418. {
  3419. double secs = ctx->ctx->begSmpIdx / cmDspSampleRate(ctx);
  3420. cmFilePrintf(p->fH,"%f %f %i ", secs, secs, evt->dstVarId-kBaseTfId);
  3421. if( cmIsFlag(evt->valuePtr->flags,kSymDsvFl) )
  3422. cmFilePrintf(p->fH,"%s\n", cmStringNullGuard(cmSymTblLabel(ctx->stH,cmDsvSymbol(evt->valuePtr))));
  3423. else
  3424. cmFilePrintf(p->fH,"%f\n", cmDspDouble(inst,evt->dstVarId));
  3425. }
  3426. return kOkDspRC;
  3427. }
  3428. struct cmDspClass_str* cmTextFileClassCons( cmDspCtx_t* ctx )
  3429. {
  3430. cmDspClassSetup(&_cmTextFileDC,ctx,"TextFile",
  3431. NULL,
  3432. _cmDspTextFileAlloc,
  3433. _cmDspTextFileFree,
  3434. _cmDspTextFileReset,
  3435. NULL,
  3436. _cmDspTextFileRecv,
  3437. NULL,NULL,
  3438. "Time tagged text file.");
  3439. return &_cmTextFileDC;
  3440. }
  3441. //==========================================================================================================================================
  3442. enum
  3443. {
  3444. kRsrcArId,
  3445. kCmdArId,
  3446. kIdxArId,
  3447. kValArId,
  3448. kCntArId,
  3449. kDoneArId,
  3450. kBaseOutArId
  3451. };
  3452. cmDspClass_t _cmArrayDC;
  3453. typedef struct
  3454. {
  3455. cmDspInst_t inst;
  3456. unsigned cnt;
  3457. cmReal_t* array;
  3458. unsigned printSymId;
  3459. unsigned sendSymId;
  3460. unsigned cntSymId;
  3461. unsigned doneSymId;
  3462. } cmDspArray_t;
  3463. cmDspInst_t* _cmDspArrayAlloc(cmDspCtx_t* ctx, cmDspClass_t* classPtr, unsigned storeSymId, unsigned instSymId, unsigned id, unsigned va_cnt, va_list vl )
  3464. {
  3465. va_list vl1;
  3466. va_copy(vl1,vl);
  3467. if( va_cnt < 1 )
  3468. {
  3469. cmDspClassErr(ctx,classPtr,kInvalidArgDspRC,"The array object must be given a 'rsrc' parameter.");
  3470. return NULL;
  3471. }
  3472. const cmChar_t* rsrcStr = va_arg(vl,cmChar_t*);
  3473. unsigned outPortCnt = 0;
  3474. cmReal_t* array = NULL;
  3475. unsigned doneSymId = cmDspSysRegisterStaticSymbol(ctx->dspH,"done");
  3476. unsigned i;
  3477. if( rsrcStr == NULL )
  3478. {
  3479. cmDspClassErr(ctx,classPtr,kInvalidArgDspRC,"The array object 'rsrc' parameter appears to be missing.");
  3480. return NULL;
  3481. }
  3482. if( cmDspRsrcRealArray( ctx->dspH, &outPortCnt, &array, rsrcStr, NULL ) != kOkDspRC )
  3483. {
  3484. cmDspClassErr(ctx,classPtr,kInvalidArgDspRC,"The array resource '%s' could not be read.",cmStringNullGuard(rsrcStr));
  3485. return NULL;
  3486. }
  3487. cmDspArray_t* p = cmDspInstAllocV(cmDspArray_t,ctx,classPtr,instSymId,id,storeSymId,va_cnt,vl1,
  3488. 1, "rsrc", kRsrcArId, 0, 0, kStrzDsvFl | kInDsvFl | kReqArgDsvFl, "Array data resource label.",
  3489. 1, "cmd", kCmdArId, 0, 0, kSymDsvFl | kInDsvFl, "Command: send | print | count.",
  3490. 1, "idx", kIdxArId, 0, 0, kUIntDsvFl | kInDsvFl, "Send value at index out 'val' port.",
  3491. 1, "val", kValArId, 0, 0, kDoubleDsvFl | kOutDsvFl, "Index output value.",
  3492. 1, "cnt", kCntArId, 0, 0, kUIntDsvFl | kOutDsvFl, "Count output value.",
  3493. 1, "done", kDoneArId, 0, 0, kSymDsvFl | kOutDsvFl, "'done' after last send.",
  3494. outPortCnt, "out", kBaseOutArId, 0, 0, kDoubleDsvFl | kOutDsvFl | kSendDfltDsvFl, "Individual real value outputs.",
  3495. 0 );
  3496. cmDspSetDefaultDouble( ctx, &p->inst, kValArId, 0, 0 );
  3497. cmDspSetDefaultUInt( ctx, &p->inst, kCntArId, 0, outPortCnt );
  3498. cmDspSetDefaultSymbol( ctx, &p->inst, kDoneArId, doneSymId);
  3499. for(i=0; i<outPortCnt; ++i)
  3500. cmDspSetDefaultDouble( ctx, &p->inst, kBaseOutArId+i, 0, array[i] );
  3501. p->array = array;
  3502. p->cnt = outPortCnt;
  3503. p->sendSymId = cmDspSysRegisterStaticSymbol(ctx->dspH,"send");
  3504. p->printSymId = cmDspSysRegisterStaticSymbol(ctx->dspH,"print");
  3505. p->cntSymId = cmDspSysRegisterStaticSymbol(ctx->dspH,"count");
  3506. p->doneSymId = doneSymId;
  3507. return &p->inst;
  3508. }
  3509. cmDspRC_t _cmDspArrayReset(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  3510. {
  3511. cmDspArray_t* p = (cmDspArray_t*)inst;
  3512. cmDspRC_t rc;
  3513. // send 'out' values and then 'done' value
  3514. if((rc = cmDspApplyAllDefaults(ctx,inst)) == kOkDspRC )
  3515. cmDspSetSymbol(ctx,inst,kDoneArId,p->doneSymId);
  3516. return rc;
  3517. }
  3518. cmDspRC_t _cmDspArrayRecv(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  3519. {
  3520. cmDspRC_t rc;
  3521. cmDspArray_t* p = (cmDspArray_t*)inst;
  3522. if((rc = cmDspSetEvent(ctx,inst,evt)) != kOkDspRC )
  3523. return rc;
  3524. switch( evt->dstVarId )
  3525. {
  3526. case kCmdArId:
  3527. {
  3528. unsigned i;
  3529. unsigned cmdSymId = cmDsvSymbol(evt->valuePtr);
  3530. if( cmdSymId == p->printSymId )
  3531. {
  3532. for(i=0; i<p->cnt; ++i)
  3533. cmRptPrintf(ctx->rpt,"%f ",p->array[i]);
  3534. cmRptPrintf(ctx->rpt,"\n");
  3535. }
  3536. else
  3537. if( cmdSymId == p->sendSymId )
  3538. {
  3539. for(i=0; i<p->cnt; ++i)
  3540. cmDspSetDouble(ctx,inst,kBaseOutArId+i,p->array[i]);
  3541. cmDspSetSymbol(ctx,inst,kDoneArId,p->doneSymId);
  3542. }
  3543. else
  3544. if( cmdSymId == p->cntSymId )
  3545. {
  3546. cmDspSetUInt(ctx,inst,kCntArId,p->cnt);
  3547. }
  3548. }
  3549. break;
  3550. case kIdxArId:
  3551. {
  3552. unsigned idx = cmDsvUInt(evt->valuePtr);
  3553. if( idx < p->cnt )
  3554. cmDspSetDouble(ctx,inst,kValArId,p->array[idx]);
  3555. }
  3556. break;
  3557. }
  3558. return kOkDspRC;
  3559. }
  3560. struct cmDspClass_str* cmArrayClassCons( cmDspCtx_t* ctx )
  3561. {
  3562. cmDspClassSetup(&_cmArrayDC,ctx,"Array",
  3563. NULL,
  3564. _cmDspArrayAlloc,
  3565. NULL,
  3566. _cmDspArrayReset,
  3567. NULL,
  3568. _cmDspArrayRecv,
  3569. NULL,NULL,
  3570. "Time tagged text file.");
  3571. return &_cmArrayDC;
  3572. }
  3573. //==========================================================================================================================================
  3574. enum
  3575. {
  3576. kMidiPcId,
  3577. kHzPcId,
  3578. kOffsPcId,
  3579. kStrPcId,
  3580. kRatioPcId
  3581. };
  3582. cmDspClass_t _cmPitchCvtDC;
  3583. typedef struct
  3584. {
  3585. cmDspInst_t inst;
  3586. int midi;
  3587. double hz;
  3588. } cmDspPitchCvt_t;
  3589. cmDspInst_t* _cmDspPitchCvtAlloc(cmDspCtx_t* ctx, cmDspClass_t* classPtr, unsigned storeSymId, unsigned instSymId, unsigned id, unsigned va_cnt, va_list vl )
  3590. {
  3591. va_cnt = 0; // ignore an errant arguments
  3592. cmDspPitchCvt_t* p = cmDspInstAllocV(cmDspPitchCvt_t,ctx,classPtr,instSymId,id,storeSymId,va_cnt,vl,
  3593. 1, "midi", kMidiPcId, 0, 0, kUIntDsvFl | kInDsvFl | kOutDsvFl | kOptArgDsvFl, "MIDI pitch value input.",
  3594. 1, "hz", kHzPcId, 0, 0, kDoubleDsvFl | kInDsvFl | kOutDsvFl | kOptArgDsvFl, "Hz pitch value.",
  3595. 1, "offs", kOffsPcId, 0, 0, kDoubleDsvFl | kInDsvFl | kInDsvFl | kOptArgDsvFl, "Semitone offset.",
  3596. 1, "str", kStrPcId, 0, 0, kStrzDsvFl | kOutDsvFl, "Pitch string output.",
  3597. 1, "ratio", kRatioPcId, 0, 0, kDoubleDsvFl | kOutDsvFl, "Offset as a ratio",
  3598. 0 );
  3599. cmDspSetDefaultUInt( ctx, &p->inst, kMidiPcId, 0, 0 );
  3600. cmDspSetDefaultDouble( ctx, &p->inst, kHzPcId, 0, 0.0 );
  3601. cmDspSetDefaultDouble( ctx, &p->inst, kOffsPcId, 0, 0 );
  3602. cmDspSetDefaultStrcz( ctx, &p->inst, kStrPcId, NULL, "" );
  3603. cmDspSetDefaultDouble( ctx, &p->inst, kRatioPcId, 0, 0 );
  3604. return &p->inst;
  3605. }
  3606. cmDspRC_t _cmDspPitchCvtReset(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  3607. {
  3608. cmDspRC_t rc = cmDspApplyAllDefaults(ctx,inst);
  3609. return rc;
  3610. }
  3611. cmDspRC_t _cmDspPitchCvtOutput( cmDspCtx_t* ctx, cmDspPitchCvt_t* p )
  3612. {
  3613. cmDspInst_t* inst = &p->inst;
  3614. double offs = cmDspDouble( inst, kOffsPcId );
  3615. unsigned midi = cmMax(0, p->midi + rint(offs) );
  3616. double ratio= pow(2.0,offs/12.0);
  3617. double hz = p->hz * ratio;
  3618. //cmRptPrintf(ctx->rpt,"%i %i %f %f\n",offs,midi,hz,p->hz);
  3619. cmDspSetStrcz( ctx, inst, kStrPcId, cmMidiToSciPitch(midi,NULL,0));
  3620. cmDspSetUInt( ctx, inst, kMidiPcId, midi);
  3621. cmDspSetDouble( ctx, inst, kHzPcId, hz);
  3622. cmDspSetDouble( ctx, inst, kRatioPcId, ratio );
  3623. return kOkDspRC;
  3624. }
  3625. cmDspRC_t _cmDspPitchCvtRecv(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  3626. {
  3627. cmDspRC_t rc = kOkDspRC;
  3628. cmDspPitchCvt_t* p = (cmDspPitchCvt_t*)inst;
  3629. switch( evt->dstVarId )
  3630. {
  3631. case kMidiPcId:
  3632. p->midi = cmMax(0,cmDsvGetInt(evt->valuePtr));
  3633. p->hz = cmMidiToHz(p->midi);
  3634. rc = _cmDspPitchCvtOutput(ctx,p);
  3635. break;
  3636. case kHzPcId:
  3637. p->hz = cmDsvGetDouble(evt->valuePtr);
  3638. p->midi = cmHzToMidi(p->hz);
  3639. rc = _cmDspPitchCvtOutput(ctx,p);
  3640. break;
  3641. case kOffsPcId:
  3642. if((rc = cmDspSetEvent(ctx, inst, evt )) == kOkDspRC )
  3643. rc = _cmDspPitchCvtOutput(ctx,p);
  3644. break;
  3645. }
  3646. return rc;
  3647. }
  3648. struct cmDspClass_str* cmPitchCvtClassCons( cmDspCtx_t* ctx )
  3649. {
  3650. cmDspClassSetup(&_cmPitchCvtDC,ctx,"PitchCvt",
  3651. NULL,
  3652. _cmDspPitchCvtAlloc,
  3653. NULL,
  3654. _cmDspPitchCvtReset,
  3655. NULL,
  3656. _cmDspPitchCvtRecv,
  3657. NULL,NULL,
  3658. "Time tagged text file.");
  3659. return &_cmPitchCvtDC;
  3660. }
  3661. //==========================================================================================================================================
  3662. //
  3663. //
  3664. // Create a file which can be read by readBinFile.m
  3665. //
  3666. //
  3667. enum
  3668. {
  3669. kCntBmId,
  3670. kFnBmId,
  3671. kBaseBmId
  3672. };
  3673. cmDspClass_t _cmBinMtxFileDC;
  3674. typedef struct
  3675. {
  3676. cmDspInst_t inst;
  3677. int inPortCnt;
  3678. cmBinMtxFile_t* bmfp;
  3679. cmReal_t * valArray; // valArray[ inPortCnt ]
  3680. } cmDspBinMtxFile_t;
  3681. cmDspInst_t* _cmDspBinMtxFileAlloc(cmDspCtx_t* ctx, cmDspClass_t* classPtr, unsigned storeSymId, unsigned instSymId, unsigned id, unsigned va_cnt, va_list vl )
  3682. {
  3683. cmDspVarArg_t args[] =
  3684. {
  3685. { "cnt", kCntBmId, 0, 0, kIntDsvFl | kReqArgDsvFl, "Input port count"},
  3686. { "fn", kFnBmId, 0, 0, kInDsvFl | kStrzDsvFl | kReqArgDsvFl, "File name"},
  3687. };
  3688. if( va_cnt < 1 )
  3689. {
  3690. cmDspClassErr(ctx,classPtr,kInvalidArgDspRC,"The binary matrix file object must be given a input port count argument.");
  3691. return NULL;
  3692. }
  3693. va_list vl1;
  3694. va_copy(vl1,vl);
  3695. int inPortCnt = va_arg(vl,int);
  3696. unsigned fixArgCnt = sizeof(args)/sizeof(args[0]);
  3697. unsigned argCnt = fixArgCnt + inPortCnt;
  3698. cmDspVarArg_t a[ argCnt+1 ];
  3699. cmDspBinMtxFile_t* p = NULL;
  3700. if( inPortCnt <= 0 )
  3701. {
  3702. cmDspClassErr(ctx,classPtr,kInvalidArgDspRC,"The binary matrix file must be a positive integer.");
  3703. return NULL;
  3704. }
  3705. cmDspArgCopy( a, argCnt, 0, args, fixArgCnt );
  3706. cmDspArgSetupN(ctx, a, argCnt, kBaseBmId, inPortCnt, "in", kBaseBmId, 0, 0, kInDsvFl | kDoubleDsvFl, "input ports");
  3707. cmDspArgSetupNull( a+argCnt );
  3708. if((p = cmDspInstAlloc(cmDspBinMtxFile_t,ctx,classPtr,a,instSymId,id,storeSymId,va_cnt,vl1)) == NULL )
  3709. return NULL;
  3710. p->bmfp = cmBinMtxFileAlloc(ctx->cmProcCtx, NULL, NULL );
  3711. p->inPortCnt = inPortCnt;
  3712. p->valArray = cmMemAllocZ(cmReal_t,inPortCnt);
  3713. return &p->inst;
  3714. }
  3715. cmDspRC_t _cmDspBinMtxFileOpen( cmDspCtx_t* ctx, cmDspInst_t* inst )
  3716. {
  3717. cmDspRC_t rc = kOkDspRC;
  3718. cmDspBinMtxFile_t* p = (cmDspBinMtxFile_t*)inst;
  3719. if( p->bmfp != NULL )
  3720. {
  3721. // finalize the current file
  3722. if( cmBinMtxFileFinal(p->bmfp) != cmOkRC )
  3723. cmDspInstErr(ctx,inst,kFileCloseFailDspRC,"File close failed.");
  3724. // open a new one
  3725. if( cmBinMtxFileInit( p->bmfp, cmDspDefaultStrcz(&p->inst,kFnBmId) ) != cmOkRC)
  3726. rc = cmDspInstErr(ctx,inst,kFileOpenFailDspRC,"File open failed.");
  3727. }
  3728. return rc;
  3729. }
  3730. cmDspRC_t _cmDspBinMtxFileFree(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  3731. {
  3732. cmDspBinMtxFile_t* p = (cmDspBinMtxFile_t*)inst;
  3733. cmBinMtxFileFree(&p->bmfp);
  3734. cmMemFree(p->valArray);
  3735. return kOkDspRC;
  3736. }
  3737. cmDspRC_t _cmDspBinMtxFileReset(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  3738. {
  3739. cmDspApplyAllDefaults(ctx,inst);
  3740. return _cmDspBinMtxFileOpen(ctx,inst);
  3741. }
  3742. cmDspRC_t _cmDspBinMtxFileExec(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  3743. {
  3744. cmDspRC_t rc = kOkDspRC;
  3745. cmDspBinMtxFile_t* p = (cmDspBinMtxFile_t*)inst;
  3746. // write the file
  3747. if( cmBinMtxFileIsValid( p->bmfp ) )
  3748. if( cmBinMtxFileExecR(p->bmfp, p->valArray, p->inPortCnt ) != cmOkRC )
  3749. return cmDspInstErr(ctx,inst,kFileWriteFailDspRC,"File write failure.");
  3750. return rc;
  3751. }
  3752. cmDspRC_t _cmDspBinMtxFileRecv(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  3753. {
  3754. cmDspRC_t rc = kOkDspRC;
  3755. cmDspBinMtxFile_t* p = (cmDspBinMtxFile_t*)inst;
  3756. cmDspSetEvent(ctx,inst,evt);
  3757. // new file name - create new output file
  3758. if( evt->dstVarId == kFnBmId )
  3759. {
  3760. rc = _cmDspBinMtxFileOpen(ctx,inst);
  3761. }
  3762. else
  3763. // new value - store in p->valArray[]
  3764. if( kBaseBmId <= evt->dstVarId && evt->dstVarId < kBaseBmId + p->inPortCnt )
  3765. {
  3766. p->valArray[ evt->dstVarId - kBaseBmId ] = cmDspDouble(inst,evt->dstVarId );
  3767. }
  3768. else
  3769. { assert(0); }
  3770. return rc;
  3771. }
  3772. struct cmDspClass_str* cmBinMtxFileClassCons( cmDspCtx_t* ctx )
  3773. {
  3774. cmDspClassSetup(&_cmBinMtxFileDC,ctx,"BinMtxFile",
  3775. NULL,
  3776. _cmDspBinMtxFileAlloc,
  3777. _cmDspBinMtxFileFree,
  3778. _cmDspBinMtxFileReset,
  3779. _cmDspBinMtxFileExec,
  3780. _cmDspBinMtxFileRecv,
  3781. NULL,NULL,
  3782. "Time tagged text file.");
  3783. return &_cmBinMtxFileDC;
  3784. }
  3785. //==========================================================================================================================================
  3786. enum
  3787. {
  3788. kHopMsSbId,
  3789. kWndFactSbId,
  3790. kInSbId,
  3791. kOutSbId
  3792. };
  3793. cmDspClass_t _cmShiftBufDC;
  3794. typedef struct
  3795. {
  3796. cmDspInst_t inst;
  3797. cmShiftBuf* sbp;
  3798. } cmDspShiftBuf_t;
  3799. void _cmDspShiftBufSetup( cmDspCtx_t* ctx, cmDspShiftBuf_t* p )
  3800. {
  3801. double hopMs = cmDspDouble(&p->inst,kHopMsSbId);
  3802. unsigned hopSmpCnt = lround(cmDspSampleRate(ctx) * hopMs / 1000.0 );
  3803. unsigned wndSmpCnt = cmDspUInt(&p->inst,kWndFactSbId) * hopSmpCnt;
  3804. if( p->sbp == NULL || hopSmpCnt != p->sbp->hopSmpCnt || wndSmpCnt != p->sbp->wndSmpCnt )
  3805. {
  3806. cmShiftBufFree(&p->sbp);
  3807. p->sbp = cmShiftBufAlloc(ctx->cmProcCtx, NULL, cmDspSamplesPerCycle(ctx), wndSmpCnt, hopSmpCnt );
  3808. }
  3809. }
  3810. cmDspInst_t* _cmDspShiftBufAlloc(cmDspCtx_t* ctx, cmDspClass_t* classPtr, unsigned storeSymId, unsigned instSymId, unsigned id, unsigned va_cnt, va_list vl )
  3811. {
  3812. cmDspVarArg_t args[] =
  3813. {
  3814. { "hopMs", kHopMsSbId, 0, 0, kInDsvFl | kDoubleDsvFl | kReqArgDsvFl, "Hop size on milliseconds"},
  3815. { "wndFact", kWndFactSbId, 0, 0, kInDsvFl | kUIntDsvFl | kReqArgDsvFl, "Count of hops contained in each output buffer."},
  3816. { "in", kInSbId, 0, 0, kInDsvFl | kAudioBufDsvFl, "Audio input"},
  3817. { "out", kOutSbId, 0, 0, kOutDsvFl | kAudioBufDsvFl, "Audio output"},
  3818. { NULL, 0, 0, 0, 0 }
  3819. };
  3820. // Note: by setting the column count of the output audio variable to zero
  3821. // we prevent it from being automatically assigned vector memory.
  3822. cmDspShiftBuf_t* p = cmDspInstAlloc(cmDspShiftBuf_t,ctx,classPtr,args,instSymId,id,storeSymId,va_cnt,vl);
  3823. return &p->inst;
  3824. }
  3825. cmDspRC_t _cmDspShiftBufFree(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  3826. {
  3827. cmDspShiftBuf_t* p = (cmDspShiftBuf_t*)inst;
  3828. cmShiftBufFree(&p->sbp);
  3829. return kOkDspRC;
  3830. }
  3831. cmDspRC_t _cmDspShiftBufReset(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  3832. {
  3833. cmDspRC_t rc = kOkDspRC;
  3834. cmDspShiftBuf_t* p = (cmDspShiftBuf_t*)inst;
  3835. cmDspApplyAllDefaults(ctx,inst);
  3836. _cmDspShiftBufSetup(ctx,p);
  3837. return rc;
  3838. }
  3839. cmDspRC_t _cmDspShiftBufRecv(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  3840. {
  3841. cmDspShiftBuf_t* p = (cmDspShiftBuf_t*)inst;
  3842. cmDspSetEvent(ctx,inst,evt);
  3843. switch(evt->dstVarId)
  3844. {
  3845. case kHopMsSbId:
  3846. case kWndFactSbId:
  3847. _cmDspShiftBufSetup( ctx, p );
  3848. break;
  3849. };
  3850. return kOkDspRC;
  3851. }
  3852. cmDspRC_t _cmDspShiftBufExec(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  3853. {
  3854. cmDspShiftBuf_t* p = (cmDspShiftBuf_t*)inst;
  3855. unsigned sn = cmDspAudioBufSmpCount(ctx,inst,kInSbId,0);
  3856. const cmSample_t* sp = cmDspAudioBuf(ctx,inst,kInSbId,0);
  3857. cmDspVar_t* varPtr = cmDspVarIdToPtr(inst,kOutSbId);
  3858. if( cmShiftBufExec(p->sbp, sp, sn ) )
  3859. cmDsvSetSampleMtx( &varPtr->value, p->sbp->outV, p->sbp->outN, 1);
  3860. else
  3861. cmDsvSetSampleMtx( &varPtr->value, NULL, 0, 0);
  3862. return kOkDspRC;
  3863. }
  3864. struct cmDspClass_str* cmShiftBufClassCons( cmDspCtx_t* ctx )
  3865. {
  3866. cmDspClassSetup(&_cmShiftBufDC,ctx,"ShiftBuf",
  3867. NULL,
  3868. _cmDspShiftBufAlloc,
  3869. _cmDspShiftBufFree,
  3870. _cmDspShiftBufReset,
  3871. _cmDspShiftBufExec,
  3872. _cmDspShiftBufRecv,
  3873. NULL,NULL,
  3874. "Time tagged text file.");
  3875. return &_cmShiftBufDC;
  3876. }
  3877. //==========================================================================================================================================
  3878. enum
  3879. {
  3880. kInNsId
  3881. };
  3882. cmDspClass_t _cmNetSendDC;
  3883. typedef struct
  3884. {
  3885. cmDspInst_t inst;
  3886. _cmDspSrcConn_t* srcConnPtr;
  3887. } cmDspNetSend_t;
  3888. cmDspInst_t* _cmDspNetSendAlloc(cmDspCtx_t* ctx, cmDspClass_t* classPtr, unsigned storeSymId, unsigned instSymId, unsigned id, unsigned va_cnt, va_list vl )
  3889. {
  3890. cmDspVarArg_t args[] =
  3891. {
  3892. { "in", kInNsId, 0, 0, kInDsvFl | kTypeDsvMask, "Input port" },
  3893. { NULL, 0, 0, 0, 0 }
  3894. };
  3895. assert( va_cnt == 1 );
  3896. _cmDspSrcConn_t* srcConnPtr = va_arg(vl,_cmDspSrcConn_t*);
  3897. assert( srcConnPtr != NULL );
  3898. cmDspNetSend_t* p = cmDspInstAlloc(cmDspNetSend_t,ctx,classPtr,args,instSymId,id,storeSymId,0,vl);
  3899. p->srcConnPtr = srcConnPtr;
  3900. return &p->inst;
  3901. }
  3902. cmDspRC_t _cmDspNetSendReset(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  3903. {
  3904. return kOkDspRC;
  3905. }
  3906. cmDspRC_t _cmDspNetSendRecv(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_t* evt )
  3907. {
  3908. cmDspNetSend_t* p = (cmDspNetSend_t*)inst;
  3909. return _cmDspSysNetSendEvent(ctx->dspH, p->srcConnPtr->dstNetNodeId, p->srcConnPtr->dstId, evt );
  3910. }
  3911. struct cmDspClass_str* cmNetSendClassCons( cmDspCtx_t* ctx )
  3912. {
  3913. cmDspClassSetup(&_cmNetSendDC,ctx,"NetSend",
  3914. NULL,
  3915. _cmDspNetSendAlloc,
  3916. NULL,
  3917. _cmDspNetSendReset,
  3918. NULL,
  3919. _cmDspNetSendRecv,
  3920. NULL,NULL,
  3921. "Print the value of any event arriving at 'in'.");
  3922. return &_cmNetSendDC;
  3923. }
  3924. //==========================================================================================================================================
  3925. //==========================================================================================================================================
  3926. cmDspClassConsFunc_t _cmDspClassBuiltInArray[] =
  3927. {
  3928. cmPrinterClassCons,
  3929. cmCounterClassCons,
  3930. cmPhasorClassCons,
  3931. cmAudioInClassCons,
  3932. cmAudioOutClassCons,
  3933. cmAudioFileOutClassCons,
  3934. cmSigGenClassCons,
  3935. cmScalarClassCons,
  3936. cmTextClassCons,
  3937. cmMeterClassCons,
  3938. cmLabelClassCons,
  3939. cmButtonClassCons,
  3940. cmReorderClassCons,
  3941. cmFnameClassCons,
  3942. cmMsgListClassCons,
  3943. cmWaveTableClassCons,
  3944. cmSprintfClassCons,
  3945. cmKrClassCons,
  3946. cmAMixClassCons,
  3947. cmASplitClassCons,
  3948. cmAMeterClassCons,
  3949. cmTextFileClassCons,
  3950. cmBinMtxFileClassCons,
  3951. cmArrayClassCons,
  3952. cmPitchCvtClassCons,
  3953. cmShiftBufClassCons,
  3954. cmNetSendClassCons,
  3955. cmDelayClassCons,
  3956. cmPShiftClassCons,
  3957. cmLoopRecdClassCons,
  3958. cmRectifyClassCons,
  3959. cmGateDetectClassCons,
  3960. cmAutoGainClassCons,
  3961. cmEnvFollowClassCons,
  3962. cmXfaderClassCons,
  3963. cmChCfgClassCons,
  3964. cmChordDetectClassCons,
  3965. cmFaderClassCons,
  3966. cmNoteSelectClassCons,
  3967. cmNetNoteSelectClassCons,
  3968. cmCombFiltClassCons,
  3969. cmScalarOpClassCons,
  3970. cmGroupSelClassCons,
  3971. cmAudioNofMClassCons,
  3972. cmRingModClassCons,
  3973. cmMsgDelayClassCons,
  3974. cmLineClassCons,
  3975. cmAdsrClassCons,
  3976. cmCompressorClassCons,
  3977. cmBiQuadEqClassCons,
  3978. cmDistDsClassCons,
  3979. cmDbToLinClassCons,
  3980. cmMtDelayClassCons,
  3981. cmNofMClassCons,
  3982. cm1ofNClassCons,
  3983. cm1UpClassCons,
  3984. cmGateToSymClassCons,
  3985. cmPortToSymClassCons,
  3986. cmRouterClassCons,
  3987. cmPresetClassCons,
  3988. cmBcastSymClassCons,
  3989. cmSegLineClassCons,
  3990. cmTimeLineClassCons,
  3991. cmScoreClassCons,
  3992. cmMidiFilePlayClassCons,
  3993. cmScFolClassCons,
  3994. NULL,
  3995. };
  3996. cmDspClassConsFunc_t cmDspClassGetBuiltIn( unsigned index )
  3997. {
  3998. unsigned n = sizeof(_cmDspClassBuiltInArray)/sizeof(cmDspClass_t*);
  3999. if( index >= n )
  4000. return NULL;
  4001. return _cmDspClassBuiltInArray[index];
  4002. }