The output seems correct but I fail the test with 2 errors
1) The run method does not display the required text.
2) If a player wins, his or her run method should display [getName() + ":won!"]. For example: [Jones:won!].
but my output is:
Gates:Start Game
Smith:Start Game
Gates:Gather resources
Gates:Grow economy
Smith:Gather resources
Gates:Kill enemies
Gates:won!
Smith:lost
Jones:lost
What am I missing?
package com.codegym.task.task16.task1627;
import java.util.ArrayList;
import java.util.List;
public class Solution {
public static void main(String[] args) throws InterruptedException {
OnlineGame onlineGame = new OnlineGame();
onlineGame.start();
}
public static class OnlineGame extends Thread {
public static volatile boolean isWinnerFound = false;
public static List<String> actions = new ArrayList<>();
static {
actions.add("Start Game");
actions.add("Gather resources");
actions.add("Grow economy");
actions.add("Kill enemies");
}
protected Gamer gamer1 = new Gamer("Smith", 3);
protected Gamer gamer2 = new Gamer("Jones", 1);
protected Gamer gamer3 = new Gamer("Gates", 5);
public void run() {
gamer1.start();
gamer2.start();
gamer3.start();
while (!isWinnerFound) {
}
gamer1.interrupt();
gamer2.interrupt();
gamer3.interrupt();
}
}
public static class Gamer extends Thread {
private int rating;
public Gamer(String name, int rating) {
super(name);
this.rating = rating;
}
@Override
public void run() {
while (!OnlineGame.isWinnerFound) {
try {
for (String action : OnlineGame.actions) {
Thread.sleep((long)1000 / rating);
System.out.println(Thread.currentThread().getName() + ":" + action);
if (action.equals("Kill enemies")) {
System.out.println(Thread.currentThread().getName() + ":won!");
OnlineGame.isWinnerFound = true;
break;
}
}
} catch (InterruptedException e) {
System.out.println(Thread.currentThread().getName() + ":lost");
}
}
}
}
}