ref: cf5c3f2742c62f36ee80cae80d74e2f5114aff2c
dir: /LEAF_JUCEPlugin/Source/MyTest.cpp/
/*
==============================================================================
FM.c
Created: 23 Jan 2017 9:39:38am
Author: Michael R Mulshine
==============================================================================
*/
#include "LEAFTest.h"
#include "MyTest.h"
static void leaf_pool_report(void);
static void leaf_pool_dump(void);
static void run_pool_test(void);
tNoise noise;
tSVF bp1;
tSVF bp2;
tFormantShifter fs;
tSampler samp;
tBuffer buff;
tEnvelope env;
tAutotune at;
tMinBLEP minblep;
tPhasor phasor;
tHighpass hipass;
tMBSaw saw;
tMBPulse pulse;
tMBTriangle tri;
float gain;
float freq;
float dtime;
bool buttonState;
int ratio = 2;
float x = 0.0f;
float y = 0.0f;
float a, b, c, d;
#define MSIZE 500000
char memory[MSIZE];
void LEAFTest_init (float sampleRate, int blockSize)
{
LEAF_init(sampleRate, blockSize, memory, MSIZE, &getRandomFloat);
tMBSaw_init(&saw);
tMBPulse_init(&pulse);
tMBTriangle_init(&tri);
tPhasor_init(&phasor);
tPhasor_setFreq(&phasor, 200);
}
inline double getSawFall(double angle) {
angle = fmod(angle + double_Pi, 2*double_Pi); // shift x
double sample = angle/double_Pi - double(1); // computer as remainder
return sample;
}
float LEAFTest_tick (float input)
{
tMBSaw_setFreq(&saw, y);
tMBPulse_setWidth(&pulse, x);
tMBPulse_setFreq(&pulse, y);
tMBTriangle_setSkew(&tri, 0.0);//x*2.0f - 1.0f);
tMBTriangle_setFreq(&tri, y);
tPhasor_tick(&phasor);
// if (phasor->phaseDidReset) tMBSaw_sync(&saw, 0.0f);
// if (phasor->phaseDidReset) tMBPulse_sync(&pulse, 0.0f);
if (phasor->phaseDidReset) tMBTriangle_sync(&tri, 0.0f);
// return tMBSaw_tick(&saw);
// return tMBPulse_tick(&pulse);
return tMBTriangle_tick(&tri);
}
int firstFrame = 1;
bool lastState = false, lastPlayState = false;
void LEAFTest_block (void)
{
// if (firstFrame == 1)
// {
// tBuffer_record(&buff); // starts recording
// tSampler_play(&samp); // start spitting samples out
// firstFrame = 0;
// }
float val = getSliderValue("mod freq");
x = val ;
// a = val * tBuffer_getBufferLength(&buff);
DBG("start: " + String(a));
val = getSliderValue("mod depth");
y = val * 5000.0f + 20.0f;
DBG(String(y));
// b = val * tBuffer_getBufferLength(&buff);
DBG("rate: " + String(b));
//
// tSampler_setStart(&samp, a);
// tSampler_setEnd(&samp, b);
// tSampler_setRate(&samp, b);
// tFormantShifter_setShiftFactor(&fs, x);
// tFormantShifter_setIntensity(&fs, y);
}
void LEAFTest_controllerInput (int cnum, float cval)
{
}
void LEAFTest_pitchBendInput (int pitchBend)
{
}
int lastNote;
void LEAFTest_noteOn (int note, float velocity)
{
}
void LEAFTest_noteOff (int note)
{
}
void LEAFTest_end (void)
{
}
// LEAF POOL UTILITIES
void leaf_pool_report(void)
{
DBG(String(leaf_pool_get_used()) + " of " + String(leaf_pool_get_size()));
}
void leaf_pool_dump(void)
{
float* buff = (float*)leaf_pool_get_pool();
unsigned long siz = leaf_pool_get_size();
siz /= sizeof(float);
for (int i = 0; i < siz; i++)
{
DBG(String(buff[i]));
}
}
static void run_pool_test(void)
{
leaf_pool_report();
DBG("ALLOC BUFFER 1");
int size = 50;
float* buffer;
buffer = (float*) leaf_alloc(sizeof(float) * size);
for (int i = 0; i < size; i++)
{
buffer[i] = (float)i;
}
leaf_pool_report();
DBG("ALLOC BUFFER 2");
size = 25;
buffer = (float*) leaf_alloc(sizeof(float) * size);
leaf_pool_report();
for (int i = 0; i < size; i++)
{
buffer[i] = (float)(i*2);
}
leaf_free((char*)buffer);
leaf_pool_report();
DBG("ALLOC BUFFER 3");
size = 15;
buffer = (float*) leaf_alloc(sizeof(float) * size);
for (int i = 0; i < size; i++)
{
buffer[i] = (float)(i*3);
}
leaf_pool_report();
leaf_pool_dump();
}