forked from next-step/java-racingcar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRacingGame.java
46 lines (37 loc) · 1.11 KB
/
RacingGame.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package controller;
import domain.Car;
import view.InputView;
import view.ResultView;
import java.util.ArrayList;
import java.util.List;
public class RacingGame {
private final List<Car> cars = new ArrayList<>();
private final int numberOfRounds;
public RacingGame(int numberOfCars, int numberOfRounds) {
this.numberOfRounds = numberOfRounds;
generateCars(numberOfCars);
}
private void generateCars(int numberOfCars) {
for (int i = 0; i < numberOfCars; i++) {
cars.add(new Car());
}
}
private void runOneRound() {
for (Car car : cars) {
car.run();
}
}
private void run() {
ResultView.printResult("실행 결과");
for (int i = 0; i < numberOfRounds; i++) {
runOneRound();
ResultView.printResult("");
}
}
public static void main(String[] args) {
int numberOfCars = InputView.getNumberOfCars();
int numberOfRounds = InputView.getNumberOfRounds();
RacingGame game = new RacingGame(numberOfCars, numberOfRounds);
game.run();
}
}