Technupe
Technupe

Reputation: 4961

I want to implement a timer for a game java?

I want to have a method startTimer(30) where the parameter is the amount of seconds to countdown. How do I do so in Java?

Upvotes: 4

Views: 19930

Answers (4)

ParisaN
ParisaN

Reputation: 2092

Helping presented solution by "Javascript is GOD", I do this, play a game at a specific time.

public static void main(String args[]) {
  boolean flag = true;
  while (flag) {
      new TimerDemo(30);
      game();
    }
}

Notice that the flag variable changes within the game().

Upvotes: 0

Saurabh Gokhale
Saurabh Gokhale

Reputation: 46395

import java.awt.*;
import java.util.Timer;
import java.util.TimerTask;

public class TimerDemo {
  Toolkit toolkit;

  Timer timer;

  public TimerDemo(int seconds) {
    toolkit = Toolkit.getDefaultToolkit();
    timer = new Timer();
    timer.schedule(new RemindTask(), seconds * 1000);
  }

  class RemindTask extends TimerTask {
    public void run() {
      System.out.println("Time's up!");
      toolkit.beep();
      System.exit(0); 
    }
  }

  public static void main(String args[]) {
    System.out.println("About to schedule task.");
    new TimerDemo(30);
    System.out.println("Task scheduled.");
  }
}  

Many helpful links out there.

Upvotes: 2

trashgod
trashgod

Reputation: 205785

java.util.Timer is not a bad choice, but javax.swing.Timer may be more convenient, as seen in this example.

Upvotes: 4

sjr
sjr

Reputation: 9875

The Java 5 way of doing this would be something like:

void startTimer(int delaySeconds) {
  Executors.newSingleThreadScheduledExecutor().schedule(
    runnable,
    delaySeconds,
    TimeUnit.SECONDS);
}

The runnable describes what you want to do. For example:

Runnable runnable = new Runnable() {
  @Override public void run() {
    System.out.println("Hello, world!");
  }
}

Upvotes: 3

Related Questions