1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
|
#ifndef FAUSTFLOAT
#define FAUSTFLOAT double
#endif
#include "controlTools.h"
//----------------------------------------------------------------------------
//FAUST generated code
//----------------------------------------------------------------------------
<<includeIntrinsic>>
<<includeclass>>
// To be used in static context with -mem
static void runDSP2(dsp* DSP, const string& file, int& linenum, int nbsamples, bool inpl = false, bool random = false)
{
char rcfilename[256];
string filename = file;
filename = filename.substr(0, filename.find ('.'));
snprintf(rcfilename, 255, "%src", filename.c_str());
dsp* oldDSP = DSP;
FUI finterface;
DSP->buildUserInterface(&finterface);
// Soundfile
TestMemoryReader* memory_reader = new TestMemoryReader();
SoundUI sound_ui("", -1, memory_reader, (sizeof(FAUSTFLOAT) == sizeof(double)));
DSP->buildUserInterface(&sound_ui);
// Get control and then 'initRandom'
CheckControlUI controlui;
DSP->buildUserInterface(&controlui);
controlui.initRandom();
// MIDI control
midi_handler handler;
MidiUI midi_ui(&handler);
DSP->buildUserInterface(&midi_ui);
// Init signal processor and the user interface values
DSP->instanceInit(44100);
// Check getSampleRate
if (DSP->getSampleRate() != 44100) {
cerr << "ERROR runDSP in getSampleRate : " << DSP->getSampleRate() << std::endl;
}
// Check default after 'init'
if (!controlui.checkDefaults()) {
cerr << "ERROR runDSP in checkDefaults after 'init'" << std::endl;
}
// Check default after 'instanceResetUserInterface'
controlui.initRandom();
DSP->instanceResetUserInterface();
if (!controlui.checkDefaults()) {
cerr << "ERROR runDSP in checkDefaults after 'instanceResetUserInterface'" << std::endl;
}
// Check default after 'instanceInit'
controlui.initRandom();
DSP->instanceInit(44100);
if (!controlui.checkDefaults()) {
cerr << "ERROR runDSP in checkDefaults after 'instanceInit'" << std::endl;
}
// To test that instanceInit properly init a cloned DSP
DSP = DSP->clone();
DSP->instanceInit(44100);
// Init UIs on cloned DSP
DSP->buildUserInterface(&finterface);
DSP->buildUserInterface(&sound_ui);
DSP->buildUserInterface(&midi_ui);
int nins = DSP->getNumInputs();
int nouts = DSP->getNumOutputs();
channels* ichan = new channels(kFrames, ((inpl) ? std::max(nins, nouts) : nins));
channels* ochan = (inpl) ? ichan : new channels(kFrames, nouts);
int run = 0;
// recall saved state
finterface.recallState(rcfilename);
// Test MIDI control
for (int i = 0; i < 127; i++) {
handler.handleData2(0, midi::MidiStatus::MIDI_CONTROL_CHANGE, 0, i, 100);
handler.handleData2(0, midi::MidiStatus::MIDI_POLY_AFTERTOUCH, 0, i, 75);
handler.handleData2(0, midi::MidiStatus::MIDI_NOTE_ON, 0, i, 75);
handler.handleData2(0, midi::MidiStatus::MIDI_NOTE_OFF, 0, i, 75);
handler.handleData2(0, midi::MidiStatus::MIDI_PITCH_BEND, 0, i, 4000);
}
handler.handleData1(0, midi::MidiStatus::MIDI_PROGRAM_CHANGE, 0, 10);
handler.handleData1(0, midi::MidiStatus::MIDI_AFTERTOUCH, 0, 10);
GUI::updateAllGuis();
// print audio frames
int i = 0;
try {
while (nbsamples > 0) {
if (run == 0) {
ichan->impulse();
finterface.setButtons(true);
}
if (run >= 1) {
ichan->zero();
finterface.setButtons(false);
}
int nFrames = min(kFrames, nbsamples);
if (random) {
int randval = rand();
int n1 = randval % nFrames;
int n2 = nFrames - n1;
DSP->compute(n1, ichan->buffers(), ochan->buffers());
DSP->compute(n2, ichan->buffers(n1), ochan->buffers(n1));
} else {
DSP->compute(nFrames, ichan->buffers(), ochan->buffers());
}
run++;
// Print samples
for (i = 0; i < nFrames; i++) {
printf("%6d : ", linenum++);
for (int c = 0; c < nouts; c++) {
FAUSTFLOAT f = normalize(ochan->buffers()[c][i]);
printf(" %8.6f", f);
}
printf("\n");
}
nbsamples -= nFrames;
}
} catch (...) {
cerr << "ERROR in '" << file << "' at line : " << i << std::endl;
}
delete ichan;
if (ochan != ichan) delete ochan;
delete oldDSP;
delete DSP;
}
int iControl[FAUST_INT_CONTROLS];
double fControl[FAUST_REAL_CONTROLS];
int iZone[FAUST_INT_ZONE];
double fZone[FAUST_FLOAT_ZONE];
int main(int argc, char* argv[])
{
int linenum = 0;
int nbsamples = 60000;
// print general informations
printHeader(new mydsp(iControl, fControl, iZone, fZone), nbsamples);
// linenum is incremented in runDSP
runDSP2(new mydsp(iControl, fControl, iZone, fZone), argv[0], linenum, nbsamples/4);
runDSP2(new mydsp(iControl, fControl, iZone, fZone), argv[0], linenum, nbsamples/4, false, true);
return 0;
}
|