forked from Mdashdotdashn/RetroGrids
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRetroGrids.ino
237 lines (203 loc) · 4.22 KB
/
RetroGrids.ino
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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
#include <RK002.h>
#include "grids.h"
RK002_DECLARE_INFO("RETRO GRIDS","[email protected]","1.0","b9dad8cd-b032-4dca-9b44-8b4486880e8c9")
using namespace grids;
constexpr static uint8_t kMidiChannel = 9;
static uint32_t random_value(std::uint32_t init = 0) {
static std::uint32_t val = 0x12345;
if (init) {
val = init;
return 0;
}
val = val * 214013 + 2531011;
return val;
}
enum Resolutions
{
DOUBLE = 0,
NORMAL,
HALF,
COUNT
};
static const uint8_t notes[3] = { 0x3C, 0x3E, 0x40 };
class GridsWrapper
{
public:
GridsWrapper()
{
tickCount_ = 0;
for (auto i = 0; i < 3; i ++)
{
channelTriggered_[i] = false;
density_[i] = i == 0 ? 128 : 0;
perturbations_[i] = 0;
}
x_ = y_ = 128;
accent_ = 128;
chaos_ = 0;
divider_ = 1;
multiplier_ = 1;
running_ = false;
}
void start()
{
tickCount_ = 0;
running_ = true;
}
void stop()
{
running_ = false;
}
void proceed()
{
running_ = true;
}
void tick()
{
if (!running_) return;
uint32_t ticksPerClock = 3 << divider_;
bool trigger = ((tickCount_ % ticksPerClock) == 0);
if (trigger)
{
const auto step = (tickCount_ / ticksPerClock * multiplier_) % grids::kStepsPerPattern;
channel_.setStep(step);
for (auto channel = 0; channel < 3; channel++)
{
if (step == 0)
{
std::uint32_t r = random_value();
perturbations_[channel] = ((r & 0xFF) * (chaos_ >> 2)) >> 8;
}
const uint8_t threshold = ~density_[channel];
auto level = channel_.level(channel, x_, y_);
if (level < 255 - perturbations_[channel])
{
level += perturbations_[channel];
}
if (level > threshold)
{
uint8_t targetLevel = uint8_t(127.f * float(level - threshold) / float(256 - threshold));
uint8_t noteLevel = grids::U8Mix(127, targetLevel, accent_);
RK002_sendNoteOn(kMidiChannel, notes[channel], noteLevel);
channelTriggered_[channel] = true;
}
}
}
else
{
for (auto channel = 0; channel < 3; channel++)
{
if (channelTriggered_[channel])
{
RK002_sendNoteOff(kMidiChannel, notes[channel], 0);
channelTriggered_[channel] = false;
}
}
}
tickCount_++;
}
void setDensity(uint8_t channel, uint8_t density)
{
density_[channel] = density;
}
void setX(uint8_t x)
{
x_ = x;
}
void setY(uint8_t y)
{
y_ = y;
}
void setChaos(uint8_t c)
{
chaos_ = c;
}
void setResolution(Resolutions r)
{
multiplier_ = (r == DOUBLE) ? 2 : 1;
divider_ = (r == HALF) ? 2 : 1;
}
void setAccent(uint8_t a)
{
accent_ = a;
}
private:
Channel channel_;
uint32_t divider_;
uint8_t multiplier_;
uint32_t tickCount_;
uint8_t density_[3];
uint8_t perturbations_[3];
uint8_t x_;
uint8_t y_;
bool channelTriggered_[3];
uint8_t chaos_;
uint8_t accent_;
bool running_;
};
static GridsWrapper wrapper;
bool RK002_onClock()
{
wrapper.tick();
return true;
}
bool RK002_onStart()
{
wrapper.start();
return true;
}
bool RK002_onStop()
{
wrapper.stop();
return true;
}
bool RK002_onContinue()
{
wrapper.proceed();
return true;
}
bool RK002_onNoteOn(byte channel, byte key, byte velocity)
{
return channel != 9;
}
boolean RK002_onControlChange(byte channel, byte nr, byte value)
{
if (channel == 0)
{
switch(nr)
{
case 0x50:
wrapper.setX(uint8_t(value) << 1);
break;
case 0x51:
wrapper.setY(uint8_t(value) << 1);
break;
case 0x52:
wrapper.setDensity(0, uint8_t(value) << 1);
break;
case 0x53:
wrapper.setDensity(1, uint8_t(value) << 1);
break;
case 0x54:
wrapper.setDensity(2, uint8_t(value) << 1);
break;
case 0x55:
wrapper.setChaos(uint8_t(value) << 1);
break;
case 0x56:
wrapper.setAccent(uint8_t(value) << 1);
break;
case 0x57:
wrapper.setResolution(Resolutions((float(value) / 128.f) * Resolutions::COUNT));
break;
}
return false;
}
return true;
}
void setup()
{
}
void loop()
{
}