-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathLearning Sampler.jsfx
194 lines (165 loc) · 4.77 KB
/
Learning Sampler.jsfx
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
desc:Learning Sampler (by Geraint Luff)
in_pin:Left
in_pin:Right
out_pin:Left
out_pin:Right
slider1:50<0,127,1>-Learning switch controller
slider2:1<0,1,1{passthrough,mute}>-Learning audio mode
import ui-lib.jsfx-inc
import synth-framework.jsfx-inc
@init
gfx_ext_retina = 1;
freemem = 0;
freemem = ui_setup(freemem);
freemem = synth_setup(freemem, 1 /* we need one slot for the "learning" flag */);
freemem = (sampler_starts = freemem) + 127;
freemem = (sampler_durations = freemem) + 127;
freemem = (sampler_ref_vel = freemem) + 127;
freemem = (sampler_ref_srate = freemem) + 127;
sampler_buffer = freemem;
sampler_writepos = 0;
attack_samples = 0*srate;
release_samples = 0.01*srate;
@block
synth_block();
@sample
synth_sample();
learning = (synth_controller(slider1) >= 64);
learning_notes = 0;
// Iterate through the active notes
note = synth_note_first();
while (note > 0) (
index = synth_midinote(note);
synth_needs_init(note) ? (
// This is the first time we've seen the note - set the "learning" flag at index 0 (see the call to synth_setup() above)
note[0] = learning;
learning ? (
sampler_starts[index] = sampler_writepos;
sampler_durations[index] = 0;
sampler_ref_vel[index] = synth_velocity(note);
sampler_ref_srate[index] = srate; // Rate at which this sample was recorded
);
);
note[0] ? (
// Learning
synth_release(note) > 0 ? (
// We're done - don't process this note any more
synth_stop(note);
) : (
learning_notes += 1;
// update duration to be the number of samples since the beginning of the note
sampler_durations[index] = synth_attack(note);
);
) : (
// Playback
synth_release(note) > release_samples || synth_attack(note) > sampler_durations[index] ? (
synth_stop(note);
) : (
amp = synth_velocity(note)/sampler_ref_vel[index];
attack_samples && synth_attack(note) < attack_samples ? (
amp *= synth_attack(note)/attack_samples;
);
release_samples && synth_release(note) > 0 ? (
amp *= (1 - synth_release(note)/release_samples);
);
// TODO: pay attention to sampler_ref_srate[index], to vary playback speed
spl0 += amp*sampler_buffer[(sampler_starts[index] + synth_attack(note))*2];
spl1 += amp*sampler_buffer[(sampler_starts[index] + synth_attack(note))*2 + 1];
);
);
note = synth_note_next(note);
);
learning || learning_notes > 0 ? (
learning_notes > 0 ? (
// Only bother writing to the buffer if there are notes actively learning right now
sampler_buffer[sampler_writepos*2] = spl0;
sampler_buffer[sampler_writepos*2 + 1] = spl1;
sampler_writepos += 1;
);
slider2 ? (
spl0 = spl1 = 0;
);
) : (
sampler_writepos = 0;
);
@serialize
// Support reading older versions
serialize_version = 2;
file_var(0, serialize_version);
serialize_version > 16000 ? serialize_version = 1;
s_max_buffer_index = 0;
// Read/write the sampler reference points
i = 0;
while (i < 128) (
file_var(0, sampler_starts[i]);
file_var(0, sampler_durations[i]);
file_var(0, sampler_ref_vel[i]);
serialize_version > 1 ? (
file_var(0, sampler_ref_srate[i]);
) : (
sampler_ref_srate[i] = 0;
);
s_max_buffer_index = max(s_max_buffer_index, sampler_starts[i] + sampler_durations[i]);
i += 1;
);
// Read/write the sampler buffer values
i = 0;
while (i < s_max_buffer_index) (
file_var(0, sampler_buffer[i*2]);
file_var(0, sampler_buffer[i*2 + 1]);
i += 1;
);
@gfx 560 440
function draw_sampler() local(i, length, x, note, index) (
length = 1;
// Find how long the buffer actually is
i = 0;
while (i < 128) (
length = max(length, sampler_starts[i] + sampler_durations[i]);
i += 1;
);
step = ceil(length*0.1/ui_width());
// Draw the waveforms
control_background_technical();
ui_push();
ui_split_topratio(0.5);
ui_color(192, 128, 64);
ui_graph_step(sampler_buffer, length/step, 2*step, -1, 1);
ui_split_next();
ui_color(64, 128, 192);
ui_graph_step(sampler_buffer + 1, length/step, 2*step, -1, 1);
ui_pop();
ui_pop();
ui_push();
ui_retina(1);
// Draw playback positions
ui_color(255, 255, 255, 0.8);
note = synth_note_first();
while (note > 0) (
index = sampler_starts[synth_midinote(note)] + synth_attack(note);
x = ui_left() + ui_width()*index/length;
gfx_line(x, ui_top(), x, ui_bottom());
note = synth_note_next(note);
);
ui_pop();
control_finish_technical();
);
control_start("main", "tron");
ui_screen() == "main" ? (
ui_split_top(50);
ui_pad();
ui_split_leftratio(0.5);
ui_split_right(80);
sprintf(#controller_text, "%i", slider1);
slider1 = control_selector(slider1, #controller_text, min(127, slider1 + 1), max(1, slider1 - 1));
ui_pop();
ui_text("Learn controller:");
ui_split_next();
ui_split_right(50);
slider2 = control_switch(slider2);
ui_pop();
ui_text("Mute when learning:");
ui_pop();
ui_pop();
draw_sampler();
) : ui_system();