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 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206
|
#ifndef FAUSTFLOAT
#define FAUSTFLOAT double
#endif
#include "controlTools.h"
//----------------------------------------------------------------------------
//FAUST generated code
//----------------------------------------------------------------------------
<<includeIntrinsic>>
<<includeclass>>
// Wrapping C++ class used with -ec option.
struct ControlDSP : public decorator_dsp {
ControlDSP(dsp* dsp):decorator_dsp(dsp)
{}
virtual ~ControlDSP()
{
mydsp::destroy(fDSP);
// fDSP is now desallocated, we don't want decorator_dsp to delete the pointer
fDSP = nullptr;
}
// This is mandatory
virtual ControlDSP* clone()
{
return new ControlDSP(fDSP->clone());
}
void compute(int count, FAUSTFLOAT** RESTRICT inputs, FAUSTFLOAT** RESTRICT outputs)
{
fDSP->control();
fDSP->compute(count, inputs, outputs);
}
};
// 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;
}
malloc_memory_manager_check_dsp gManager(sizeof(mydsp));
int main(int argc, char* argv[])
{
int linenum = 0;
int nbsamples = 60000;
// Setup the global custom memory manager
mydsp::fManager = &gManager;
// Make the memory manager get information on all subcontainers,
// static tables, DSP and arrays
mydsp::memoryInfo();
// Done once before allocating any DSP
mydsp::classInit(44100);
// print general informations
printHeader(mydsp::create(), nbsamples);
// linenum is incremented in runDSP and runPolyDSP
runDSP2(new ControlDSP(mydsp::create()), argv[0], linenum, nbsamples/4);
runDSP2(new ControlDSP(mydsp::create()), argv[0], linenum, nbsamples/4, false, true);
//runPolyDSP(new mydsp(), linenum, nbsamples/4, 4);
//runPolyDSP(new mydsp(), linenum, nbsamples/4, 1);
// Done once after the last DSP has been destroyed
mydsp::classDestroy();
return 0;
}
|