«blippoo Box» by olaf

on 23 May'19 23:26 in chaosblippoo boxshift registerimitation

This is a implementation of the blippoo box as it is documented in the article "The Blippoo Box: A Chaotic Electronic Music Instrument, Bent by Design" by Rob Hordijk. i saw on Richard Scotts blippoo box some parameters that are not documented as such in the document so i added them... thats why it has more parameters. I put a Limiter onto the output to make sure it doesn't get too loud.

unfortunately i didn't know how to make the distortion inside the filter that rob describes.

have fun

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
s.options.blockSize = 1;//because it uses feedback its good to have a small block size
s.boot

(

// parameters (a mix of the first blippoo box as documented in the article by Rob Hordijk and the one Richard Scott has)

ControlSpec.specs[\freqOscA] = ControlSpec.specs[\widefreq].copy;
ControlSpec.specs[\freqOscB] = ControlSpec.specs[\widefreq].copy;
ControlSpec.specs[\fm_b_a] = ControlSpec(0, 5000, 10, 0, 0, " Hz");
ControlSpec.specs[\fm_a_b] = ControlSpec(0, 5000, 10, 0, 0, " Hz");
ControlSpec.specs[\fm_r_a] = ControlSpec(0, 5000, 10, 0, 0, " Hz");
ControlSpec.specs[\fm_r_b] = ControlSpec(0, 5000, 10, 0, 0, " Hz");
ControlSpec.specs[\fm_sah_a] = ControlSpec(0, 5000, 10, 0, 0, " Hz");
ControlSpec.specs[\fm_sah_b] = ControlSpec(0, 5000, 10, 0, 0, " Hz");
ControlSpec.specs[\freqPeak1] = ControlSpec.specs[\freq].copy;
ControlSpec.specs[\freqPeak2] = ControlSpec.specs[\freq].copy;
ControlSpec.specs[\fm_r_peak1] = ControlSpec(0, 5000, 10, 0, 0, " Hz");
ControlSpec.specs[\fm_r_peak2] = ControlSpec(0, 5000, 10, 0, 0, " Hz");
ControlSpec.specs[\fm_sah_peak] = ControlSpec(0, 5000, 10, 0, 0, " Hz");
ControlSpec.specs[\resonance] = ControlSpec.specs[\rq].copy;


~rungler = {arg clock,sig; // this is the rumbler as described for the blippoo box
	var buffer = LocalBuf(8);// i am sure it could be implemented without buffer
	var pos = Stepper.ar(clock,0,0,7,1);
	var w = BufWr.ar(sig,buffer,pos);
	var r1 = BufRd.ar(1,buffer,(pos + 5)%8,0,0)>0;
	var r2 = BufRd.ar(1,buffer,(pos + 6)%8,0,0)>0;
	var r3 = BufRd.ar(1,buffer,(pos + 7)%8,0,0)>0;
	(((r1<<0) + (r2<<1) + (r3<<2))/7).lag(1/10000);
};

~twinpeaks = {arg in,f1,f2,r1,r2; // this is the twin peaks filter as described for the blippoo box but without the distortion (unfortunately)
	var l1 = RLPF.ar(in     ,f1.fold(20,20000).lag(0.005),r1);//lag is necessary to make sure the filter stays stable
	var l2 = RLPF.ar(in * -1,f2.fold(20,20000).lag(0.005),r2);
	l1 + l2;
};

Ndef(\blippoo_Box,{|
	freqOscA = 10.46, //frequency oscilator a
	freqOscB = 0.32, //frequency oscilator b
	fm_b_a = 10.02, //fm oscilator b -> oscilator a
	fm_a_b = 2.81, //fm oscilator a -> oscilator b
	fm_r_a = 160.2, //fm rungler2 -> oscilator a
	fm_r_b = 16.27, //fm runglefreqOscA -> oscilator b
	fm_sah_a = 6.14, //fm SampleAndHold -> oscilator a
	fm_sah_b = 6.14, //fm SampleAndHold -> oscilator a

	freqPeak1 = 231.4, //freqency filter 1
	freqPeak2 = 895, //frequency filter 2
	fm_r_peak1 = 1000, //fm rungler1 -> filter 1
	fm_r_peak2 = 3000, //fm rungler2 -> filter 2
	// fm_r_peak = 94.31, //fm rungler2 -> filter 2
	fm_sah_peak = 272.1, //fm rungler2 -> filter 2
	// fm_sah_1 = 10, //fm SampleAndHold -> filter 1
	// fm_sah_2 = 10, //fm SampleAndHold -> filter 2
	resonance = 0.06 //filter resonance
	|

	var fb = LocalIn.ar(5);
	var rfreqOscA = freqOscA + LFNoise2.ar(freqOscA.max(10)/10,freqOscA.max(10)/1000);//add a bit randomness to the frequencies
	var rfreqOscB = freqOscB + LFNoise2.ar(freqOscB.max(10)/10,freqOscB.max(10)/1000);
	var tri1 = LFTri.ar((rfreqOscA + (fb[1] * fm_b_a) + (fb[2] * fm_r_a) + (fb[4] * fm_sah_a)).fold(0,20000));
	var tri2 = LFTri.ar((rfreqOscB + (fb[0] * fm_a_b) + (fb[3] * fm_r_b) + (fb[4] * fm_sah_b)).fold(0,20000));
	var puls1 = tri1>Delay1.ar(tri1);
	var puls2 = tri2>Delay1.ar(tri2);
	var sah = Latch.ar(tri1,puls2).lag(1/10000);
	var rungler1 = ~rungler.(puls1,puls2);
	var rungler2 = ~rungler.(puls2,puls1);
	var rung = rungler1 + rungler2;
	var comparator = ((tri1<tri2)-0.5).lag3ud(1/10000,1/5000);
	var pf1 = (freqPeak1 + (sah * fm_sah_peak * -1) + (rung * fm_r_peak1)).abs;
	var pf2 = (freqPeak2 + (sah * fm_sah_peak) + (rung * fm_r_peak2)).abs;
	var sig = ~twinpeaks.(comparator,pf1,pf2,resonance,resonance);
	var fbout = LocalOut.ar([tri1,tri2,rungler1,rungler2,sah]);
	Out.ar(0,Limiter.ar(sig/100)!2);
});

Ndef('blippoo_Box').set('fm_sah_b', 32.584637770027, 'freqPeak1', 115.59385768307, 'fm_r_peak1', 1022.2025597648, 'freqOscB', 22.699345303073, 'freqOscA', 3.9693859855577, 'fm_r_a', 6.4822052062949, 'freqPeak2', 802.05582789904, 'resonance', 0.053593355607996, 'fm_r_b', 55.467640210437, 'fm_sah_peak', 187.8431927844, 'fm_b_a', 0.0, 'fm_sah_a', 4.1668212367655, 'fm_r_peak2', 669.35696176669, 'fm_a_b', 0.0).gui;

)
raw 4297 chars (focus & ctrl+a+c to copy)
reception
comments