123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161 |
- #include "cmPrefix.h"
- #include "cmGlobal.h"
- #include "cmFloatTypes.h"
- #include "cmRpt.h"
- #include "cmErr.h"
- #include "cmCtx.h"
- #include "cmMem.h"
- #include "cmMallocDebug.h"
- #include "cmLinkedHeap.h"
- #include "cmText.h"
- #include "cmFileSys.h"
- #include "cmSymTbl.h"
- #include "cmJson.h"
- #include "cmPrefs.h"
- #include "cmDspValue.h"
- #include "cmMsgProtocol.h"
- #include "cmThread.h"
- #include "cmUdpPort.h"
- #include "cmUdpNet.h"
- #include "cmAudioSys.h"
- #include "cmProcObj.h"
- #include "cmDspCtx.h"
- #include "cmDspClass.h"
- #include "cmDspSys.h"
- #include "cmDspPgm.h"
-
-
- #include "cmAudioFile.h"
- #include "cmProcObj.h"
- #include "cmProc.h"
- #include "cmProc3.h"
-
- #include "cmVectOpsTemplateMain.h"
- #include "cmVectOps.h"
-
- typedef struct
- {
- const cmChar_t* tlFn;
- const cmChar_t* audPath;
- const cmChar_t* scFn;
-
- } krRsrc_t;
-
- cmDspRC_t krLoadRsrc(cmDspSysH_t h, cmErr_t* err, krRsrc_t* r)
- {
- cmDspRC_t rc;
- if((rc = cmDspSysLastRC(h)) != kOkDspRC )
- return rc;
-
- cmDspRsrcString(h,&r->tlFn, "timeLineFn", NULL);
- cmDspRsrcString(h,&r->audPath,"tlAudioFilePath", NULL);
- cmDspRsrcString(h,&r->scFn, "scoreFn", NULL);
-
- if((rc = cmDspSysLastRC(h)) != kOkDspRC )
- cmErrMsg(err,rc,"A KR DSP resource load failed.");
-
- return rc;
- }
-
- cmDspRC_t _cmDspSysPgm_TimeLine(cmDspSysH_t h, void** userPtrPtr )
- {
- cmDspRC_t rc = kOkDspRC;
- cmCtx_t* cmCtx = cmDspSysPgmCtx(h);
- cmErr_t err;
- krRsrc_t r;
- unsigned wtLoopCnt = 1; // 1=play once (-1=loop forever)
- unsigned wtInitMode = 0; // initial wt mode is 'silence'
- unsigned wtSmpCnt = floor(cmDspSysSampleRate(h)); // wt length == srate
-
- memset(&r,0,sizeof(r));
- cmErrSetup(&err,&cmCtx->rpt,"Kr Timeline");
-
- if( krLoadRsrc(h,&err,&r) != kOkDspRC )
- return rc;
-
- cmDspInst_t* tlp = cmDspSysAllocInst(h,"TimeLine", "tl", 2, r.tlFn, r.audPath );
- cmDspInst_t* scp = cmDspSysAllocInst(h,"Score", "sc", 1, r.scFn );
- cmDspInst_t* php = cmDspSysAllocInst(h,"Phasor", NULL, 1, cmDspSysSampleRate(h) );
- cmDspInst_t* wtp = cmDspSysAllocInst(h,"WaveTable", NULL, 4, wtSmpCnt, wtInitMode, NULL, wtLoopCnt );
- cmDspInst_t* pts = cmDspSysAllocInst(h,"PortToSym", NULL, 2, "on", "off" );
- cmDspInst_t* mfp = cmDspSysAllocInst(h,"MidiFilePlay",NULL, 0 );
- cmDspInst_t* sfp = cmDspSysAllocInst(h,"ScFol", NULL, 1, r.scFn );
- cmDspInst_t* ao0p = cmDspSysAllocInst(h,"AudioOut", NULL, 1, 0 );
- cmDspInst_t* ao1p = cmDspSysAllocInst(h,"AudioOut", NULL, 1, 1 );
-
- cmDspSysNewPage(h,"Controls");
- cmDspInst_t* onb = cmDspSysAllocInst(h,"Button", "start", 2, kButtonDuiId, 1.0 );
- cmDspInst_t* offb = cmDspSysAllocInst(h,"Button", "stop", 2, kButtonDuiId, 1.0 );
- cmDspInst_t* prtb = cmDspSysAllocInst(h,"Button", "print", 2, kButtonDuiId, 1.0 );
- cmDspInst_t* qtb = cmDspSysAllocInst(h,"Button", "quiet", 2, kButtonDuiId, 1.0 );
- cmDspInst_t* prp = cmDspSysAllocInst(h,"Printer", NULL, 1, ">" );
- //cmDspInst_t* prd = cmDspSysAllocInst(h,"Printer", NULL, 1, "DYN:" );
- //cmDspInst_t* pre = cmDspSysAllocInst(h,"Printer", NULL, 1, "EVEN:" );
-
- if((rc = cmDspSysLastRC(h)) != kOkDspRC )
- return rc;
-
- // phasor->wt->aout
- cmDspSysConnectAudio(h, php, "out", wtp, "phs" ); // phs -> wt
- cmDspSysConnectAudio(h, wtp, "out", ao0p, "in" ); // wt -> aout0
- cmDspSysConnectAudio(h, wtp, "out", ao1p, "in" ); // wt -> aout1
-
- cmDspSysInstallCb( h, wtp, "fidx",tlp, "curs", NULL);
-
- // start connections
- cmDspSysInstallCb(h, onb, "sym", tlp, "reset", NULL );
- cmDspSysInstallCb(h, onb, "sym", scp, "send", NULL );
- cmDspSysInstallCb(h, onb, "sym", mfp, "sel", NULL );
- cmDspSysInstallCb(h, onb, "sym", pts, "on", NULL );
- cmDspSysInstallCb(h, pts, "on", wtp, "cmd", NULL );
-
- // stop connections
- cmDspSysInstallCb(h, wtp, "done",offb,"in", NULL ); // 'done' from WT simulates pressing Stop btn.
- cmDspSysInstallCb(h, tlp, "mfn", pts, "off", NULL ); // Prevents WT start on new audio file from TL.
- cmDspSysInstallCb(h, offb, "sym", mfp, "sel", NULL );
- cmDspSysInstallCb(h, offb, "sym", pts, "off", NULL );
- cmDspSysInstallCb(h, pts, "off", wtp, "cmd", NULL );
-
- // time-line to wave-table selection
- cmDspSysInstallCb(h, tlp, "absi", wtp, "beg", NULL );
- cmDspSysInstallCb(h, tlp, "aesi", wtp, "end", NULL );
- cmDspSysInstallCb(h, tlp, "afn", wtp, "fn", NULL );
-
- // time-line to MIDI file player selection
- cmDspSysInstallCb(h, tlp, "mbsi", mfp, "bsi", NULL );
- cmDspSysInstallCb(h, tlp, "mesi", mfp, "esi", NULL );
- cmDspSysInstallCb(h, tlp, "mfn", mfp, "fn", NULL );
-
- // score to score follower - to set initial search location
- cmDspSysInstallCb(h, scp, "sel", sfp, "index", NULL );
-
-
- // MIDI file player to score-follower and score - the order of connections is the same
- // as the msg transmision order from MFP
- cmDspSysInstallCb(h, mfp, "smpidx", scp, "smpidx", NULL );
- cmDspSysInstallCb(h, mfp, "d1", scp, "d1", NULL );
- cmDspSysInstallCb(h, mfp, "d1", sfp, "d1", NULL );
- cmDspSysInstallCb(h, mfp, "d0", scp, "d0", NULL );
- cmDspSysInstallCb(h, mfp, "d0", sfp, "d0", NULL );
- cmDspSysInstallCb(h, mfp, "status", scp, "status", NULL );
- cmDspSysInstallCb(h, mfp, "status", sfp, "status", NULL );
-
-
- // score follower to score
- cmDspSysInstallCb(h, sfp, "out", scp, "loc", NULL );
-
-
- // Printer connections
- cmDspSysInstallCb(h, tlp, "afn", prp, "in", NULL );
- cmDspSysInstallCb(h, tlp, "mfn", prp, "in", NULL );
- cmDspSysInstallCb(h, tlp, "sel", prp, "in", NULL );
- cmDspSysInstallCb(h, sfp, "out", prp, "in", NULL );
-
- //cmDspSysInstallCb(h, scp, "even", pre, "in", NULL );
- //cmDspSysInstallCb(h, scp, "dyn", prd, "in", NULL );
-
- cmDspSysInstallCb(h, prtb, "sym", sfp, "cmd", NULL );
- cmDspSysInstallCb(h, qtb, "sym", sfp, "cmd", NULL );
-
- return rc;
- }
|