Loading...
Logo
Processing Forum
            Hello,

                  I want be able to control echo effect  with toggle controller, so  I created method echo and after that used controlEvent method, but none of these technique worked for me, I guess I need some kind of setter, but don't know which one, maybe somebody know how to turn off/on echo effect with toggle ?
                                                                                                                                        
                                                                                                                                                  thanks for help
                              
                        

Copy code

  1. import controlP5.*;
  2. import beads.*;

  3. ControlP5 cp5;
  4. AudioContext ac;


  5. WavePlayer wp;
  6. Gain g;
  7. Glide gainGlide;
  8. Glide frequencyGlide;
  9. TapIn delayIn;
  10. TapOut delayOut;
  11. Gain delayGain;

  12. void setup()
  13. {
  14.   size(400, 300);


  15.   cp5 = new ControlP5(this);

  16.   cp5.addToggle("echo")
  17.     .setPosition(40, 250)
  18.       .setSize(50, 20)
  19.         .setValue(true)
  20.           .setMode(ControlP5.SWITCH)
  21.             ;

  22.   ac = new AudioContext();


  23.   gainGlide = new Glide(ac, 0.0, 50);
  24.   frequencyGlide = new Glide(ac, 20, 50);
  25.   wp = new WavePlayer(ac, frequencyGlide, Buffer.SINE);
  26.   g = new Gain(ac, 1, gainGlide);

  27.   g.addInput(wp);

  28.   delayIn = new TapIn(ac, 2000);
  29.   delayIn.addInput(g);
  30.   delayOut = new TapOut(ac, delayIn, 500.0);
  31.   delayGain = new Gain(ac, 1, 0.50);
  32.   delayGain.addInput(delayOut); 

  33.   ac.out.addInput(g);

  34.   // the line which controls echo 
  35.   ac.out.addInput(delayGain);


  36.   ac.start();
  37. }

  38. void draw()
  39. {
  40.   background(0);

  41.   gainGlide.setValue(mouseX / (float)width);
  42.   frequencyGlide.setValue(mouseY);
  43. }

  44. // method to get value of toggle
  45. void echo (boolean theFlag) {
  46.   if (theFlag==true) {

  47.     // ac.out.addInput(delayGain);
  48.   }
  49. }

Replies(2)

You can use the pause() method on any beads ugen to stop it from processing:
Copy code
  1. void echo (boolean theFlag) {
  2.   if (theFlag==true) {
  3.     println("delay off");
  4.     delayOut.pause(true);
  5.   } else {
  6.     println("delay on");
  7.     delayOut.pause(false);
  8.   }
  9. }