mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-15 17:25:06 +00:00
run all the 60 macros
one more step and then we have FM macros
This commit is contained in:
parent
a45c697004
commit
ccc2467d7b
2 changed files with 248 additions and 124 deletions
|
@ -1,134 +1,58 @@
|
||||||
#include "macroInt.h"
|
#include "macroInt.h"
|
||||||
|
#include "instrument.h"
|
||||||
|
|
||||||
|
#define doMacro(finished,had,has,val,pos,source,sourceLen,sourceLoop) \
|
||||||
|
if (finished) finished=false; \
|
||||||
|
if (had!=has) { \
|
||||||
|
finished=true; \
|
||||||
|
} \
|
||||||
|
had=has; \
|
||||||
|
if (has) { \
|
||||||
|
val=source[pos++]; \
|
||||||
|
if (pos>=sourceLen) { \
|
||||||
|
if (sourceLoop<sourceLen && sourceLoop>=0) { \
|
||||||
|
pos=sourceLoop; \
|
||||||
|
} else { \
|
||||||
|
has=false; \
|
||||||
|
} \
|
||||||
|
} \
|
||||||
|
}
|
||||||
|
|
||||||
void DivMacroInt::next() {
|
void DivMacroInt::next() {
|
||||||
if (ins==NULL) return;
|
if (ins==NULL) return;
|
||||||
|
|
||||||
if (finishedVol) finishedVol=false;
|
doMacro(finishedVol,hadVol,hasVol,vol,volPos,ins->std.volMacro,ins->std.volMacroLen,ins->std.volMacroLoop);
|
||||||
if (hadVol!=hasVol) {
|
doMacro(finishedArp,hadArp,hasArp,arp,arpPos,ins->std.arpMacro,ins->std.arpMacroLen,ins->std.arpMacroLoop);
|
||||||
finishedVol=true;
|
doMacro(finishedDuty,hadDuty,hasDuty,duty,dutyPos,ins->std.dutyMacro,ins->std.dutyMacroLen,ins->std.dutyMacroLoop);
|
||||||
}
|
doMacro(finishedWave,hadWave,hasWave,wave,wavePos,ins->std.waveMacro,ins->std.waveMacroLen,ins->std.waveMacroLoop);
|
||||||
hadVol=hasVol;
|
|
||||||
if (hasVol) {
|
|
||||||
vol=ins->std.volMacro[volPos++];
|
|
||||||
if (volPos>=ins->std.volMacroLen) {
|
|
||||||
if (ins->std.volMacroLoop<ins->std.volMacroLen && ins->std.volMacroLoop>=0) {
|
|
||||||
volPos=ins->std.volMacroLoop;
|
|
||||||
} else {
|
|
||||||
hasVol=false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (finishedArp) finishedArp=false;
|
doMacro(finishedPitch,hadPitch,hasPitch,pitch,pitchPos,ins->std.pitchMacro,ins->std.pitchMacroLen,ins->std.pitchMacroLoop);
|
||||||
if (hadArp!=hasArp) {
|
doMacro(finishedEx1,hadEx1,hasEx1,ex1,ex1Pos,ins->std.ex1Macro,ins->std.ex1MacroLen,ins->std.ex1MacroLoop);
|
||||||
finishedArp=true;
|
doMacro(finishedEx2,hadEx2,hasEx2,ex2,ex2Pos,ins->std.ex2Macro,ins->std.ex2MacroLen,ins->std.ex2MacroLoop);
|
||||||
}
|
doMacro(finishedEx3,hadEx3,hasEx3,ex3,ex3Pos,ins->std.ex3Macro,ins->std.ex3MacroLen,ins->std.ex3MacroLoop);
|
||||||
hadArp=hasArp;
|
|
||||||
if (hasArp) {
|
|
||||||
arp=ins->std.arpMacro[arpPos++];
|
|
||||||
if (arpPos>=ins->std.arpMacroLen) {
|
|
||||||
if (ins->std.arpMacroLoop>=0 && ins->std.arpMacroLoop<ins->std.arpMacroLen) {
|
|
||||||
arpPos=ins->std.arpMacroLoop;
|
|
||||||
} else {
|
|
||||||
hasArp=false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (finishedDuty) finishedDuty=false;
|
doMacro(finishedAlg,hadAlg,hasAlg,alg,algPos,ins->std.algMacro,ins->std.algMacroLen,ins->std.algMacroLoop);
|
||||||
if (hadDuty!=hasDuty) {
|
doMacro(finishedFb,hadFb,hasFb,fb,fbPos,ins->std.fbMacro,ins->std.fbMacroLen,ins->std.fbMacroLoop);
|
||||||
finishedDuty=true;
|
doMacro(finishedFms,hadFms,hasFms,fms,fmsPos,ins->std.fmsMacro,ins->std.fmsMacroLen,ins->std.fmsMacroLoop);
|
||||||
}
|
doMacro(finishedAms,hadAms,hasAms,ams,amsPos,ins->std.amsMacro,ins->std.amsMacroLen,ins->std.amsMacroLoop);
|
||||||
hadDuty=hasDuty;
|
|
||||||
if (hasDuty) {
|
|
||||||
duty=ins->std.dutyMacro[dutyPos++];
|
|
||||||
if (dutyPos>=ins->std.dutyMacroLen && ins->std.dutyMacroLoop<ins->std.dutyMacroLen) {
|
|
||||||
if (ins->std.dutyMacroLoop>=0) {
|
|
||||||
dutyPos=ins->std.dutyMacroLoop;
|
|
||||||
} else {
|
|
||||||
hasDuty=false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (finishedWave) finishedWave=false;
|
for (int i=0; i<4; i++) {
|
||||||
if (hadWave!=hasWave) {
|
DivInstrumentSTD::OpMacro& m=ins->std.opMacros[i];
|
||||||
finishedWave=true;
|
IntOp& o=op[i];
|
||||||
}
|
doMacro(o.finishedAm,o.hadAm,o.hasAm,o.am,o.amPos,m.amMacro,m.amMacroLen,m.amMacroLoop);
|
||||||
hadWave=hasWave;
|
doMacro(o.finishedAr,o.hadAr,o.hasAr,o.ar,o.arPos,m.arMacro,m.arMacroLen,m.arMacroLoop);
|
||||||
if (hasWave) {
|
doMacro(o.finishedDr,o.hadDr,o.hasDr,o.dr,o.drPos,m.drMacro,m.drMacroLen,m.drMacroLoop);
|
||||||
wave=ins->std.waveMacro[wavePos++];
|
doMacro(o.finishedMult,o.hadMult,o.hasMult,o.mult,o.multPos,m.multMacro,m.multMacroLen,m.multMacroLoop);
|
||||||
if (wavePos>=ins->std.waveMacroLen && ins->std.waveMacroLoop<ins->std.waveMacroLen) {
|
|
||||||
if (ins->std.waveMacroLoop>=0) {
|
|
||||||
wavePos=ins->std.waveMacroLoop;
|
|
||||||
} else {
|
|
||||||
hasWave=false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (finishedPitch) finishedPitch=false;
|
doMacro(o.finishedRr,o.hadRr,o.hasRr,o.rr,o.rrPos,m.rrMacro,m.rrMacroLen,m.rrMacroLoop);
|
||||||
if (hadPitch!=hasPitch) {
|
doMacro(o.finishedSl,o.hadSl,o.hasSl,o.sl,o.slPos,m.slMacro,m.slMacroLen,m.slMacroLoop);
|
||||||
finishedPitch=true;
|
doMacro(o.finishedTl,o.hadTl,o.hasTl,o.tl,o.tlPos,m.tlMacro,m.tlMacroLen,m.tlMacroLoop);
|
||||||
}
|
doMacro(o.finishedDt2,o.hadDt2,o.hasDt2,o.dt2,o.dt2Pos,m.dt2Macro,m.dt2MacroLen,m.dt2MacroLoop);
|
||||||
hadPitch=hasPitch;
|
|
||||||
if (hasPitch) {
|
|
||||||
pitch=ins->std.pitchMacro[pitchPos++];
|
|
||||||
if (pitchPos>=ins->std.pitchMacroLen && ins->std.pitchMacroLoop<ins->std.pitchMacroLen) {
|
|
||||||
if (ins->std.pitchMacroLoop>=0) {
|
|
||||||
pitchPos=ins->std.pitchMacroLoop;
|
|
||||||
} else {
|
|
||||||
hasPitch=false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (finishedEx1) finishedEx1=false;
|
doMacro(o.finishedRs,o.hadRs,o.hasRs,o.rs,o.rsPos,m.rsMacro,m.rsMacroLen,m.rsMacroLoop);
|
||||||
if (hadEx1!=hasEx1) {
|
doMacro(o.finishedDt,o.hadDt,o.hasDt,o.dt,o.dtPos,m.dtMacro,m.dtMacroLen,m.dtMacroLoop);
|
||||||
finishedEx1=true;
|
doMacro(o.finishedD2r,o.hadD2r,o.hasD2r,o.d2r,o.d2rPos,m.d2rMacro,m.d2rMacroLen,m.d2rMacroLoop);
|
||||||
}
|
doMacro(o.finishedSsg,o.hadSsg,o.hasSsg,o.ssg,o.ssgPos,m.ssgMacro,m.ssgMacroLen,m.ssgMacroLoop);
|
||||||
hadEx1=hasEx1;
|
|
||||||
if (hasEx1) {
|
|
||||||
ex1=ins->std.ex1Macro[ex1Pos++];
|
|
||||||
if (ex1Pos>=ins->std.ex1MacroLen && ins->std.ex1MacroLoop<ins->std.ex1MacroLen) {
|
|
||||||
if (ins->std.ex1MacroLoop>=0) {
|
|
||||||
ex1Pos=ins->std.ex1MacroLoop;
|
|
||||||
} else {
|
|
||||||
hasEx1=false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (finishedEx2) finishedEx2=false;
|
|
||||||
if (hadEx2!=hasEx2) {
|
|
||||||
finishedEx2=true;
|
|
||||||
}
|
|
||||||
hadEx2=hasEx2;
|
|
||||||
if (hasEx2) {
|
|
||||||
ex2=ins->std.ex2Macro[ex2Pos++];
|
|
||||||
if (ex2Pos>=ins->std.ex2MacroLen && ins->std.ex2MacroLoop<ins->std.ex2MacroLen) {
|
|
||||||
if (ins->std.ex2MacroLoop>=0) {
|
|
||||||
ex2Pos=ins->std.ex2MacroLoop;
|
|
||||||
} else {
|
|
||||||
hasEx2=false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (finishedEx3) finishedEx3=false;
|
|
||||||
if (hadEx3!=hasEx3) {
|
|
||||||
finishedEx3=true;
|
|
||||||
}
|
|
||||||
hadEx3=hasEx3;
|
|
||||||
if (hasEx3) {
|
|
||||||
ex3=ins->std.ex3Macro[ex3Pos++];
|
|
||||||
if (ex3Pos>=ins->std.ex3MacroLen && ins->std.ex3MacroLoop<ins->std.ex3MacroLen) {
|
|
||||||
if (ins->std.ex3MacroLoop>=0) {
|
|
||||||
ex3Pos=ins->std.ex3MacroLoop;
|
|
||||||
} else {
|
|
||||||
hasEx3=false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -142,6 +66,11 @@ void DivMacroInt::init(DivInstrument* which) {
|
||||||
ex1Pos=0;
|
ex1Pos=0;
|
||||||
ex2Pos=0;
|
ex2Pos=0;
|
||||||
ex3Pos=0;
|
ex3Pos=0;
|
||||||
|
algPos=0;
|
||||||
|
fbPos=0;
|
||||||
|
fmsPos=0;
|
||||||
|
amsPos=0;
|
||||||
|
|
||||||
hasVol=false;
|
hasVol=false;
|
||||||
hasArp=false;
|
hasArp=false;
|
||||||
hasDuty=false;
|
hasDuty=false;
|
||||||
|
@ -150,6 +79,11 @@ void DivMacroInt::init(DivInstrument* which) {
|
||||||
hasEx1=false;
|
hasEx1=false;
|
||||||
hasEx2=false;
|
hasEx2=false;
|
||||||
hasEx3=false;
|
hasEx3=false;
|
||||||
|
hasAlg=false;
|
||||||
|
hasFb=false;
|
||||||
|
hasFms=false;
|
||||||
|
hasAms=false;
|
||||||
|
|
||||||
hadVol=false;
|
hadVol=false;
|
||||||
hadArp=false;
|
hadArp=false;
|
||||||
hadDuty=false;
|
hadDuty=false;
|
||||||
|
@ -158,6 +92,11 @@ void DivMacroInt::init(DivInstrument* which) {
|
||||||
hadEx1=false;
|
hadEx1=false;
|
||||||
hadEx2=false;
|
hadEx2=false;
|
||||||
hadEx3=false;
|
hadEx3=false;
|
||||||
|
hadAlg=false;
|
||||||
|
hadFb=false;
|
||||||
|
hadFms=false;
|
||||||
|
hadAms=false;
|
||||||
|
|
||||||
willVol=false;
|
willVol=false;
|
||||||
willArp=false;
|
willArp=false;
|
||||||
willDuty=false;
|
willDuty=false;
|
||||||
|
@ -166,6 +105,16 @@ void DivMacroInt::init(DivInstrument* which) {
|
||||||
willEx1=false;
|
willEx1=false;
|
||||||
willEx2=false;
|
willEx2=false;
|
||||||
willEx3=false;
|
willEx3=false;
|
||||||
|
willAlg=false;
|
||||||
|
willFb=false;
|
||||||
|
willFms=false;
|
||||||
|
willAms=false;
|
||||||
|
|
||||||
|
op[0]=IntOp();
|
||||||
|
op[1]=IntOp();
|
||||||
|
op[2]=IntOp();
|
||||||
|
op[3]=IntOp();
|
||||||
|
|
||||||
arpMode=false;
|
arpMode=false;
|
||||||
|
|
||||||
if (ins==NULL) return;
|
if (ins==NULL) return;
|
||||||
|
@ -210,10 +159,96 @@ void DivMacroInt::init(DivInstrument* which) {
|
||||||
hasEx3=true;
|
hasEx3=true;
|
||||||
willEx3=true;
|
willEx3=true;
|
||||||
}
|
}
|
||||||
|
if (ins->std.algMacroLen>0) {
|
||||||
|
hadAlg=true;
|
||||||
|
hasAlg=true;
|
||||||
|
willAlg=true;
|
||||||
|
}
|
||||||
|
if (ins->std.fbMacroLen>0) {
|
||||||
|
hadFb=true;
|
||||||
|
hasFb=true;
|
||||||
|
willFb=true;
|
||||||
|
}
|
||||||
|
if (ins->std.fmsMacroLen>0) {
|
||||||
|
hadFms=true;
|
||||||
|
hasFms=true;
|
||||||
|
willFms=true;
|
||||||
|
}
|
||||||
|
if (ins->std.amsMacroLen>0) {
|
||||||
|
hadAms=true;
|
||||||
|
hasAms=true;
|
||||||
|
willAms=true;
|
||||||
|
}
|
||||||
|
|
||||||
if (ins->std.arpMacroMode) {
|
if (ins->std.arpMacroMode) {
|
||||||
arpMode=true;
|
arpMode=true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
for (int i=0; i<4; i++) {
|
||||||
|
DivInstrumentSTD::OpMacro& m=ins->std.opMacros[i];
|
||||||
|
IntOp& o=op[i];
|
||||||
|
|
||||||
|
if (m.amMacroLen>0) {
|
||||||
|
o.hadAm=true;
|
||||||
|
o.hasAm=true;
|
||||||
|
o.willAm=true;
|
||||||
|
}
|
||||||
|
if (m.arMacroLen>0) {
|
||||||
|
o.hadAr=true;
|
||||||
|
o.hasAr=true;
|
||||||
|
o.willAr=true;
|
||||||
|
}
|
||||||
|
if (m.drMacroLen>0) {
|
||||||
|
o.hadDr=true;
|
||||||
|
o.hasDr=true;
|
||||||
|
o.willDr=true;
|
||||||
|
}
|
||||||
|
if (m.multMacroLen>0) {
|
||||||
|
o.hadMult=true;
|
||||||
|
o.hasMult=true;
|
||||||
|
o.willMult=true;
|
||||||
|
}
|
||||||
|
if (m.rrMacroLen>0) {
|
||||||
|
o.hadRr=true;
|
||||||
|
o.hasRr=true;
|
||||||
|
o.willRr=true;
|
||||||
|
}
|
||||||
|
if (m.slMacroLen>0) {
|
||||||
|
o.hadSl=true;
|
||||||
|
o.hasSl=true;
|
||||||
|
o.willSl=true;
|
||||||
|
}
|
||||||
|
if (m.tlMacroLen>0) {
|
||||||
|
o.hadTl=true;
|
||||||
|
o.hasTl=true;
|
||||||
|
o.willTl=true;
|
||||||
|
}
|
||||||
|
if (m.dt2MacroLen>0) {
|
||||||
|
o.hadDt2=true;
|
||||||
|
o.hasDt2=true;
|
||||||
|
o.willDt2=true;
|
||||||
|
}
|
||||||
|
if (m.rsMacroLen>0) {
|
||||||
|
o.hadRs=true;
|
||||||
|
o.hasRs=true;
|
||||||
|
o.willRs=true;
|
||||||
|
}
|
||||||
|
if (m.dtMacroLen>0) {
|
||||||
|
o.hadDt=true;
|
||||||
|
o.hasDt=true;
|
||||||
|
o.willDt=true;
|
||||||
|
}
|
||||||
|
if (m.d2rMacroLen>0) {
|
||||||
|
o.hadD2r=true;
|
||||||
|
o.hasD2r=true;
|
||||||
|
o.willD2r=true;
|
||||||
|
}
|
||||||
|
if (m.ssgMacroLen>0) {
|
||||||
|
o.hadSsg=true;
|
||||||
|
o.hasSsg=true;
|
||||||
|
o.willSsg=true;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void DivMacroInt::notifyInsDeletion(DivInstrument* which) {
|
void DivMacroInt::notifyInsDeletion(DivInstrument* which) {
|
||||||
|
|
|
@ -6,15 +6,80 @@
|
||||||
class DivMacroInt {
|
class DivMacroInt {
|
||||||
DivInstrument* ins;
|
DivInstrument* ins;
|
||||||
int volPos, arpPos, dutyPos, wavePos, pitchPos, ex1Pos, ex2Pos, ex3Pos;
|
int volPos, arpPos, dutyPos, wavePos, pitchPos, ex1Pos, ex2Pos, ex3Pos;
|
||||||
|
int algPos, fbPos, fmsPos, amsPos;
|
||||||
public:
|
public:
|
||||||
int vol;
|
int vol;
|
||||||
int arp;
|
int arp;
|
||||||
int duty, wave, pitch, ex1, ex2, ex3;
|
int duty, wave, pitch, ex1, ex2, ex3;
|
||||||
bool hasVol, hasArp, hasDuty, hasWave, hasPitch, hasEx1, hasEx2, hasEx3;
|
int alg, fb, fms, ams;
|
||||||
bool hadVol, hadArp, hadDuty, hadWave, hadPitch, hadEx1, hadEx2, hadEx3;
|
bool hasVol, hasArp, hasDuty, hasWave, hasPitch, hasEx1, hasEx2, hasEx3, hasAlg, hasFb, hasFms, hasAms;
|
||||||
|
bool hadVol, hadArp, hadDuty, hadWave, hadPitch, hadEx1, hadEx2, hadEx3, hadAlg, hadFb, hadFms, hadAms;
|
||||||
bool finishedVol, finishedArp, finishedDuty, finishedWave, finishedPitch, finishedEx1, finishedEx2, finishedEx3;
|
bool finishedVol, finishedArp, finishedDuty, finishedWave, finishedPitch, finishedEx1, finishedEx2, finishedEx3;
|
||||||
bool willVol, willArp, willDuty, willWave, willPitch, willEx1, willEx2, willEx3;
|
bool finishedAlg, finishedFb, finishedFms, finishedAms;
|
||||||
|
bool willVol, willArp, willDuty, willWave, willPitch, willEx1, willEx2, willEx3, willAlg, willFb, willFms, willAms;
|
||||||
bool arpMode;
|
bool arpMode;
|
||||||
|
struct IntOp {
|
||||||
|
int amPos, arPos, drPos, multPos;
|
||||||
|
int rrPos, slPos, tlPos, dt2Pos;
|
||||||
|
int rsPos, dtPos, d2rPos, ssgPos;
|
||||||
|
|
||||||
|
int am, ar, dr, mult;
|
||||||
|
int rr, sl, tl, dt2;
|
||||||
|
int rs, dt, d2r, ssg;
|
||||||
|
|
||||||
|
bool hasAm, hasAr, hasDr, hasMult;
|
||||||
|
bool hasRr, hasSl, hasTl, hasDt2;
|
||||||
|
bool hasRs, hasDt, hasD2r, hasSsg;
|
||||||
|
|
||||||
|
bool hadAm, hadAr, hadDr, hadMult;
|
||||||
|
bool hadRr, hadSl, hadTl, hadDt2;
|
||||||
|
bool hadRs, hadDt, hadD2r, hadSsg;
|
||||||
|
|
||||||
|
bool finishedAm, finishedAr, finishedDr, finishedMult;
|
||||||
|
bool finishedRr, finishedSl, finishedTl, finishedDt2;
|
||||||
|
bool finishedRs, finishedDt, finishedD2r, finishedSsg;
|
||||||
|
|
||||||
|
bool willAm, willAr, willDr, willMult;
|
||||||
|
bool willRr, willSl, willTl, willDt2;
|
||||||
|
bool willRs, willDt, willD2r, willSsg;
|
||||||
|
IntOp():
|
||||||
|
amPos(0),
|
||||||
|
arPos(0),
|
||||||
|
drPos(0),
|
||||||
|
multPos(0),
|
||||||
|
rrPos(0),
|
||||||
|
slPos(0),
|
||||||
|
tlPos(0),
|
||||||
|
dt2Pos(0),
|
||||||
|
rsPos(0),
|
||||||
|
dtPos(0),
|
||||||
|
d2rPos(0),
|
||||||
|
ssgPos(0),
|
||||||
|
am(0),
|
||||||
|
ar(0),
|
||||||
|
dr(0),
|
||||||
|
mult(0),
|
||||||
|
rr(0),
|
||||||
|
sl(0),
|
||||||
|
tl(0),
|
||||||
|
dt2(0),
|
||||||
|
rs(0),
|
||||||
|
dt(0),
|
||||||
|
d2r(0),
|
||||||
|
ssg(0),
|
||||||
|
hasAm(false), hasAr(false), hasDr(false), hasMult(false),
|
||||||
|
hasRr(false), hasSl(false), hasTl(false), hasDt2(false),
|
||||||
|
hasRs(false), hasDt(false), hasD2r(false), hasSsg(false),
|
||||||
|
hadAm(false), hadAr(false), hadDr(false), hadMult(false),
|
||||||
|
hadRr(false), hadSl(false), hadTl(false), hadDt2(false),
|
||||||
|
hadRs(false), hadDt(false), hadD2r(false), hadSsg(false),
|
||||||
|
finishedAm(false), finishedAr(false), finishedDr(false), finishedMult(false),
|
||||||
|
finishedRr(false), finishedSl(false), finishedTl(false), finishedDt2(false),
|
||||||
|
finishedRs(false), finishedDt(false), finishedD2r(false), finishedSsg(false),
|
||||||
|
willAm(false), willAr(false), willDr(false), willMult(false),
|
||||||
|
willRr(false), willSl(false), willTl(false), willDt2(false),
|
||||||
|
willRs(false), willDt(false), willD2r(false), willSsg(false) {}
|
||||||
|
} op[4];
|
||||||
void next();
|
void next();
|
||||||
void init(DivInstrument* which);
|
void init(DivInstrument* which);
|
||||||
void notifyInsDeletion(DivInstrument* which);
|
void notifyInsDeletion(DivInstrument* which);
|
||||||
|
@ -28,6 +93,10 @@ class DivMacroInt {
|
||||||
ex1Pos(0),
|
ex1Pos(0),
|
||||||
ex2Pos(0),
|
ex2Pos(0),
|
||||||
ex3Pos(0),
|
ex3Pos(0),
|
||||||
|
algPos(0),
|
||||||
|
fbPos(0),
|
||||||
|
fmsPos(0),
|
||||||
|
amsPos(0),
|
||||||
vol(0),
|
vol(0),
|
||||||
arp(0),
|
arp(0),
|
||||||
duty(0),
|
duty(0),
|
||||||
|
@ -36,6 +105,10 @@ class DivMacroInt {
|
||||||
ex1(0),
|
ex1(0),
|
||||||
ex2(0),
|
ex2(0),
|
||||||
ex3(0),
|
ex3(0),
|
||||||
|
alg(0),
|
||||||
|
fb(0),
|
||||||
|
fms(0),
|
||||||
|
ams(0),
|
||||||
hasVol(false),
|
hasVol(false),
|
||||||
hasArp(false),
|
hasArp(false),
|
||||||
hasDuty(false),
|
hasDuty(false),
|
||||||
|
@ -44,6 +117,10 @@ class DivMacroInt {
|
||||||
hasEx1(false),
|
hasEx1(false),
|
||||||
hasEx2(false),
|
hasEx2(false),
|
||||||
hasEx3(false),
|
hasEx3(false),
|
||||||
|
hasAlg(false),
|
||||||
|
hasFb(false),
|
||||||
|
hasFms(false),
|
||||||
|
hasAms(false),
|
||||||
hadVol(false),
|
hadVol(false),
|
||||||
hadArp(false),
|
hadArp(false),
|
||||||
hadDuty(false),
|
hadDuty(false),
|
||||||
|
@ -52,6 +129,10 @@ class DivMacroInt {
|
||||||
hadEx1(false),
|
hadEx1(false),
|
||||||
hadEx2(false),
|
hadEx2(false),
|
||||||
hadEx3(false),
|
hadEx3(false),
|
||||||
|
hadAlg(false),
|
||||||
|
hadFb(false),
|
||||||
|
hadFms(false),
|
||||||
|
hadAms(false),
|
||||||
finishedVol(false),
|
finishedVol(false),
|
||||||
finishedArp(false),
|
finishedArp(false),
|
||||||
finishedDuty(false),
|
finishedDuty(false),
|
||||||
|
@ -60,6 +141,10 @@ class DivMacroInt {
|
||||||
finishedEx1(false),
|
finishedEx1(false),
|
||||||
finishedEx2(false),
|
finishedEx2(false),
|
||||||
finishedEx3(false),
|
finishedEx3(false),
|
||||||
|
finishedAlg(false),
|
||||||
|
finishedFb(false),
|
||||||
|
finishedFms(false),
|
||||||
|
finishedAms(false),
|
||||||
willVol(false),
|
willVol(false),
|
||||||
willArp(false),
|
willArp(false),
|
||||||
willDuty(false),
|
willDuty(false),
|
||||||
|
@ -68,6 +153,10 @@ class DivMacroInt {
|
||||||
willEx1(false),
|
willEx1(false),
|
||||||
willEx2(false),
|
willEx2(false),
|
||||||
willEx3(false),
|
willEx3(false),
|
||||||
|
willAlg(false),
|
||||||
|
willFb(false),
|
||||||
|
willFms(false),
|
||||||
|
willAms(false),
|
||||||
arpMode(false) {}
|
arpMode(false) {}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue