Hey guys.
i try to validate my solution but for some reason it keeps telling me task is not compiled on the server.
any tips on what i am doing wrong is appreciated.
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() {
try {
while (!OnlineGame.isWinnerFound) {
for (var action : OnlineGame.actions) {
System.out.println(Thread.currentThread().getName() + ": " + action);
Thread.sleep((long) 1000 / rating);
}
System.out.println(getName() + ": won!");
OnlineGame.isWinnerFound = true;
}
} catch (InterruptedException e) {
System.out.println(Thread.currentThread().getName() + ": lost");
}
}
}
}
If you use Eclipse or another IDE I am sure you can find instructions to do the same thing using google.