/* Primal Psychedelic Guitar Effect version 0.1 (testing) for ChucK programming language Copyright 2008 Kijjasak Triyanond (kijjaz@yahoo.com) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ adc.right => Gain boost_L => Dyno gate => LPF lpf => Dyno comp => PRCRev r => Chorus c1 => SinOsc s1 => Chorus c2 => SinOsc s2 => dac; comp => LPF low => s2; comp => BPF high => s2; adc.left => Gain boost_R => dac; gate.gate(); 0.03 => gate.thresh; 6000 => lpf.freq; comp.compress(); .1 => comp.thresh; .4 => c1.mix => c2.mix; .75 => c1.gain => c2.gain; 1 => s1.sync => s2.sync; low.set(220, 4); high.set(3500, 1); 2 => high.gain; 2 => boost_L.gain; 10 => boost_R.gain; day => now;