2012-11-15 04:01:05 +00:00
|
|
|
#include "cmPrefix.h"
|
|
|
|
#include "cmGlobal.h"
|
|
|
|
#include "cmRpt.h"
|
|
|
|
#include "cmErr.h"
|
|
|
|
#include "cmCtx.h"
|
|
|
|
#include "cmMem.h"
|
|
|
|
#include "cmMallocDebug.h"
|
|
|
|
#include "cmLinkedHeap.h"
|
|
|
|
#include "cmFloatTypes.h"
|
|
|
|
#include "cmComplexTypes.h"
|
|
|
|
#include "cmFileSys.h"
|
|
|
|
#include "cmJson.h"
|
|
|
|
#include "cmSymTbl.h"
|
|
|
|
#include "cmAudioFile.h"
|
|
|
|
#include "cmProcObj.h"
|
|
|
|
#include "cmProcTemplate.h"
|
|
|
|
#include "cmMath.h"
|
|
|
|
#include "cmProc.h"
|
|
|
|
#include "cmVectOps.h"
|
|
|
|
#include "cmMidi.h"
|
|
|
|
#include "cmMidiFile.h"
|
|
|
|
#include "cmTimeLine.h"
|
|
|
|
#include "cmScore.h"
|
|
|
|
#include "cmProc4.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-12-04 01:18:50 +00:00
|
|
|
cmScFol* cmScFolAlloc( cmCtx* c, cmScFol* p, cmReal_t srate, cmScH_t scH, unsigned bufN, unsigned minWndLookAhead, unsigned maxWndCnt, unsigned minVel )
|
2012-11-15 04:01:05 +00:00
|
|
|
{
|
|
|
|
cmScFol* op = cmObjAlloc(cmScFol,c,p);
|
|
|
|
if( srate != 0 )
|
2012-12-04 01:18:50 +00:00
|
|
|
if( cmScFolInit(op,srate,scH,bufN,minWndLookAhead,maxWndCnt,minVel) != cmOkRC )
|
2012-11-15 04:01:05 +00:00
|
|
|
cmScFolFree(&op);
|
|
|
|
return op;
|
|
|
|
}
|
|
|
|
|
|
|
|
cmRC_t cmScFolFree( cmScFol** pp )
|
|
|
|
{
|
|
|
|
cmRC_t rc = cmOkRC;
|
|
|
|
if( pp==NULL || *pp==NULL )
|
|
|
|
return rc;
|
|
|
|
|
|
|
|
cmScFol* p = *pp;
|
|
|
|
if((rc = cmScFolFinal(p)) != cmOkRC )
|
|
|
|
return rc;
|
|
|
|
|
|
|
|
unsigned i;
|
|
|
|
for(i=0; i<p->locN; ++i)
|
|
|
|
cmMemFree(p->loc[i].pitchV);
|
|
|
|
|
|
|
|
cmMemFree(p->loc);
|
2012-11-27 07:08:12 +00:00
|
|
|
cmMemFree(p->bufV);
|
2012-11-15 04:01:05 +00:00
|
|
|
cmObjFree(pp);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
cmRC_t cmScFolFinal( cmScFol* p )
|
2012-11-27 07:08:12 +00:00
|
|
|
{
|
|
|
|
cmMemFree(p->edWndMtx);
|
|
|
|
return cmOkRC;
|
|
|
|
}
|
2012-11-15 04:01:05 +00:00
|
|
|
|
|
|
|
void _cmScFolPrint( cmScFol* p )
|
|
|
|
{
|
|
|
|
int i,j;
|
|
|
|
for(i=0; i<p->locN; ++i)
|
|
|
|
{
|
2012-11-19 06:41:27 +00:00
|
|
|
printf("%2i %5i ",p->loc[i].barNumb,p->loc[i].scIdx);
|
2012-11-15 04:01:05 +00:00
|
|
|
for(j=0; j<p->loc[i].pitchCnt; ++j)
|
|
|
|
printf("%s ",cmMidiToSciPitch(p->loc[i].pitchV[j],NULL,0));
|
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-12-04 01:18:50 +00:00
|
|
|
unsigned* _cmScFolAllocEditDistMtx(unsigned maxN)
|
|
|
|
{
|
|
|
|
maxN += 1;
|
|
|
|
|
|
|
|
unsigned* m = cmMemAllocZ(unsigned,maxN*maxN);
|
|
|
|
unsigned* p = m;
|
|
|
|
unsigned i;
|
|
|
|
|
|
|
|
// initialize the comparison matrix with the default costs in the
|
|
|
|
// first row and column
|
|
|
|
// (Note that this matrix is not oriented in column major order like most 'cm' matrices.)
|
|
|
|
for(i=0; i<maxN; ++i)
|
|
|
|
{
|
|
|
|
p[i] = i; // 0th row
|
|
|
|
p[ i * maxN ] = i; // 0th col
|
|
|
|
}
|
|
|
|
|
|
|
|
return m;
|
|
|
|
}
|
|
|
|
|
|
|
|
cmRC_t cmScFolInit( cmScFol* p, cmReal_t srate, cmScH_t scH, unsigned bufN, unsigned minWndLookAhead, unsigned maxWndCnt, unsigned minVel )
|
2012-11-15 04:01:05 +00:00
|
|
|
{
|
|
|
|
cmRC_t rc;
|
|
|
|
if((rc = cmScFolFinal(p)) != cmOkRC )
|
|
|
|
return rc;
|
|
|
|
|
2012-12-04 01:18:50 +00:00
|
|
|
if( bufN > maxWndCnt )
|
|
|
|
return cmCtxRtCondition( &p->obj, cmInvalidArgRC, "The score follower buffer count (%i) must be less than the max. window length (%i).",bufN,maxWndCnt );
|
|
|
|
|
|
|
|
if( minWndLookAhead > maxWndCnt )
|
|
|
|
return cmCtxRtCondition( &p->obj, cmInvalidArgRC, "The score follower look-ahead count (%i) must be less than the max. window length (%i).",minWndLookAhead,maxWndCnt);
|
|
|
|
|
2012-11-15 04:01:05 +00:00
|
|
|
p->srate = srate;
|
|
|
|
p->scH = scH;
|
2012-11-19 06:41:27 +00:00
|
|
|
p->bufN = bufN;
|
|
|
|
p->bufV = cmMemResizeZ(cmScFolBufEle_t,p->bufV,bufN);
|
2012-11-15 04:01:05 +00:00
|
|
|
p->locN = cmScoreEvtCount(scH);
|
|
|
|
p->loc = cmMemResizeZ(cmScFolLoc_t,p->loc,p->locN);
|
|
|
|
p->sbi = cmInvalidIdx;
|
|
|
|
p->sei = cmInvalidIdx;
|
2012-12-04 01:18:50 +00:00
|
|
|
p->msln = minWndLookAhead;
|
|
|
|
p->mswn = maxWndCnt;
|
|
|
|
p->forwardCnt = 2;
|
|
|
|
p->maxDist = 4;
|
|
|
|
p->edWndMtx = _cmScFolAllocEditDistMtx(p->bufN);
|
|
|
|
p->minVel = minVel;
|
|
|
|
p->printFl = true;
|
|
|
|
p->noBackFl = true;
|
2012-11-27 22:20:54 +00:00
|
|
|
p->missCnt = 0;
|
|
|
|
p->matchCnt = 0;
|
|
|
|
p->eventIdx = 0;
|
2012-12-04 01:18:50 +00:00
|
|
|
p->skipCnt = 0;
|
|
|
|
p->ret_idx = cmInvalidIdx;
|
2012-11-15 04:01:05 +00:00
|
|
|
|
|
|
|
int i,n;
|
2012-11-19 06:41:27 +00:00
|
|
|
double maxDSecs = 0; // max time between score entries to be considered simultaneous
|
2012-11-15 04:01:05 +00:00
|
|
|
cmScoreEvt_t* e0p = NULL;
|
|
|
|
int j0 = 0;
|
|
|
|
|
|
|
|
// for each score event
|
|
|
|
for(i=0,n=0; i<p->locN; ++i)
|
|
|
|
{
|
|
|
|
cmScoreEvt_t* ep = cmScoreEvt(scH,i);
|
|
|
|
|
|
|
|
// if the event is not a note then ignore it
|
|
|
|
if( ep->type == kNonEvtScId )
|
|
|
|
{
|
|
|
|
assert( j0+n < p->locN );
|
|
|
|
|
2012-11-19 06:41:27 +00:00
|
|
|
p->loc[j0+n].scIdx = i;
|
2012-11-15 04:01:05 +00:00
|
|
|
p->loc[j0+n].barNumb = ep->barNumb;
|
|
|
|
|
|
|
|
// if the first event has not yet been selected
|
|
|
|
if( e0p == NULL )
|
|
|
|
{
|
|
|
|
e0p = ep;
|
|
|
|
n = 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// time can never reverse
|
|
|
|
assert( ep->secs >= e0p->secs );
|
|
|
|
|
|
|
|
// calc seconds between first event and current event
|
|
|
|
double dsecs = ep->secs - e0p->secs;
|
|
|
|
|
|
|
|
// if the first event and current event are simultaneous...
|
|
|
|
if( dsecs <= maxDSecs )
|
|
|
|
++n; // ... incr. the count of simultaneous events
|
|
|
|
else
|
|
|
|
{
|
|
|
|
int k;
|
|
|
|
// ... a complete set of simultaneous events have been located
|
|
|
|
// duplicate all the events at each of their respective time locations
|
|
|
|
for(k=0; k<n; ++k)
|
|
|
|
{
|
|
|
|
int m;
|
|
|
|
assert( j0+k < p->locN );
|
|
|
|
|
|
|
|
p->loc[j0+k].pitchCnt = n;
|
|
|
|
p->loc[j0+k].pitchV = cmMemAllocZ(unsigned,n);
|
|
|
|
|
|
|
|
for(m=0; m<n; ++m)
|
|
|
|
{
|
2012-11-19 06:41:27 +00:00
|
|
|
cmScoreEvt_t* tp = cmScoreEvt(scH,p->loc[j0+m].scIdx);
|
2012-11-15 04:01:05 +00:00
|
|
|
assert(tp!=NULL);
|
|
|
|
p->loc[j0+k].pitchV[m] = tp->pitch;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
e0p = ep;
|
|
|
|
j0 += n;
|
|
|
|
n = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
p->locN = j0;
|
|
|
|
|
|
|
|
//_cmScFolPrint(p);
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
cmRC_t cmScFolReset( cmScFol* p, unsigned scoreIndex )
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2012-11-19 06:41:27 +00:00
|
|
|
// empty the event buffer
|
|
|
|
memset(p->bufV,0,sizeof(cmScFolBufEle_t)*p->bufN);
|
2012-11-15 04:01:05 +00:00
|
|
|
|
|
|
|
// don't allow the score index to be prior to the first note
|
2012-11-19 06:41:27 +00:00
|
|
|
if( scoreIndex < p->loc[0].scIdx )
|
|
|
|
scoreIndex = p->loc[0].scIdx;
|
|
|
|
|
2012-12-04 01:18:50 +00:00
|
|
|
p->sei = cmInvalidIdx;
|
|
|
|
p->sbi = cmInvalidIdx;
|
|
|
|
p->missCnt = 0;
|
|
|
|
p->matchCnt = 0;
|
|
|
|
p->eventIdx = 0;
|
|
|
|
p->skipCnt = 0;
|
|
|
|
p->ret_idx = cmInvalidIdx;
|
2012-11-15 04:01:05 +00:00
|
|
|
|
|
|
|
// locate the score element in svV[] that is closest to,
|
|
|
|
// and possibly after, scoreIndex.
|
|
|
|
for(i=0; i<p->locN-1; ++i)
|
2012-11-19 06:41:27 +00:00
|
|
|
if( p->loc[i].scIdx <= scoreIndex && scoreIndex < p->loc[i+1].scIdx )
|
|
|
|
{
|
2012-11-15 04:01:05 +00:00
|
|
|
p->sbi = i;
|
|
|
|
break;
|
2012-11-19 06:41:27 +00:00
|
|
|
}
|
2012-11-15 04:01:05 +00:00
|
|
|
|
2012-11-19 06:41:27 +00:00
|
|
|
// locate the score element at the end of the look-ahead region
|
|
|
|
for(; i<p->locN-1; ++i)
|
|
|
|
if( p->loc[i].scIdx <= scoreIndex + p->msln && scoreIndex + p->msln < p->loc[i+1].scIdx )
|
|
|
|
{
|
2012-11-15 04:01:05 +00:00
|
|
|
p->sei = i;
|
|
|
|
break;
|
2012-11-19 06:41:27 +00:00
|
|
|
}
|
|
|
|
|
2012-11-15 04:01:05 +00:00
|
|
|
|
|
|
|
return cmOkRC;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool _cmScFolIsMatch( const cmScFolLoc_t* loc, unsigned pitch )
|
|
|
|
{
|
|
|
|
unsigned i;
|
|
|
|
for(i=0; i<loc->pitchCnt; ++i)
|
|
|
|
if( loc->pitchV[i] == pitch )
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-12-04 01:18:50 +00:00
|
|
|
int _cmScFolMatchCost( const cmScFolLoc_t* loc, unsigned li, const cmScFolBufEle_t* pitch, unsigned pi )
|
2012-11-27 22:20:54 +00:00
|
|
|
{
|
2012-12-04 01:18:50 +00:00
|
|
|
if( _cmScFolIsMatch(loc+li,pitch[pi].val) )
|
2012-11-27 22:20:54 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
if( li>0 && pi>0 )
|
2012-12-04 01:18:50 +00:00
|
|
|
if( _cmScFolIsMatch(loc+li-1,pitch[pi].val) && _cmScFolIsMatch(loc+li,pitch[pi-1].val) )
|
2012-11-27 22:20:54 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2012-12-04 01:18:50 +00:00
|
|
|
int _cmScFolDist(unsigned mtxMaxN, unsigned* m, const cmScFolBufEle_t* s1, const cmScFolLoc_t* s0, int n )
|
2012-11-15 04:01:05 +00:00
|
|
|
{
|
|
|
|
mtxMaxN += 1;
|
|
|
|
|
|
|
|
assert( n < mtxMaxN );
|
|
|
|
|
|
|
|
int v = 0;
|
|
|
|
unsigned i;
|
|
|
|
// Note that m[maxN,maxN] is not oriented in column major order like most 'cm' matrices.
|
|
|
|
|
|
|
|
for(i=1; i<n+1; ++i)
|
|
|
|
{
|
|
|
|
unsigned ii = i * mtxMaxN; // current row
|
|
|
|
unsigned i_1 = ii - mtxMaxN; // previous row
|
|
|
|
unsigned j;
|
|
|
|
for( j=1; j<n+1; ++j)
|
|
|
|
{
|
|
|
|
//int cost = s0[i-1] == s1[j-1] ? 0 : 1;
|
2012-11-27 22:20:54 +00:00
|
|
|
//int cost = _cmScFolIsMatch(s0 + i-1, s1[j-1]) ? 0 : 1;
|
|
|
|
int cost = _cmScFolMatchCost(s0,i-1,s1,j-1);
|
2012-11-15 04:01:05 +00:00
|
|
|
|
|
|
|
//m[i][j] = min( m[i-1][j] + 1, min( m[i][j-1] + 1, m[i-1][j-1] + cost ) );
|
|
|
|
|
|
|
|
m[ ii + j ] = v = cmMin( m[ i_1 + j] + 1, cmMin( m[ ii + j - 1] + 1, m[ i_1 + j - 1 ] + cost ) );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return v;
|
|
|
|
}
|
|
|
|
|
2012-12-04 01:18:50 +00:00
|
|
|
void _cmScFolRpt0( cmScFol* p, unsigned locIdx, unsigned locN, const cmScFolBufEle_t* b, unsigned bn, unsigned min_idx )
|
2012-11-15 04:01:05 +00:00
|
|
|
{
|
2012-11-27 22:20:54 +00:00
|
|
|
unsigned i;
|
|
|
|
int n;
|
2012-11-15 04:01:05 +00:00
|
|
|
|
2012-11-27 22:20:54 +00:00
|
|
|
printf("--------------- event:%i ------------- \n",p->eventIdx);
|
2012-11-15 04:01:05 +00:00
|
|
|
|
2012-11-27 22:20:54 +00:00
|
|
|
printf("loc: ");
|
|
|
|
for(i=0; i<locN; ++i)
|
|
|
|
printf("%4i ",i+locIdx);
|
2012-11-15 04:01:05 +00:00
|
|
|
printf("\n");
|
|
|
|
|
2012-11-27 22:20:54 +00:00
|
|
|
for(n=0,i=0; i<locN; ++i)
|
|
|
|
if( p->loc[locIdx+i].pitchCnt > n )
|
|
|
|
n = p->loc[locIdx+i].pitchCnt;
|
2012-11-15 04:01:05 +00:00
|
|
|
|
2012-11-27 22:20:54 +00:00
|
|
|
--n;
|
|
|
|
for(; n>=0; --n)
|
|
|
|
{
|
|
|
|
printf("sc%1i: ",n);
|
|
|
|
for(i=0; i<locN; ++i)
|
2012-11-15 04:01:05 +00:00
|
|
|
{
|
2012-11-27 22:20:54 +00:00
|
|
|
if( n < p->loc[locIdx+i].pitchCnt )
|
|
|
|
printf("%4s ",cmMidiToSciPitch(p->loc[locIdx+i].pitchV[n],NULL,0));
|
|
|
|
else
|
|
|
|
printf(" ");
|
2012-11-15 04:01:05 +00:00
|
|
|
}
|
2012-11-27 22:20:54 +00:00
|
|
|
printf("\n");
|
|
|
|
}
|
2012-11-15 04:01:05 +00:00
|
|
|
|
2012-11-27 22:20:54 +00:00
|
|
|
printf("perf:");
|
|
|
|
for(i=0; i<min_idx; ++i)
|
|
|
|
printf(" ");
|
2012-11-15 04:01:05 +00:00
|
|
|
|
2012-11-27 22:20:54 +00:00
|
|
|
for(i=0; i<bn; ++i)
|
2012-12-04 01:18:50 +00:00
|
|
|
printf("%4s ",cmMidiToSciPitch(b[i].val,NULL,0));
|
2012-11-15 04:01:05 +00:00
|
|
|
|
2012-11-27 22:20:54 +00:00
|
|
|
printf("\n");
|
|
|
|
}
|
2012-11-15 04:01:05 +00:00
|
|
|
|
2012-11-27 22:20:54 +00:00
|
|
|
void _cmScFolRpt1( cmScFol*p, unsigned minDist, unsigned ret_idx, unsigned d1, unsigned missCnt, unsigned matchCnt )
|
|
|
|
{
|
2012-12-04 01:18:50 +00:00
|
|
|
printf("dist:%i miss:%i match:%i skip:%i vel:%i ",minDist,missCnt,matchCnt,p->skipCnt,d1);
|
|
|
|
if( ret_idx != cmInvalidIdx )
|
2012-11-27 22:20:54 +00:00
|
|
|
printf("ret_idx:%i ",ret_idx);
|
|
|
|
printf("\n");
|
2012-11-15 04:01:05 +00:00
|
|
|
}
|
2012-11-19 06:41:27 +00:00
|
|
|
|
|
|
|
unsigned cmScFolExec( cmScFol* p, unsigned smpIdx, unsigned status, cmMidiByte_t d0, cmMidiByte_t d1 )
|
|
|
|
{
|
|
|
|
|
|
|
|
unsigned ret_idx = cmInvalidIdx;
|
2012-12-04 01:18:50 +00:00
|
|
|
//unsigned ebuf[ p->bufN ];
|
2012-11-19 06:41:27 +00:00
|
|
|
|
2012-11-27 22:20:54 +00:00
|
|
|
if( status != kNoteOnMdId )
|
|
|
|
return ret_idx;
|
|
|
|
|
|
|
|
++p->eventIdx;
|
|
|
|
|
|
|
|
// reject notes with very low velocity
|
|
|
|
if( d1 < p->minVel )
|
2012-12-04 01:18:50 +00:00
|
|
|
{
|
|
|
|
++p->skipCnt;
|
2012-11-19 06:41:27 +00:00
|
|
|
return ret_idx;
|
2012-12-04 01:18:50 +00:00
|
|
|
}
|
2012-11-19 06:41:27 +00:00
|
|
|
|
|
|
|
// left shift bufV[] to make the right-most element available - then copy in the new element
|
|
|
|
memmove(p->bufV, p->bufV+1, sizeof(cmScFolBufEle_t)*(p->bufN-1));
|
|
|
|
p->bufV[ p->bufN-1 ].smpIdx = smpIdx;
|
|
|
|
p->bufV[ p->bufN-1 ].val = d0;
|
|
|
|
p->bufV[ p->bufN-1 ].validFl= true;
|
|
|
|
|
|
|
|
// fill in ebuf[] with the valid values in bufV[]
|
2012-12-04 01:18:50 +00:00
|
|
|
int en = cmMin(p->eventIdx,p->bufN);
|
|
|
|
int i = p->eventIdx>=p->bufN ? 0 : p->bufN-p->eventIdx-1;
|
|
|
|
|
|
|
|
/*
|
|
|
|
int i = p->bufN-1;
|
2012-11-19 06:41:27 +00:00
|
|
|
int en = 0;
|
|
|
|
for(; i>=0; --i,++en)
|
|
|
|
{
|
|
|
|
if( p->bufV[i].validFl)
|
|
|
|
ebuf[i] = p->bufV[i].val;
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
++i; // increment i to the first valid element in ebuf[].
|
2012-12-04 01:18:50 +00:00
|
|
|
*/
|
|
|
|
|
2012-11-19 06:41:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
// en is the count of valid elements in ebuf[].
|
|
|
|
// ebuf[p->boi] is the first valid element
|
|
|
|
|
|
|
|
int j = 0;
|
|
|
|
int minDist = INT_MAX;
|
|
|
|
int minIdx = cmInvalidIdx;
|
|
|
|
int dist;
|
|
|
|
|
|
|
|
// the score wnd must always be as long as the buffer n
|
|
|
|
// at the end of the score this may not be the case
|
|
|
|
// (once sei hits locN - at this point we must begin
|
|
|
|
// shrinking ewnd[] to contain only the last p->sei-p->sbi+1 elements)
|
|
|
|
assert( p->sei-p->sbi+1 >= en );
|
|
|
|
|
2012-11-27 22:20:54 +00:00
|
|
|
for(j=0; p->sbi+en+j-1 <= p->sei; ++j)
|
|
|
|
{
|
|
|
|
// use <= minDist to choose the latest window with the lowest match
|
2012-12-04 01:18:50 +00:00
|
|
|
if((dist = _cmScFolDist(p->bufN, p->edWndMtx, p->bufV+i, p->loc + p->sbi+j, en )) < minDist )
|
2012-11-19 06:41:27 +00:00
|
|
|
{
|
2012-12-04 01:18:50 +00:00
|
|
|
// only make an eql match if the posn is greater than the last location
|
|
|
|
if( dist==minDist && p->ret_idx != cmInvalidId && p->ret_idx >= p->sbi+minIdx+en-1 )
|
|
|
|
continue;
|
|
|
|
|
2012-11-19 06:41:27 +00:00
|
|
|
minDist = dist;
|
|
|
|
minIdx = j;
|
|
|
|
}
|
2012-11-27 22:20:54 +00:00
|
|
|
}
|
2012-11-19 06:41:27 +00:00
|
|
|
|
|
|
|
// The best fit is on the score window: p->loc[sbi+minIdx : sbi+minIdx+en-1 ]
|
|
|
|
|
2012-11-27 22:20:54 +00:00
|
|
|
if( p->printFl )
|
2012-12-04 01:18:50 +00:00
|
|
|
_cmScFolRpt0( p, p->sbi, p->sei-p->sbi+1, p->bufV+i, en, minIdx );
|
2012-11-27 22:20:54 +00:00
|
|
|
|
|
|
|
// save current missCnt for later printing
|
|
|
|
unsigned missCnt = p->missCnt;
|
|
|
|
|
2012-11-19 06:41:27 +00:00
|
|
|
// if a perfect match occurred
|
|
|
|
if( minDist == 0 )
|
|
|
|
{
|
2012-12-04 01:18:50 +00:00
|
|
|
ret_idx = p->sbi + minIdx + en - 1;
|
|
|
|
p->missCnt = 0;
|
|
|
|
|
2012-11-19 06:41:27 +00:00
|
|
|
// we had a perfect match - shrink the window to it's minumum size
|
|
|
|
p->sbi += (en==p->bufN) ? minIdx + 1 : 0; // move wnd begin forward to just past first match
|
2012-12-04 01:18:50 +00:00
|
|
|
p->sei = p->sbi + minIdx + en + p->msln; // move wnd end forward to lead by the min look-ahead
|
2012-11-27 22:20:54 +00:00
|
|
|
|
|
|
|
|
2012-11-19 06:41:27 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-12-04 01:18:50 +00:00
|
|
|
if( minDist > p->maxDist )
|
|
|
|
ret_idx = cmInvalidIdx;
|
|
|
|
else
|
2012-11-19 06:41:27 +00:00
|
|
|
// if the last event matched - then return the match location as the current score location
|
2012-12-04 01:18:50 +00:00
|
|
|
if( _cmScFolIsMatch(p->loc+(p->sbi+minIdx+en-1),p->bufV[p->bufN-1].val) )
|
2012-11-27 22:20:54 +00:00
|
|
|
{
|
|
|
|
ret_idx = p->sbi + minIdx + en - 1;
|
|
|
|
p->missCnt = 0;
|
|
|
|
|
2012-12-04 01:18:50 +00:00
|
|
|
// this is probably a pretty good match reduce the part of the window prior to
|
|
|
|
// the first match (bring the end of the window almost up to the end of the
|
|
|
|
// buffers sync position)
|
2012-11-27 22:20:54 +00:00
|
|
|
if( en >= p->bufN-1 && (en+2) <= ret_idx )
|
|
|
|
p->sbi = ret_idx - (en+2);
|
2012-12-04 01:18:50 +00:00
|
|
|
|
2012-11-27 22:20:54 +00:00
|
|
|
}
|
2012-12-04 01:18:50 +00:00
|
|
|
else // the last event does not match based on the optimal edit-distance alignment
|
2012-11-27 22:20:54 +00:00
|
|
|
{
|
|
|
|
// Look backward from the closest match location for a match to the current pitch.
|
|
|
|
// The backward search scope is limited by the current value of 'missCnt'.
|
|
|
|
|
|
|
|
j = p->sbi+minIdx+en-2;
|
|
|
|
for(i=1; i+1 <= p->bufN && j>=p->sbi && i<=p->missCnt; ++i,--j)
|
|
|
|
{
|
|
|
|
// if this look-back location already matched then stop the backward search
|
2012-12-04 01:18:50 +00:00
|
|
|
if(_cmScFolIsMatch(p->loc+j,p->bufV[p->bufN-1-i].val))
|
2012-11-27 22:20:54 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
// does this look-back location match the current pitch
|
2012-12-04 01:18:50 +00:00
|
|
|
if(_cmScFolIsMatch(p->loc+j,p->bufV[p->bufN-1].val))
|
2012-11-27 22:20:54 +00:00
|
|
|
{
|
|
|
|
ret_idx = j;
|
|
|
|
p->missCnt = i; // set missCnt to the cnt of steps backward necessary for a match
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the backward search did not find a match - look forward
|
|
|
|
if( ret_idx == cmInvalidIdx )
|
|
|
|
{
|
|
|
|
j = p->sbi+minIdx+en;
|
2012-12-04 01:18:50 +00:00
|
|
|
for(i=0; j<=p->sei && i<p->forwardCnt; ++i,++j)
|
|
|
|
if( _cmScFolIsMatch(p->loc+j,p->bufV[p->bufN-1].val) )
|
2012-11-27 22:20:54 +00:00
|
|
|
{
|
|
|
|
ret_idx = j;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
p->missCnt = ret_idx == cmInvalidIdx ? p->missCnt + 1 : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2012-11-19 06:41:27 +00:00
|
|
|
|
2012-12-04 01:18:50 +00:00
|
|
|
// Adjust the end window position (sei) based on the match location
|
|
|
|
if( ret_idx == cmInvalidIdx )
|
|
|
|
{
|
|
|
|
// even though we didn't match move the end of the score window forward
|
|
|
|
// this will enlarge the score window by one
|
|
|
|
p->sei += 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
assert( p->sei>=ret_idx);
|
|
|
|
|
|
|
|
// force sei to lead by min look-ahead
|
|
|
|
if( p->sei - ret_idx < p->msln )
|
|
|
|
p->sei = ret_idx + p->msln;
|
|
|
|
|
|
|
|
}
|
2012-11-19 06:41:27 +00:00
|
|
|
|
|
|
|
assert( p->sei > p->sbi );
|
|
|
|
|
2012-12-04 01:18:50 +00:00
|
|
|
// Adjust the begin window position
|
|
|
|
if( p->noBackFl && ret_idx != cmInvalidIdx && en>=p->bufN && p->sbi > p->bufN )
|
|
|
|
p->sbi = ret_idx - p->bufN;
|
|
|
|
|
2012-11-19 06:41:27 +00:00
|
|
|
// if the score window length surpasses the max score window size
|
|
|
|
// move the beginning index forward
|
|
|
|
if( p->sei - p->sbi + 1 > p->mswn && p->sei > p->mswn )
|
|
|
|
p->sbi = p->sei - p->mswn + 1;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-11-27 22:20:54 +00:00
|
|
|
if( p->printFl )
|
|
|
|
_cmScFolRpt1(p, minDist, ret_idx, d1, missCnt, p->matchCnt );
|
|
|
|
|
2012-12-04 01:18:50 +00:00
|
|
|
// don't allow the returned location to repeat or go backwards
|
|
|
|
if( p->noBackFl && p->ret_idx != cmInvalidIdx && ret_idx <= p->ret_idx )
|
|
|
|
ret_idx = cmInvalidIdx;
|
|
|
|
|
|
|
|
|
|
|
|
// track the number of consecutive matches
|
2012-11-27 22:20:54 +00:00
|
|
|
if( ret_idx == cmInvalidIdx )
|
|
|
|
p->matchCnt = 0;
|
|
|
|
else
|
2012-12-04 01:18:50 +00:00
|
|
|
{
|
2012-11-27 22:20:54 +00:00
|
|
|
++p->matchCnt;
|
|
|
|
|
2012-12-04 01:18:50 +00:00
|
|
|
p->ret_idx = ret_idx;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Force the window to remain valid when it is at the end of the score
|
|
|
|
// - sbi and sei must be inside 0:locN
|
|
|
|
// - sei-sbi + 1 must be >= en
|
|
|
|
if( p->sei >= p->locN )
|
|
|
|
{
|
|
|
|
p->sei = p->locN - 1;
|
|
|
|
p->sbi = p->sei - p->bufN + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-11-27 22:20:54 +00:00
|
|
|
|
2012-11-19 06:41:27 +00:00
|
|
|
return ret_idx;
|
|
|
|
}
|