forked from next-step/java-lotto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathManualResultView.java
74 lines (59 loc) · 3.63 KB
/
ManualResultView.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
package ui;
import domain.lottery.*;
import service.LotteryService;
import ui.common.InputView;
import ui.common.Result;
import util.Calculator;
import util.Converter;
import static constant.LotteryRules.DEFAULT_LOTTERY_TICKET_PRICE;
public class ManualResultView implements Result {
private final String DELIMITER = ", ";
private LotteryTickets lotteryTickets;
private WinnerLotteryTicket winnerLotteryTicket;
private RewardLotteryTickets rewardLotteryTickets;
@Override
public void printAll() {
LotteryService lotteryService = new LotteryService();
printTicketNumbers();
printLotteryResult(lotteryService);
}
@Override
public void printTicketNumbers() {
System.out.println("구입금액을 입력해 주세요.");
long amount = InputView.inputInteger();
int totalNumberOfLotteryTickets = (int) Calculator.divide(amount, DEFAULT_LOTTERY_TICKET_PRICE);
System.out.println();
System.out.println("수동으로 구매할 로또 수를 입력해 주세요.");
int numberOfManualLotteryTickets = InputView.inputInteger();
lotteryTickets = new LotteryTickets(totalNumberOfLotteryTickets - numberOfManualLotteryTickets);
System.out.println();
System.out.println("수동으로 구매할 번호를 입력해 주세요.");
for (int count = 1; count <= numberOfManualLotteryTickets; count++) {
lotteryTickets.add(Converter.convertStringToLotteryTicket(InputView.inputString().split(DELIMITER)));
}
System.out.println();
System.out.println("수동으로 " + numberOfManualLotteryTickets + "장, 자동으로 " + (totalNumberOfLotteryTickets - numberOfManualLotteryTickets) + "개를 구매했습니다.");
for (LotteryTicket lotteryTicket : lotteryTickets.getLotteryTickets()) {
System.out.println(lotteryTicket.getTicketNumbers());
}
System.out.println();
System.out.println("지난 주 당첨 번호를 입력해 주세요.");
LotteryTicket winnerTicket = Converter.convertStringToLotteryTicket(InputView.inputString().split(DELIMITER));
System.out.println("보너스 볼을 입력해 주세요.");
int bonusTicketNumber = InputView.inputInteger();
winnerLotteryTicket = new WinnerLotteryTicket(winnerTicket, LotteryNumber.of(bonusTicketNumber));
rewardLotteryTickets = new RewardLotteryTickets(lotteryTickets, winnerLotteryTicket);
}
@Override
public void printLotteryResult(LotteryService lotteryService) {
System.out.println();
System.out.println("당첨 통계");
System.out.println("---------");
System.out.println("3개 일치 (5000원)- " + lotteryService.countOfLotteryWinners(3, rewardLotteryTickets) + "개");
System.out.println("4개 일치 (50000원)- " + lotteryService.countOfLotteryWinners(4, rewardLotteryTickets) + "개");
System.out.println("5개 일치 (1500000원)- " + lotteryService.countOfLotteryWinners(5, rewardLotteryTickets) + "개");
System.out.println("5개 일치, 보너스 볼 일치(30000000원)- " + lotteryService.countOfLotteryWinners(7, rewardLotteryTickets) + "개");
System.out.println("6개 일치 (2000000000원)- " + lotteryService.countOfLotteryWinners(6, rewardLotteryTickets) + "개");
System.out.println("총 수익률은 " + Calculator.rateOfProfit((long) lotteryTickets.getLotteryTickets().size() * DEFAULT_LOTTERY_TICKET_PRICE, lotteryService.findTotalRewards(new RewardLotteryTickets(lotteryTickets, winnerLotteryTicket))) + "입니다.(기준이 1이기 때문에 결과적으로 손해라는 의미임)");
}
}