aboutsummaryrefslogtreecommitdiffstats
path: root/main.cpp
blob: e0b1619be6ffd8546ae7608c56d47397466ce648 (plain)
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
#include "maximilian.h"

maxiOsc myCounter,mySwitchableOsc;//
maxiSample beat;
int CurrentCount;//
double myOscOutput,myFilteredOutput;//
double myEnvelopeData[6] = {500,0,1000,500,0,500};//this data will be used to make an envelope. Value and time to value in ms.
maxiEnvelope myEnvelope;
maxiFilter myFilter;

void setup() {//some inits
    myEnvelope.amplitude=myEnvelopeData[0]; //initialise the envelope
    beat.load("/Users/mick/Documents/workspace/Maximilian/beat2.wav");
}

void play(double *output) {
    
    CurrentCount=myCounter.phasor(1, 1, 9);//phasor can take three arguments; frequency, start value and end value.
    
    if (CurrentCount<5)//simple if statement
        
        myOscOutput=mySwitchableOsc.square(CurrentCount*100);
    
    else if (CurrentCount>=5)//and the 'else' bit.
        
        myOscOutput=mySwitchableOsc.saw(CurrentCount*50);//one osc object can produce whichever waveform you want.
    
    if (CurrentCount==1)
        
        myEnvelope.trigger(0,myEnvelopeData[0]); //trigger the envelope
    
    myFilteredOutput=myFilter.lores(myOscOutput,(myEnvelope.line(6, myEnvelopeData)),10);//lores takes an audio input, a frequency and a resonance factor (1-100)
    
    *output=myFilteredOutput/2+beat.play(-1.,0,beat.length);//point me at your speakers and fire.
}