-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathLadderController.java
36 lines (30 loc) · 1.06 KB
/
LadderController.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
package controller;
import domain.Ladder;
import domain.Participant;
import domain.Participants;
import domain.Size;
import java.util.List;
import service.LadderService;
import view.InputView;
import view.OutputView;
public class LadderController {
private final OutputView outputView = new OutputView();
private final InputView inputView = new InputView();
private final LadderService ladderService = new LadderService();
public Ladder createLadder() {
int width = inputView.getLadderWidth();
int height = inputView.getLadderHeight();
return ladderService.createLadder(height, width);
}
public Participants createParticipants(int width) {
return ladderService.createParticipants(width);
}
public void getResult(Ladder ladder, Participants participants) {
ladderService.getResult(ladder, participants);
}
public void printResult(Ladder ladder, Participants participants){
outputView.printResultText();
outputView.printLadder(ladder);
outputView.printResult(participants);
}
}