-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathLottoController.java
More file actions
68 lines (58 loc) · 1.96 KB
/
Copy pathLottoController.java
File metadata and controls
68 lines (58 loc) · 1.96 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
package lotto.controller;
import lotto.service.Calculator;
import lotto.service.LottoService;
import lotto.utils.ErrorConstants;
import lotto.utils.RandomNumber;
import lotto.utils.Validator;
import lotto.view.InputView;
import lotto.view.OutputView;
import java.util.List;
public class LottoController {
InputView inputView;
OutputView outputView;
Calculator calculator;
LottoService lottoService;
private int money;
private double profit;
public LottoController(InputView inputView, OutputView outputView, Calculator calculator, LottoService lottoService) {
this.inputView = inputView;
this.outputView = outputView;
this.calculator = calculator;
this.lottoService = lottoService;
}
public void run() {
initialize();
execute();
printResult();
}
private void initialize() {
this.money = inputView.insertMoney();
outputView.newLine();
List<List<Integer>> lottos = RandomNumber.pickNumbers(calculator.calculateSheet(money));
outputView.printLotto(lottos);
outputView.newLine();
List<Integer> numbers = inputView.selectNumber();
outputView.newLine();
int bonusNumber = readBonusNumber(numbers);
outputView.newLine();
lottoService.init(lottos, numbers, bonusNumber);
}
private void execute() {
lottoService.matchNumber();
profit = calculator.calculateProfit(money, lottoService.getResult());
}
private void printResult() {
outputView.printStats(lottoService.getResult(), profit);
}
private int readBonusNumber(List<Integer> numbers) {
int bn;
while (true) {
try {
bn = Validator.checkDistinctBonusNumber(inputView.selectBonusNumber(), numbers);
return bn;
} catch (IllegalArgumentException e) {
System.out.println(ErrorConstants.INPUT_ERROR.getMessage());
}
}
}
}