diff --git a/.gitignore b/.gitignore index c4842ec..6ebce18 100755 --- a/.gitignore +++ b/.gitignore @@ -21,3 +21,4 @@ oi grandad/AudioFiles/AudioFiles/Loops/ *.wav *.aif oi grandad/AudioFiles/Loops/ +.DS_Store diff --git a/oi grandad/DspNetworks/CodeLibrary/faust/DelRev1.dsp b/oi grandad/DspNetworks/CodeLibrary/faust/DelRev1.dsp new file mode 100644 index 0000000..2959f0d --- /dev/null +++ b/oi grandad/DspNetworks/CodeLibrary/faust/DelRev1.dsp @@ -0,0 +1,11 @@ +import("stdfaust.lib"); +import("misceffects.lib"); + +nChans = 2; + +process = dm.reverse_echo_demo(nChans); + +reverse_echo_demo(nChans) = ef.reverseEchoN(nChans,delMax) : ef.reverseEchoN(nChans) +with { + delMax = 2^int(nentry("Log2(Delay)",15,12,16,1)); // delay line length +}; \ No newline at end of file diff --git a/oi grandad/DspNetworks/CodeLibrary/faust/DelRev2.dsp b/oi grandad/DspNetworks/CodeLibrary/faust/DelRev2.dsp new file mode 100644 index 0000000..643685f --- /dev/null +++ b/oi grandad/DspNetworks/CodeLibrary/faust/DelRev2.dsp @@ -0,0 +1,11 @@ +import("stdfaust.lib"); +import("misceffects.lib"); + + + +process = dm.reverse_echo_demo(1); + +reverse_echo_demo(nChans) = ef.reverseEchoN(nChans,delMax) : ef.uniformPanToStereo(nChans) +with { + delMax = 2^int(nentry("Log2(Delay)",15,12,16,1)); // delay line length +}; \ No newline at end of file diff --git a/oi grandad/DspNetworks/CodeLibrary/faust/RevDel.dsp b/oi grandad/DspNetworks/CodeLibrary/faust/RevDel.dsp new file mode 100644 index 0000000..ffa1041 --- /dev/null +++ b/oi grandad/DspNetworks/CodeLibrary/faust/RevDel.dsp @@ -0,0 +1,97 @@ +import("stdfaust.lib"); + +//Average filter +filterLength = 500; +movingAvg(x) = par(i, filterLength, x@(i)):>_/filterLength; + +//Delay handle delay +delayAvg = delMs * (ma.SR/1000) : movingAvg; +delSec = delMs / 1000; + +//Measured tape speed= 8ips = 0.203 m/s +//headDist = 0.203 * delSec; //[m] Not used + +//creating an angular frequency +pulse(freq) = os.lf_saw(freq) * (ma.PI); + +//phasenoise frequency is related to drift freq: i want smooth changes->freq has to be lower for +//low freq drift while noise amplitude has to be higher +delDrift1 = sin(sinArg) * ampliSec * ma.SR //Capstan: Observed amplitude = 0.15 ms +with +{ + phaseNoise = (no.noise*5) : fi.lowpass6e(100); //adding noise to phase + freq = 26; + phase = ma.PI * 3/2 + phaseNoise; + sinArg = pulse(freq) + phase; + ampliSec = 0.00015; +}; +delDrift2 = sin(sinArg) * ampliSec * ma.SR //Pinch wheel1: Observed amplitude = 0.15 ms +with +{ + phaseNoise = (no.noise*7) : fi.lowpass6e(35); //adding noise to phase + freq = 5; + phase = 0 + phaseNoise; //not visible in paper + sinArg = pulse(freq) + phase; + ampliSec = 0.00010 * delSec; +}; +delDrift3 = sin(sinArg) * ampliSec * ma.SR //Pinch wheel2: Observed amplitude = 0.75 ms +with +{ + phaseNoise = (no.noise*20) : fi.lowpass6e(20); //adding noise to phase + freq = 2.5; + phase = ma.PI * 3/4 + phaseNoise; + sinArg = pulse(freq) + phase; + ampliSec = 0.00075 * delSec; +}; + +//Noise +delNoise = (no.noise* noiseAmp * ma.SR) : LPfilter +with +{ + //Noise is proportional to head separation. + noiseAmp = 0.00075 * delSec; + LPfilter = fi.lowpass3e(70); +}; + +//0.75 is a factor to make the overall variation level similar to the paper +delayTotal = ((delDrift1 + delDrift2 + delDrift3 + delNoise)*0.75) + delayAvg; + +//Variable comb filter +pole = 0.9999; +filterDel = startFactor + ((endFactor-startFactor) * delSec) : int +with +{ //48000 hardcoded SR, for some reason it does not work with ma.SR + firstNotchFreqStart = 7.5; //[Hz] + firstNotchFreqEnd = 2; + startFactor = 48000/(2 * firstNotchFreqStart); + endFactor = 48000/(2 * firstNotchFreqEnd); +}; +ffComb(delay, pole) = _<:_, _@delay*pole :> _/2; + +delayProcessed = delayTotal : ffComb(filterDel, pole) : int; + +//Actual Delay + feedback +delayFunction(n, d, x) = x @ min(n, max(0, d)); +feedback(x) = (x : tapeSat + x ~ (delay * repeats)) : filter +with +{ + tapeSat = co.limiter_1176_R4_mono; + delay = delayFunction(50000, delayProcessed, x); + filter = fi.lowpass(2,7000); +}; + +//Nonlinear distortion +//amplifier(g) = ef.cubicnl_nodc(g, 0.1); //Not used + +//User params +delMs = hslider("delay(ms)", 300, 1, 1000, 1); +repeats = vslider("feedback[style:knob]", 0.5, 0, 2, 0.01); +//echoLevel = vslider("Echo Volume[style:knob]", 0.5, 0, 1, 0.01); //Not used + +delay_module(dtime,phase) = rwtable(MAX_DELAY,0.0,indexphasor(dtime,phase):int,_,indexphasor(dtime,phase+1):int):window with{ + window = *( sin(0.5*ma.PI* phasor_phase(dtime,phase)/dtime)); +};//init have to be 0.0 floating point +reversedelay_mono(dtime) = _<:delay_module(dtime,0),delay_module(dtime,dtime/2):>_; + +/*Process*/ +process = feedback(_) <: _, _; \ No newline at end of file diff --git a/oi grandad/DspNetworks/CodeLibrary/faust/klp2.dsp b/oi grandad/DspNetworks/CodeLibrary/faust/klp2.dsp index 07fde7b..2959f0d 100644 --- a/oi grandad/DspNetworks/CodeLibrary/faust/klp2.dsp +++ b/oi grandad/DspNetworks/CodeLibrary/faust/klp2.dsp @@ -1,11 +1,11 @@ -declare name "korg35LPF"; -declare description "Demonstration of the Korg 35 LPF"; -declare author "Eric Tarr"; - import("stdfaust.lib"); +import("misceffects.lib"); -Q = hslider("Q",1,0.5,10,0.01); -normFreq = hslider("freq",0.5,0,1,0.001):si.smoo; +nChans = 2; +process = dm.reverse_echo_demo(nChans); -process = ve.korg35LPF(normFreq,Q), ve.korg35LPF(normFreq,Q); +reverse_echo_demo(nChans) = ef.reverseEchoN(nChans,delMax) : ef.reverseEchoN(nChans) +with { + delMax = 2^int(nentry("Log2(Delay)",15,12,16,1)); // delay line length +}; \ No newline at end of file diff --git a/oi grandad/DspNetworks/CodeLibrary/faust/smthdelay.dsp b/oi grandad/DspNetworks/CodeLibrary/faust/smthdelay.dsp index 1943135..ce117b3 100644 --- a/oi grandad/DspNetworks/CodeLibrary/faust/smthdelay.dsp +++ b/oi grandad/DspNetworks/CodeLibrary/faust/smthdelay.dsp @@ -1,13 +1,5 @@ -//----------------------------------------------- -// A 1000 ms Stereo Echo -//----------------------------------------------- -echo(d,f) = + ~ (@(d) : *(f)); +import("stdfaust.lib"); -echo1s = echo(delay,fback) with { - delay = hslider("Delay[OWL:PARAMETER_A]", 0, 0, 1000, 0.10)*millisec; - fback = hslider("Feedback[OWL:PARAMETER_B]", 0, 0, 1, 0.01); - millisec = 48; - }; -process = vgroup("stereoecho", (echo1s, echo1s)); +process = dm.reverse_echo_demo(2); diff --git a/oi grandad/DspNetworks/Networks/DspNetwork.xml b/oi grandad/DspNetworks/Networks/DspNetwork.xml index a37aa40..bc2242c 100644 --- a/oi grandad/DspNetworks/Networks/DspNetwork.xml +++ b/oi grandad/DspNetworks/Networks/DspNetwork.xml @@ -1,12 +1,13 @@ - + + Folded="1" Name="midichain"> - + @@ -41,7 +42,8 @@ - + @@ -54,7 +56,8 @@ - + @@ -64,7 +67,7 @@ - + @@ -77,7 +80,8 @@ - + @@ -90,7 +94,7 @@ - + @@ -125,7 +129,8 @@ - + @@ -138,7 +143,8 @@ - + @@ -153,9 +159,9 @@ + Folded="1" Name="chain"> - + @@ -168,7 +174,7 @@ - + @@ -179,7 +185,8 @@ - + - + @@ -208,7 +215,7 @@ - + @@ -220,11 +227,12 @@ - + - + - + @@ -237,7 +245,7 @@ - + @@ -245,7 +253,7 @@ - + @@ -265,7 +273,7 @@ - + @@ -281,7 +289,8 @@ - + @@ -291,7 +300,7 @@ - + @@ -312,12 +321,13 @@ - + - + @@ -331,9 +341,10 @@ + Bypassed="0" Name="softbypass_switch3"> - + @@ -355,17 +366,18 @@ + Bypassed="0" Name="sb_container"> + Bypassed="0" Name="sb1"> - + - + @@ -396,11 +408,12 @@ - + - + - + @@ -413,12 +426,12 @@ - + - + @@ -431,9 +444,10 @@ - + - + @@ -446,12 +460,12 @@ - + - + @@ -464,9 +478,10 @@ - + - + @@ -479,12 +494,12 @@ - + - + @@ -497,9 +512,10 @@ - + - + @@ -512,12 +528,12 @@ - + - + @@ -533,10 +549,7 @@ - - - - + @@ -544,16 +557,6 @@ - - - - - - - - - - @@ -568,11 +571,11 @@ + Bypassed="0" Name="sb2"> - + - + @@ -603,11 +606,12 @@ - + - + - + @@ -620,27 +624,28 @@ - + - + + SkewFactor="5.422270774841309" ID="ResetValue" Value="-100.0"/> - + - + @@ -653,12 +658,12 @@ - + - + @@ -671,9 +676,10 @@ - + - + @@ -686,12 +692,12 @@ - + - + @@ -704,9 +710,10 @@ - + - + @@ -719,12 +726,12 @@ - + - + @@ -740,10 +747,7 @@ - - - - + @@ -751,11 +755,6 @@ - - - - - diff --git a/oi grandad/DspNetworks/Networks/GranularWithMod.xml b/oi grandad/DspNetworks/Networks/GranularWithMod.xml index 3f53487..e5adbfd 100644 --- a/oi grandad/DspNetworks/Networks/GranularWithMod.xml +++ b/oi grandad/DspNetworks/Networks/GranularWithMod.xml @@ -2,15 +2,16 @@ + ShowParameters="1" Name="GranularWithMod"> - + - + - + - + @@ -23,7 +24,7 @@ - + @@ -36,11 +37,11 @@ - + - + - + @@ -56,7 +57,8 @@ - + @@ -66,7 +68,7 @@ - + @@ -79,9 +81,9 @@ - + - + @@ -94,7 +96,7 @@ - + @@ -107,9 +109,9 @@ - + - + @@ -122,7 +124,7 @@ - + @@ -135,9 +137,9 @@ - + - + @@ -150,7 +152,7 @@ - + @@ -163,9 +165,9 @@ - + - + @@ -178,7 +180,7 @@ - + @@ -194,7 +196,7 @@ - + @@ -243,9 +245,10 @@ + Bypassed="0" Name="softbypass_switch3"> - + @@ -267,13 +270,13 @@ + Bypassed="0" Name="sb_container"> + Bypassed="0" Name="sb1"> @@ -281,9 +284,9 @@ + Bypassed="0" Name="sb2"> - + diff --git a/oi grandad/DspNetworks/Networks/Proc.xml b/oi grandad/DspNetworks/Networks/Proc.xml index 10f3539..ddedb61 100644 --- a/oi grandad/DspNetworks/Networks/Proc.xml +++ b/oi grandad/DspNetworks/Networks/Proc.xml @@ -1,14 +1,17 @@ - + - + + Bypassed="0" Name="softbypass_switch6"> - + @@ -50,20 +53,20 @@ + Bypassed="0" Name="sb_container"> + Bypassed="0" Name="sb1"> - + - + + NodeColour="4282863026" Name="global_cable"> @@ -71,7 +74,7 @@ - + @@ -79,9 +82,9 @@ - + - + @@ -102,7 +105,7 @@ - + @@ -110,14 +113,14 @@ - + - + @@ -129,7 +132,8 @@ - + @@ -143,9 +147,9 @@ ID="cutdest" Automated="1"/> - + - + @@ -153,9 +157,10 @@ ID="voldest" Automated="1"/> - + - + @@ -188,7 +193,7 @@ - + @@ -204,7 +209,7 @@ - + @@ -219,14 +224,15 @@ + Bypassed="0" Name="sb4"> - + - + + NodeColour="4282863026" Name="global_cable2"> @@ -234,7 +240,7 @@ - + @@ -242,9 +248,9 @@ - + - + @@ -265,7 +271,7 @@ - + @@ -273,14 +279,15 @@ - + - + @@ -294,7 +301,7 @@ ID="cutdest" Automated="1"/> - + @@ -306,9 +313,9 @@ - + - + @@ -316,9 +323,10 @@ ID="voldest" Automated="1"/> - + - + @@ -353,7 +361,7 @@ - + @@ -369,7 +377,7 @@ - + @@ -384,9 +392,9 @@ + Bypassed="0" Name="sb3"> - + @@ -398,7 +406,8 @@ - + @@ -412,12 +421,13 @@ ID="cutdest" Automated="1"/> - + - + + NodeColour="4282863026" Name="global_cable1"> @@ -425,7 +435,7 @@ - + @@ -433,9 +443,9 @@ - + - + @@ -456,7 +466,7 @@ - + @@ -464,16 +474,16 @@ - + - + - + @@ -481,9 +491,10 @@ ID="voldest" Automated="1"/> - + - + @@ -518,7 +529,7 @@ - + @@ -534,7 +545,7 @@ - + @@ -549,14 +560,15 @@ + Bypassed="0" Name="sb5"> - + - + + NodeColour="4282863026" Name="global_cable3"> @@ -564,7 +576,7 @@ - + @@ -572,9 +584,9 @@ - + - + @@ -595,7 +607,7 @@ - + @@ -603,14 +615,14 @@ - + - + @@ -622,9 +634,9 @@ - + - + @@ -632,9 +644,10 @@ ID="voldest" Automated="1"/> - + - + @@ -669,7 +682,7 @@ - + @@ -685,7 +698,7 @@ - + @@ -693,7 +706,7 @@ ID="pandest" Automated="1"/> - + @@ -715,14 +728,15 @@ + Bypassed="0" Name="sb6"> - + - + + NodeColour="4282863026" Name="global_cable4"> @@ -730,7 +744,7 @@ - + @@ -738,9 +752,9 @@ - + - + @@ -761,7 +775,7 @@ - + @@ -769,14 +783,14 @@ - + - + @@ -791,7 +805,7 @@ - + @@ -803,9 +817,9 @@ - + - + @@ -813,9 +827,10 @@ ID="voldest" Automated="1"/> - + - + @@ -850,7 +865,7 @@ - + @@ -866,7 +881,7 @@ - + @@ -881,9 +896,9 @@ + Bypassed="0" Name="sb7"> - + @@ -895,7 +910,7 @@ - + @@ -910,12 +925,13 @@ - + - + + NodeColour="4282863026" Name="global_cable5"> @@ -923,7 +939,7 @@ - + @@ -931,9 +947,9 @@ - + - + @@ -954,7 +970,7 @@ - + @@ -962,16 +978,16 @@ - + - + - + @@ -979,9 +995,10 @@ ID="voldest" Automated="1"/> - + - + @@ -1016,7 +1033,7 @@ - + @@ -1032,7 +1049,7 @@ - + diff --git a/oi grandad/DspNetworks/Networks/Proc2.xml b/oi grandad/DspNetworks/Networks/Proc2.xml index 664e482..6161b35 100644 --- a/oi grandad/DspNetworks/Networks/Proc2.xml +++ b/oi grandad/DspNetworks/Networks/Proc2.xml @@ -1,12 +1,14 @@ - + + Bypassed="0" Name="softbypass_switch6"> - + @@ -48,20 +50,20 @@ + Bypassed="0" Name="sb_container"> + Bypassed="0" Name="sb1"> - + - + + NodeColour="4282862770" Name="global_cable"> @@ -69,7 +71,7 @@ - + @@ -77,9 +79,9 @@ - + - + @@ -100,7 +102,7 @@ - + @@ -108,14 +110,14 @@ - + - + @@ -127,7 +129,8 @@ - + @@ -141,9 +144,9 @@ ID="cutdest" Automated="1"/> - + - + @@ -151,9 +154,10 @@ ID="voldest" Automated="1"/> - + - + @@ -188,7 +192,7 @@ - + @@ -204,7 +208,7 @@ - + @@ -219,14 +223,15 @@ + Bypassed="0" Name="sb4"> - + - + + NodeColour="4282862770" Name="global_cable2"> @@ -234,7 +239,7 @@ - + @@ -242,9 +247,9 @@ - + - + @@ -265,7 +270,7 @@ - + @@ -273,14 +278,15 @@ - + - + @@ -294,7 +300,7 @@ ID="cutdest" Automated="1"/> - + @@ -306,9 +312,9 @@ - + - + @@ -316,9 +322,10 @@ ID="voldest" Automated="1"/> - + - + @@ -353,7 +360,7 @@ - + @@ -369,7 +376,7 @@ - + @@ -384,9 +391,9 @@ + Bypassed="0" Name="sb3"> - + @@ -398,7 +405,8 @@ - + @@ -412,12 +420,13 @@ ID="cutdest" Automated="1"/> - + - + + NodeColour="4282862770" Name="global_cable1"> @@ -425,7 +434,7 @@ - + @@ -433,9 +442,9 @@ - + - + @@ -456,7 +465,7 @@ - + @@ -464,16 +473,16 @@ - + - + - + @@ -481,9 +490,10 @@ ID="voldest" Automated="1"/> - + - + @@ -518,7 +528,7 @@ - + @@ -534,7 +544,7 @@ - + @@ -549,14 +559,15 @@ + Bypassed="0" Name="sb5"> - + - + + NodeColour="4282862770" Name="global_cable3"> @@ -564,7 +575,7 @@ - + @@ -572,9 +583,9 @@ - + - + @@ -595,7 +606,7 @@ - + @@ -603,14 +614,14 @@ - + - + @@ -622,9 +633,9 @@ - + - + @@ -632,9 +643,10 @@ ID="voldest" Automated="1"/> - + - + @@ -669,7 +681,7 @@ - + @@ -685,7 +697,7 @@ - + @@ -693,7 +705,7 @@ ID="pandest" Automated="1"/> - + @@ -715,14 +727,15 @@ + Bypassed="0" Name="sb6"> - + - + + NodeColour="4282862770" Name="global_cable4"> @@ -730,7 +743,7 @@ - + @@ -738,9 +751,9 @@ - + - + @@ -761,7 +774,7 @@ - + @@ -769,14 +782,14 @@ - + - + @@ -791,7 +804,7 @@ - + @@ -803,9 +816,9 @@ - + - + @@ -813,9 +826,10 @@ ID="voldest" Automated="1"/> - + - + @@ -850,7 +864,7 @@ - + @@ -866,7 +880,7 @@ - + @@ -881,9 +895,9 @@ + Bypassed="0" Name="sb7"> - + @@ -895,7 +909,7 @@ - + @@ -910,12 +924,13 @@ - + - + + NodeColour="4282862770" Name="global_cable5"> @@ -923,7 +938,7 @@ - + @@ -931,9 +946,9 @@ - + - + @@ -954,7 +969,7 @@ - + @@ -962,16 +977,16 @@ - + - + - + @@ -979,9 +994,10 @@ ID="voldest" Automated="1"/> - + - + @@ -1016,7 +1032,7 @@ - + @@ -1032,7 +1048,7 @@ - + diff --git a/oi grandad/DspNetworks/Networks/Proc3.xml b/oi grandad/DspNetworks/Networks/Proc3.xml index 7de258a..1b9bbc9 100644 --- a/oi grandad/DspNetworks/Networks/Proc3.xml +++ b/oi grandad/DspNetworks/Networks/Proc3.xml @@ -1,12 +1,14 @@ - + + Bypassed="0" Name="softbypass_switch6"> - + @@ -48,20 +50,20 @@ + Bypassed="0" Name="sb_container"> + Bypassed="0" Name="sb1"> - + - + + NodeColour="4282928306" Name="global_cable"> @@ -69,7 +71,7 @@ - + @@ -77,9 +79,9 @@ - + - + @@ -100,7 +102,7 @@ - + @@ -108,14 +110,14 @@ - + - + @@ -127,7 +129,8 @@ - + @@ -141,9 +144,9 @@ ID="cutdest" Automated="1"/> - + - + @@ -151,9 +154,10 @@ ID="voldest" Automated="1"/> - + - + @@ -188,7 +192,7 @@ - + @@ -204,7 +208,7 @@ - + @@ -219,14 +223,15 @@ + Bypassed="0" Name="sb4"> - + - + + NodeColour="4282928306" Name="global_cable2"> @@ -234,7 +239,7 @@ - + @@ -242,9 +247,9 @@ - + - + @@ -265,7 +270,7 @@ - + @@ -273,14 +278,15 @@ - + - + @@ -294,7 +300,7 @@ ID="cutdest" Automated="1"/> - + @@ -306,9 +312,9 @@ - + - + @@ -316,9 +322,10 @@ ID="voldest" Automated="1"/> - + - + @@ -353,7 +360,7 @@ - + @@ -369,7 +376,7 @@ - + @@ -384,9 +391,9 @@ + Bypassed="0" Name="sb3"> - + @@ -398,7 +405,8 @@ - + @@ -412,12 +420,13 @@ ID="cutdest" Automated="1"/> - + - + + NodeColour="4282928306" Name="global_cable1"> @@ -425,7 +434,7 @@ - + @@ -433,9 +442,9 @@ - + - + @@ -456,7 +465,7 @@ - + @@ -464,16 +473,16 @@ - + - + - + @@ -481,9 +490,10 @@ ID="voldest" Automated="1"/> - + - + @@ -518,7 +528,7 @@ - + @@ -534,7 +544,7 @@ - + @@ -549,14 +559,15 @@ + Bypassed="0" Name="sb5"> - + - + + NodeColour="4282928306" Name="global_cable3"> @@ -564,7 +575,7 @@ - + @@ -572,9 +583,9 @@ - + - + @@ -595,7 +606,7 @@ - + @@ -603,14 +614,14 @@ - + - + @@ -622,9 +633,9 @@ - + - + @@ -632,9 +643,10 @@ ID="voldest" Automated="1"/> - + - + @@ -669,7 +681,7 @@ - + @@ -685,7 +697,7 @@ - + @@ -693,7 +705,7 @@ ID="pandest" Automated="1"/> - + @@ -715,14 +727,15 @@ + Bypassed="0" Name="sb6"> - + - + + NodeColour="4282928306" Name="global_cable4"> @@ -730,7 +743,7 @@ - + @@ -738,9 +751,9 @@ - + - + @@ -761,7 +774,7 @@ - + @@ -769,14 +782,14 @@ - + - + @@ -791,7 +804,7 @@ - + @@ -803,9 +816,9 @@ - + - + @@ -813,9 +826,10 @@ ID="voldest" Automated="1"/> - + - + @@ -850,7 +864,7 @@ - + @@ -866,7 +880,7 @@ - + @@ -881,9 +895,9 @@ + Bypassed="0" Name="sb7"> - + @@ -895,7 +909,7 @@ - + @@ -910,12 +924,13 @@ - + - + + NodeColour="4282928306" Name="global_cable5"> @@ -923,7 +938,7 @@ - + @@ -931,9 +946,9 @@ - + - + @@ -954,7 +969,7 @@ - + @@ -962,16 +977,16 @@ - + - + - + @@ -979,9 +994,10 @@ ID="voldest" Automated="1"/> - + - + @@ -1016,7 +1032,7 @@ - + @@ -1032,7 +1048,7 @@ - + diff --git a/oi grandad/DspNetworks/Networks/Proc4.xml b/oi grandad/DspNetworks/Networks/Proc4.xml index 4a8c1a5..b21b527 100644 --- a/oi grandad/DspNetworks/Networks/Proc4.xml +++ b/oi grandad/DspNetworks/Networks/Proc4.xml @@ -1,12 +1,14 @@ - + + Bypassed="0" Name="softbypass_switch6"> - + @@ -48,20 +50,20 @@ + Bypassed="0" Name="sb_container"> + Bypassed="0" Name="sb1"> - + - + + NodeColour="4282862770" Name="global_cable"> @@ -69,7 +71,7 @@ - + @@ -77,9 +79,9 @@ - + - + @@ -100,7 +102,7 @@ - + @@ -108,14 +110,14 @@ - + - + @@ -127,7 +129,8 @@ - + @@ -141,9 +144,9 @@ ID="cutdest" Automated="1"/> - + - + @@ -151,9 +154,10 @@ ID="voldest" Automated="1"/> - + - + @@ -188,7 +192,7 @@ - + @@ -204,7 +208,7 @@ - + @@ -219,14 +223,15 @@ + Bypassed="0" Name="sb4"> - + - + + NodeColour="4282862770" Name="global_cable2"> @@ -234,7 +239,7 @@ - + @@ -242,9 +247,9 @@ - + - + @@ -265,7 +270,7 @@ - + @@ -273,14 +278,15 @@ - + - + @@ -294,7 +300,7 @@ ID="cutdest" Automated="1"/> - + @@ -306,9 +312,9 @@ - + - + @@ -316,9 +322,10 @@ ID="voldest" Automated="1"/> - + - + @@ -353,7 +360,7 @@ - + @@ -369,7 +376,7 @@ - + @@ -384,9 +391,9 @@ + Bypassed="0" Name="sb3"> - + @@ -398,7 +405,8 @@ - + @@ -412,12 +420,13 @@ ID="cutdest" Automated="1"/> - + - + + NodeColour="4282862770" Name="global_cable1"> @@ -425,7 +434,7 @@ - + @@ -433,9 +442,9 @@ - + - + @@ -456,7 +465,7 @@ - + @@ -464,16 +473,16 @@ - + - + - + @@ -481,9 +490,10 @@ ID="voldest" Automated="1"/> - + - + @@ -518,7 +528,7 @@ - + @@ -534,7 +544,7 @@ - + @@ -549,14 +559,15 @@ + Bypassed="0" Name="sb5"> - + - + + NodeColour="4282862770" Name="global_cable3"> @@ -564,7 +575,7 @@ - + @@ -572,9 +583,9 @@ - + - + @@ -595,7 +606,7 @@ - + @@ -603,14 +614,14 @@ - + - + @@ -622,9 +633,9 @@ - + - + @@ -632,9 +643,10 @@ ID="voldest" Automated="1"/> - + - + @@ -669,7 +681,7 @@ - + @@ -685,7 +697,7 @@ - + @@ -693,7 +705,7 @@ ID="pandest" Automated="1"/> - + @@ -715,14 +727,15 @@ + Bypassed="0" Name="sb6"> - + - + + NodeColour="4282862770" Name="global_cable4"> @@ -730,7 +743,7 @@ - + @@ -738,9 +751,9 @@ - + - + @@ -761,7 +774,7 @@ - + @@ -769,14 +782,14 @@ - + - + @@ -791,7 +804,7 @@ - + @@ -803,9 +816,9 @@ - + - + @@ -813,9 +826,10 @@ ID="voldest" Automated="1"/> - + - + @@ -850,7 +864,7 @@ - + @@ -866,7 +880,7 @@ - + @@ -881,9 +895,9 @@ + Bypassed="0" Name="sb7"> - + @@ -895,7 +909,7 @@ - + @@ -910,12 +924,13 @@ - + - + + NodeColour="4282862770" Name="global_cable5"> @@ -923,7 +938,7 @@ - + @@ -931,9 +946,9 @@ - + - + @@ -954,7 +969,7 @@ - + @@ -962,16 +977,16 @@ - + - + - + @@ -979,9 +994,10 @@ ID="voldest" Automated="1"/> - + - + @@ -1016,7 +1032,7 @@ - + @@ -1032,7 +1048,7 @@ - + diff --git a/oi grandad/DspNetworks/Networks/dlay.xml b/oi grandad/DspNetworks/Networks/dlay.xml new file mode 100644 index 0000000..07b06f8 --- /dev/null +++ b/oi grandad/DspNetworks/Networks/dlay.xml @@ -0,0 +1,1017 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/oi grandad/DspNetworks/Networks/track.xml b/oi grandad/DspNetworks/Networks/track.xml index ab72914..1724e8d 100644 --- a/oi grandad/DspNetworks/Networks/track.xml +++ b/oi grandad/DspNetworks/Networks/track.xml @@ -1,14 +1,16 @@ - + - + - + + NodeColour="4282863026" Name="global_cable"> @@ -19,7 +21,7 @@ - + @@ -48,7 +50,7 @@ + SkewFactor="5.422270774841309" Value="-30.09999895840884" DefaultValue="-30.09999895840885"> diff --git a/oi grandad/DspNetworks/Networks/track2.xml b/oi grandad/DspNetworks/Networks/track2.xml index 0f46e82..cafe1ae 100644 --- a/oi grandad/DspNetworks/Networks/track2.xml +++ b/oi grandad/DspNetworks/Networks/track2.xml @@ -1,14 +1,16 @@ - + - + - + + NodeColour="4282862770" Name="global_cable"> @@ -19,7 +21,7 @@ - + diff --git a/oi grandad/DspNetworks/Networks/track3.xml b/oi grandad/DspNetworks/Networks/track3.xml index 1d8e0da..4d57db8 100644 --- a/oi grandad/DspNetworks/Networks/track3.xml +++ b/oi grandad/DspNetworks/Networks/track3.xml @@ -1,14 +1,16 @@ - + - + - + + NodeColour="4282928306" Name="global_cable"> @@ -19,7 +21,7 @@ - + diff --git a/oi grandad/DspNetworks/Networks/track4.xml b/oi grandad/DspNetworks/Networks/track4.xml index 66a0ebc..92a08e7 100644 --- a/oi grandad/DspNetworks/Networks/track4.xml +++ b/oi grandad/DspNetworks/Networks/track4.xml @@ -1,14 +1,16 @@ - + - + - + + NodeColour="4282862770" Name="global_cable1"> @@ -22,7 +24,7 @@ - + diff --git a/oi grandad/DspNetworks/Networks/vec1b.xml b/oi grandad/DspNetworks/Networks/vec1b.xml index c217a6c..178deab 100644 --- a/oi grandad/DspNetworks/Networks/vec1b.xml +++ b/oi grandad/DspNetworks/Networks/vec1b.xml @@ -1,10 +1,10 @@ - + + NodeColour="4282954323" Name="global_cable"> @@ -15,7 +15,7 @@ - + diff --git a/oi grandad/DspNetworks/Networks/vec2b.xml b/oi grandad/DspNetworks/Networks/vec2b.xml index 70a31b2..96c2212 100644 --- a/oi grandad/DspNetworks/Networks/vec2b.xml +++ b/oi grandad/DspNetworks/Networks/vec2b.xml @@ -1,10 +1,10 @@ - + + NodeColour="4282930098" Name="global_cable"> @@ -15,7 +15,7 @@ - + diff --git a/oi grandad/DspNetworks/Networks/vec3.xml b/oi grandad/DspNetworks/Networks/vec3.xml index ce8fa74..b7c29a3 100644 --- a/oi grandad/DspNetworks/Networks/vec3.xml +++ b/oi grandad/DspNetworks/Networks/vec3.xml @@ -1,10 +1,10 @@ - + + NodeColour="4282864562" Name="global_cable1"> @@ -15,7 +15,7 @@ - + diff --git a/oi grandad/DspNetworks/Networks/vec4.xml b/oi grandad/DspNetworks/Networks/vec4.xml index e2602a9..e7c632b 100644 --- a/oi grandad/DspNetworks/Networks/vec4.xml +++ b/oi grandad/DspNetworks/Networks/vec4.xml @@ -1,12 +1,12 @@ - + - + + NodeColour="4282864818" Name="global_cable1"> @@ -17,7 +17,7 @@ - + diff --git a/oi grandad/DspNetworks/Networks/vecfade.xml b/oi grandad/DspNetworks/Networks/vecfade.xml index 875eea2..77b3f9c 100644 --- a/oi grandad/DspNetworks/Networks/vecfade.xml +++ b/oi grandad/DspNetworks/Networks/vecfade.xml @@ -1,14 +1,17 @@ - + - + + Bypassed="0" Name="softbypass_switch6"> - + @@ -39,7 +42,7 @@ - + @@ -56,19 +59,19 @@ + Bypassed="0" Name="sb_container1"> + Bypassed="0" Name="sb5"> - + - + - + @@ -81,7 +84,7 @@ - + @@ -112,12 +115,13 @@ - + - + + Bypassed="0" Name="smoothed_parameter41"> @@ -132,7 +136,7 @@ + NodeColour="4282954323" Name="global_cable40"> @@ -143,10 +147,10 @@ - + + Bypassed="0" Name="smoothed_parameter42"> @@ -161,7 +165,7 @@ + NodeColour="4282930098" Name="global_cable41"> @@ -172,10 +176,10 @@ - + + Bypassed="0" Name="smoothed_parameter43"> @@ -190,7 +194,7 @@ + NodeColour="4282864562" Name="global_cable42"> @@ -201,10 +205,10 @@ - + + Bypassed="0" Name="smoothed_parameter44"> @@ -219,7 +223,7 @@ + NodeColour="4282864818" Name="global_cable43"> @@ -243,13 +247,13 @@ + Bypassed="0" Name="sb6"> - + - + - + @@ -262,7 +266,7 @@ - + @@ -293,12 +297,13 @@ - + - + + Bypassed="0" Name="smoothed_parameter33"> @@ -313,7 +318,7 @@ + NodeColour="4282954323" Name="global_cable32"> @@ -324,10 +329,10 @@ - + + Bypassed="0" Name="smoothed_parameter34"> @@ -342,7 +347,7 @@ + NodeColour="4282930098" Name="global_cable33"> @@ -353,10 +358,10 @@ - + + Bypassed="0" Name="smoothed_parameter35"> @@ -371,7 +376,7 @@ + NodeColour="4282864562" Name="global_cable34"> @@ -382,10 +387,10 @@ - + + Bypassed="0" Name="smoothed_parameter36"> @@ -400,7 +405,7 @@ + NodeColour="4282864818" Name="global_cable35"> @@ -424,13 +429,14 @@ + Bypassed="0" Name="sb7"> - + - + - + @@ -443,7 +449,7 @@ - + @@ -474,12 +480,13 @@ - + - + + Bypassed="0" Name="smoothed_parameter17"> @@ -494,7 +501,7 @@ + NodeColour="4282954323" Name="global_cable16"> @@ -505,10 +512,10 @@ - + + Bypassed="0" Name="smoothed_parameter18"> @@ -523,7 +530,7 @@ + NodeColour="4282930098" Name="global_cable17"> @@ -534,10 +541,10 @@ - + + Bypassed="0" Name="smoothed_parameter19"> @@ -552,7 +559,7 @@ + NodeColour="4282864562" Name="global_cable18"> @@ -563,10 +570,10 @@ - + + Bypassed="0" Name="smoothed_parameter20"> @@ -581,7 +588,7 @@ + NodeColour="4282864818" Name="global_cable19"> @@ -605,13 +612,13 @@ + Bypassed="0" Name="sb8"> - + - + - + @@ -624,7 +631,7 @@ - + @@ -655,12 +662,13 @@ - + - + + Bypassed="0" Name="smoothed_parameter25"> @@ -675,7 +683,7 @@ + NodeColour="4282954323" Name="global_cable24"> @@ -686,10 +694,10 @@ - + + Bypassed="0" Name="smoothed_parameter26"> @@ -704,7 +712,7 @@ + NodeColour="4282930098" Name="global_cable25"> @@ -715,10 +723,10 @@ - + + Bypassed="0" Name="smoothed_parameter27"> @@ -733,7 +741,7 @@ + NodeColour="4282864562" Name="global_cable26"> @@ -744,10 +752,10 @@ - + + Bypassed="0" Name="smoothed_parameter28"> @@ -762,7 +770,7 @@ + NodeColour="4282864818" Name="global_cable27"> diff --git a/oi grandad/Presets/oi grandad.hip b/oi grandad/Presets/oi grandad.hip index f8afdad..5ca7ead 100644 Binary files a/oi grandad/Presets/oi grandad.hip and b/oi grandad/Presets/oi grandad.hip differ