We are about to switch to a new forum software. Until then we have removed the registration on this forum.
I'm trying to make Processing do what I tell it to at certain intervals but when I tested just changing the background color, the timer started to not work properly. The timer only functions properly when the background is set to #FFFFFF. How do I remove that background without breaking my timer??
StopWatchTimer sw2;
int timer;
void setup() {
size(400, 400);
println (millis());
sw2 = new StopWatchTimer();
sw2.start();
}
void draw () {
time();
}
void time() {
//PROBLEM AREA
//background(#FFFFFF);
if (millis() - timer >= 2000) {
background(random(255));
timer = millis();
}
fill(#000000);
text(nf(sw2.minute(), 2)+":"+nf(sw2.second(), 2), 300, 25);
}
class StopWatchTimer {
int startTime = 0, stopTime = 0;
boolean running = false;
void start() {
startTime = millis();
running = true;
}
void stop() {
stopTime = millis();
running = false;
}
int getElapsedTime() {
int elapsed;
if (running) {
elapsed = (millis() - startTime);
}
else {
elapsed = (stopTime - startTime);
}
return elapsed;
}
int second() {
return (getElapsedTime() / 1000) % 60;
}
int minute() {
return (getElapsedTime() / (1000*60)) % 60;
}
}
Answers
Modify your time() function like this:
Kf
The method I was using wasn't working when I tried to display images, because the code just flashes the image every x amount of seconds instead of displaying an image permanently after a certain amount of time. I tried looking for other methods in the forum and started playing with this one I'll post below, but there's an error every time I run it. Is this method I'm trying more effective than the one above for displaying an image after x amount of time? If it is, how do I make it accept images?
There ae a couple of things with your code...
Line 16 should be call=loadImage(...);
Line 35 looks :-? like it might not work because you are changing m inside the block constantly (ok, you are going back and forth between state blocks) and I don't think it will work. The value should be updated only after certain elapse time has expired. I am going to try to make changes (not tested) below.
Kf
P.S. Notice I changed the inequality in the conditionals
PImage call;
Thank you that was so helpful!!!
You can use my library - https://github.com/Lord-of-the-Galaxy/Timing-Utilities
Thank you guys for your help so far! I'm sorry I keep coming back to this question but I keep getting stuck as I try to trigger different kinds of events through the timer. I'm trying to use the box2d library and initiate boxes falling after a certain period of time, but I can only seem to control the background, not the boxes getting drawn. Do you have any idea what section I should be targeting that's not in draw? Here's what I have:
Here's the boundary section:
And here's Square:
I remember there being something like destroy or something that must be called to remove an object from the world.