I'm trying to implement a countdown timer into a pre-existing public class and I have a few questions.
An overview: I want to have a timer within a program that counts down from 60 (seconds) once the program is initialized.
If the timer reaches zero, the program quits.
If the user meets certain parameters within the 60 second time frame, the timer resets to 60, presents a new set of parameters, and begins the countdown again. It should be able to do this an infinite number of times, until the user fails to meet parameters within 60 seconds.
There will also be some sort of (TBD) GUI representation of the timer, most likely either numerical countdown or JProgressBar.
I'm semi-new (~3 months) to programming, self-taught, and still learning lots (so be gentle) :)
My questions are:
What is the best way to implement this?
I'm assuming this needs to run in a thread?
Will the timer be easily configurable? (not important, just interesting)
Thanks for your help. If you need to see code, I can find some.
EDIT: Just for some clarification/context: This is for a timed racing video game I'm working on to develop my skills as a programmer. The idea is that a player has 60 seconds to complete a lap. If the player completes a successful lap, the timer resets to 60 seconds and the track changes to be slightly more difficult. The game runs until the player is unable to complete a lap in 60 seconds due to the difficulty. The game records the number of laps as a high score, and asks to player if they would like to try again.
You could use
java.util.Timer
to schedule an execution of a method and then cancel it if the requirements is met.Like this:
And then make a class like this to handle the timerschedule:
If the requirements is met, then do this to stop it from executing:
If you need to update your GUI better to use SwingWorker http://en.wikipedia.org/wiki/SwingWorker I would write something like this:
The best way to impliment timer in your application is using some sheduler frameworks like Quartz
If I were you, I'd use:
AtomicInteger
variable which would keep the current countdown value;decrementAndGet()
the variable, comparing the result to zero and terminating the app if the result is zero;Finally, whenever you need to reset the count back to 60s, you just call
set(newValue)
from any thread.The timer thread's
run()
method could be as simple as:I think it's much easier to get this right than trying to manage multiple
Timer
objects.I know this is way too old a question but for the sake of those that may stumble on this question and are facing the same challenge.
This worked perfectly for me