I would call a simple thread in my class but when i call it the application crash. this is the Thread:
private void startGame() {
new Thread(new Runnable() {
public void run() {
while (isGiocoAttivo()) {
try {
Thread.sleep(velocitaDiGioco);
accendiBomba();
} catch (InterruptedException ex) {
}
}
}
}).start();
}
How can i solve it? The method accendiBomba:
private void accendiBomba() {
try {
do {
this.x = (int) Math.round(Math.random() * (righe - 1));
this.y = (int) Math.round(Math.random() * (colonne - 1));
} while (!this.action(this.x, this.y));
} catch (CampoException ex) {
}
}