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

maxiOsc myOsc;
maxiEnvelope myEnv;
int counter;
double vals[12]={1,0.1,0.5,0.0,1.5,0.0,0.1,1,1.0,0.15,1.0,0.1};
std::vector<double> rampsA(vals, vals+12);


void setup() {//some inits
 
    myEnv.note(true);

}

void play(double *output) {//this is where the magic happens. Very slow magic.
    
    counter++;
    
    if (counter ==0 || counter % 330400==0) {
        myEnv.note(true);
    }
    
    
    double out = myEnv.ramps(rampsA);
    
    output[0]=myOsc.sinewave(440)*out;

    output[1]=output[0];
}


//#include "maximilian.h"
//
//maxiOsc myOsc;
//maxiEnvelope myEnv;
//int counter;
//
//void setup() {
//    cout << myEnv.trigger << endl;
//}
//
//void play(double *output) {
//    
//    
//    if (counter ==0 || counter % 88201==0) {
//        myEnv.note(true);
//    }
//    
//    if (counter % 44100==0) {
//        myEnv.note(false);
//    }
//    
//    counter++;
//    
//    double out = myEnv.adsr();
//
//    output[0]=myOsc.sinewave(440)*out;
//    
//    output[1]=output[0];
//    
//}

//#include "maximilian.h"
//
//maxiOsc myOsc;
//maxiEnvelope myEnv;
//int counter;
//
//void setup() {
//    cout << myEnv.trigger << endl;
//}
//
//void play(double *output) {
//    
//    
//    if (counter ==0 || counter % 88200==0) {
//        myEnv.note(true);
//    }
//    
//    
//    counter++;
//    
//    double out = myEnv.ar(1,1);
//    
//    output[0]=myOsc.sinewave(440)*out;
//    
//    output[1]=output[0];
//    
//}