Loading...
Logo
Processing Forum
I noticed that in the 0198 revision there is a new thread function added?


+ Addded thread() method that takes a function name as a parameter, 
  and runs it on its own thread. No more classes!


This looks really useful. do i just call thread(myFunction()) and thats that?

:o. can someone give an example of this :P?

Replies(14)

Try it like described. Basically you just supply the name of the function as a String. The thread automatically disappers when your function has finished. So you have to loop inside that function. The example below would change the color of the ellipse ten times with an interval of roughly one second...


              
Copy code
  1. color ellipseColor = color(0, 0, 0);

  2. void setup() {
  3.   size(500, 500);

  4.   thread("rainbow");
  5. }


  6. void draw() {
  7.   fill( ellipseColor );
  8.   ellipseMode(CENTER);
  9.   ellipse(mouseX, mouseY, 10, 10);
  10. }


  11. void rainbow() {
  12.   for (int i = 0; i < 10; i++) {
  13.     ellipseColor = color(random(0,255), random(0,255), random(0,255));

  14.     try {
  15.       Thread.sleep(1000); // delay does not work here
  16.     } catch (Exception e) {
  17.     };
  18.   }
  19. }

Where did you see a 0198 revision? It isn't listed in the download page. Is that an Android only release?
Ah, there is even a 0199 version! We are close of the 2.0...
It works, but how to stop it from outside?
In general, you don't stop a thread from outside, you send a signal (or just set a variable) notifying the thread to stop itself (it just returns).
It could be done with global var.

Copy code
  1. boolean running;
  2. int b = 0;

  3. void setup(){
  4.   thread("addInt");
  5. }

  6. void addInt(){
      running = true;
      while(running){
        b++;
      }
    }

  7. void keyPressed(){
  8.   running = false;
  9. }
Its definitely better then using the class SomeName extends Thread :)
Has anyone successfully made the thread sleep? I don't seem to be able to get it to work?

D.


What have you tried? What do you want to do?
Basically, this didn't seem to work for me:

Thread.sleep(1000); // delay does not work here

Cheers

Dave

Processing user on Google Plus? http://gplus.to/calx
Inside the thread itself? How do you check that? Can you show a simple code demonstrating it?
Just the code above:

Copy code
  1. color ellipseColor = color(0, 0, 0);

  2. void setup() {
  3.   size(500, 500);

  4.   thread("rainbow");
  5. }


  6. void draw() {
  7.   fill( ellipseColor );
  8.   ellipseMode(CENTER);
  9.   ellipse(mouseX, mouseY, 10, 10);
  10. }


  11. void rainbow() {
  12.   for (int i = 0; i < 10; i++) {
  13.     ellipseColor = color(random(0,255), random(0,255), random(0,255));

  14.     try {
  15.       Thread.sleep(1000); // delay does not work here
  16.     } catch (Exception e) {
  17.     };
  18.   }
  19. }
Your program is OK.

The delay is in fact working in that it changes the colour every second for the first 10 seconds. The sleep command will not affect the main loop with the draw command.

The thread will execute for the number of iterations (10) x sleep interval (1000 ms) i.e. 10 seconds after that time the colour does not change.

You can see this if you modify the program slightly to this the time is printed out every 1000 milli seconds.

Copy code
  1. color ellipseColor = color(0, 0, 0);

  2. long time;

  3. void setup() {
  4.   size(500, 500);
  5.   thread("rainbow");
  6. }

  7. void draw() {
  8.   fill( ellipseColor );
  9.   ellipseMode(CENTER);
  10.   ellipse(mouseX, mouseY, 10, 10);
  11.   println(time);
  12. }

  13. void rainbow() {
  14.   for (int i = 0; i < 10; i++) {
  15.     ellipseColor = color(random(0,255), random(0,255), random(0,255));
  16.     time = millis();
  17.     try {
  18.       Thread.sleep(2000); // delay does not work here
  19.     } catch (Exception e) {
  20.       e.printStackTrace();
  21.     };
  22.   }
  23. }


Thankyou, this is exactly what I wanted to know.

D.

Processing user on Google Plus? http://gplus.to/calx