-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[사다리 미션] 신혜빈 미션 제출합니다. #20
base: shin378378
Are you sure you want to change the base?
Changes from all commits
3d3d769
b85fa13
e2342f2
5c01a53
ceb91b9
b753e93
651f22b
9f1d637
42c7d00
14b4d35
210d7f3
9739d30
6422685
cd7c8a9
f2642b3
62ded33
b24b654
8b4800c
af2eec1
e3d3190
fa8e9e0
b21fef9
d0a5f26
8a15278
37a8e9d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# java-ladder | ||
|
||
# 기능요구사항 | ||
## 참여자 | ||
- [x] 참여할 사람의 이름을 입력받는다. | ||
- [x] 참여하는 사람을 따로 관리한다. | ||
## 사다리 결과 | ||
- [x] 실행결과를 입력받는다. | ||
- [x] 실행결과를 따로 관리한다. | ||
## 사다리 | ||
- [x] 최대 사다리 높이를 입력받는다. | ||
- [x] 최대 사다리 높이 만큼 사다리를 생성한다. | ||
- [x] 사다리를 출력한다. | ||
## 실행 결과 | ||
- [x] 사람마다 실행 결과를 따로 저장한다. | ||
- [x] 특정 사람의 실행 결과를 출력한다. | ||
## 종료 | ||
- [x] "all"이 입력될 경우 실행을 종료한다. | ||
|
||
# 예외처리 | ||
- [x] 참가자 이름이 5자 넘어가는 경우 오류 생성 | ||
- [x] 특정 사용자 결과를 찾는 데 특정 사용자가 없는 경우 예외 발생 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import controller.LadderController; | ||
|
||
public class LadderApplication { | ||
public static void main(String[] args) { | ||
LadderController controller = new LadderController(); | ||
controller.playLadderGame(); | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
package controller; | ||
|
||
import model.ladder.Ladder; | ||
import model.ladder.LadderRow; | ||
import model.player.Player; | ||
import model.player.PlayerResultDto; | ||
import model.player.PlayerResults; | ||
import model.player.Players; | ||
import model.tool.Splitter; | ||
import view.InputView; | ||
import view.OutputView; | ||
|
||
import java.util.ArrayList; | ||
import java.util.Arrays; | ||
import java.util.List; | ||
import java.util.Map; | ||
|
||
|
||
public class LadderController { | ||
static final InputView inputView = new InputView(); | ||
static final Splitter splitter = new Splitter(); | ||
static final OutputView outputView = new OutputView(); | ||
|
||
private Players createPlayers() { | ||
String playerNamesBeforeSplit = inputView.inputPlayers(); | ||
String[] playerNames = splitter.splitWithComma(playerNamesBeforeSplit); | ||
Players players = new Players(playerNames); | ||
return players; | ||
} | ||
|
||
private List<String> createLadderResults() { | ||
String trialResultsBeforeSplit = inputView.inputResults(); | ||
String[] trialResults = splitter.splitWithComma(trialResultsBeforeSplit); | ||
List<String> ladderResults = Arrays.asList(trialResults); | ||
return ladderResults; | ||
} | ||
|
||
private Ladder createLadder(int columnSize) { | ||
List<String> ladderResults = createLadderResults(); | ||
int rowSize = inputView.inputLadderHeight(); | ||
List<LadderRow> ladderRows = new ArrayList<>(); | ||
for (int i = 0; i < rowSize; i++) { | ||
LadderRow ladderRow = new LadderRow(columnSize); | ||
ladderRows.add(ladderRow); | ||
} | ||
Ladder ladder = new Ladder(ladderRows, ladderResults); | ||
return ladder; | ||
} | ||
|
||
private PlayerResults createPlayerResults(Players players, Ladder ladder) { | ||
List<Player> playerInventory = players.getPlayerInventory(); | ||
List<PlayerResultDto> playerResultsInventory = ladder.decidePlayerResults(playerInventory); | ||
PlayerResults playerResults = new PlayerResults(playerResultsInventory); | ||
return playerResults; | ||
} | ||
|
||
private void printLadder(Players players, Ladder ladder) { | ||
List<LadderRow> ladderRows = ladder.getLadderRows(); | ||
List<String> ladderResults = ladder.getLadderResults(); | ||
List<Player> playerInventory = players.getPlayerInventory(); | ||
OutputView outputView = new OutputView(); | ||
outputView.outputLadder(playerInventory, ladderRows, ladderResults); | ||
} | ||
|
||
public void playLadderGame() { | ||
Players players = createPlayers(); | ||
Ladder ladder = createLadder(players.getPlayerInventory().size() - 1); | ||
PlayerResults playerResults = createPlayerResults(players, ladder); | ||
printLadder(players, ladder); | ||
String playerName; | ||
do { | ||
playerName = inputView.inputPlayerToWantResult(); | ||
outputView.outputPlayerResult(playerResults, playerName); | ||
} while (!playerName.equals("all")); | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
package model.ladder; | ||
|
||
import model.player.Player; | ||
import model.player.PlayerResultDto; | ||
|
||
import java.util.ArrayList; | ||
import java.util.HashMap; | ||
import java.util.List; | ||
import java.util.Map; | ||
|
||
public class Ladder { | ||
private List<LadderRow> ladderRows; | ||
private List<String> ladderResults; | ||
|
||
public Ladder(List<LadderRow> ladderRows, List<String> ladderResults) { | ||
this.ladderRows = ladderRows; | ||
this.ladderResults = ladderResults; | ||
} | ||
|
||
private LadderMove changePosition(List<Boolean> points, int columnPosition) { | ||
if (columnPosition > 0 && points.get(columnPosition - 1)) { | ||
return LadderMove.LEFT; | ||
} | ||
if (columnPosition < points.size() && points.get(columnPosition)) { | ||
return LadderMove.RIGHT; | ||
} | ||
return LadderMove.DOWN; | ||
} | ||
|
||
private int moveColumn(List<Boolean> points, int columnPosition) { | ||
LadderMove moveDirection = changePosition(points, columnPosition); | ||
return columnPosition + moveDirection.getOffset(); | ||
} | ||
|
||
private int moveRow(List<LadderRow> ladderRows, int columnPosition) { | ||
for (LadderRow ladderRow : ladderRows) { | ||
List<Boolean> points = ladderRow.getPoints(); | ||
columnPosition = moveColumn(points, columnPosition); | ||
} | ||
return columnPosition; | ||
} | ||
|
||
public List<PlayerResultDto> decidePlayerResults(List<Player> playerInventory) { | ||
List<PlayerResultDto> playersInventory = new ArrayList<>(); | ||
for (Player player : playerInventory) { | ||
int playerPosition = player.getPosition(); | ||
int columnPosition = moveRow(ladderRows, playerPosition); | ||
String playerName = player.getName(); | ||
String playerResult = ladderResults.get(columnPosition); | ||
playersInventory.add(new PlayerResultDto(playerName, playerResult)); | ||
} | ||
return playersInventory; | ||
} | ||
|
||
public List<LadderRow> getLadderRows() { | ||
return ladderRows; | ||
} | ||
|
||
public List<String> getLadderResults() { | ||
return ladderResults; | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package model.ladder; | ||
|
||
public enum LadderMove { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 이 부분까지 enum 으로 두기 쉽지 않았을텐데 분리하려고 열심히 하신 것이 보여서 되게 좋네요! There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 감사합니다!! |
||
RIGHT(1), | ||
LEFT(-1), | ||
DOWN(0); | ||
|
||
private final int offset; | ||
|
||
LadderMove(int offset) { | ||
this.offset = offset; | ||
} | ||
|
||
public int getOffset() { | ||
return offset; | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package model.ladder; | ||
|
||
public enum LadderPoint { | ||
CONNECTED(true), | ||
DISCONNECTED(false); | ||
|
||
private final Boolean isConnected; | ||
|
||
LadderPoint(Boolean isConnected) { | ||
this.isConnected = isConnected; | ||
} | ||
|
||
public Boolean getConnected() { | ||
return isConnected; | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
package model.ladder; | ||
|
||
import java.util.ArrayList; | ||
import java.util.List; | ||
import java.util.concurrent.ThreadLocalRandom; | ||
|
||
public class LadderRow { | ||
private List<Boolean> points = new ArrayList<>(); | ||
|
||
public LadderRow(int columnSize) { | ||
for (int columnPosition = 0; columnPosition < columnSize; columnPosition++) { | ||
boolean randomBoolean = chooseLadderPoint(columnPosition); | ||
this.points.add(columnPosition, randomBoolean); | ||
} | ||
} | ||
|
||
private LadderPoint randomConnectedOrDisconnected() { | ||
if (ThreadLocalRandom.current().nextDouble() < 0.5) return LadderPoint.CONNECTED; | ||
return LadderPoint.DISCONNECTED; | ||
} | ||
|
||
public boolean chooseLadderPoint(int columnPosition) { | ||
if (columnPosition > 0 && points.get(columnPosition - 1)) | ||
return LadderPoint.DISCONNECTED.getConnected(); | ||
return randomConnectedOrDisconnected().getConnected(); | ||
|
||
} | ||
|
||
public List<Boolean> getPoints() { | ||
return points; | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
package model.player; | ||
|
||
public class Player { | ||
private static final int NAME_LENGTH_LIMIT = 5; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 자바 컨벤션 상으로 static 변수와 일반 변수는 1줄을 띄워야 할 것 같아요! There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 앗 static 변수와 일반 변수는 1줄을 띄어야 하는 군요! 수정하겠습니다!! |
||
|
||
private int position; | ||
private String name; | ||
|
||
public Player(int position, String name) { | ||
if (name.length() > NAME_LENGTH_LIMIT) { | ||
throw new IllegalArgumentException("참가자 이름이 " + NAME_LENGTH_LIMIT + "자 초과입니다."); | ||
} | ||
this.position = position; | ||
this.name = name; | ||
} | ||
|
||
public int getPosition() { | ||
return position; | ||
} | ||
|
||
public String getName() { | ||
return name; | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package model.player; | ||
|
||
public class PlayerResultDto { | ||
private String playerName; | ||
private String playerResult; | ||
|
||
public PlayerResultDto(String playerName, String playerResult) { | ||
this.playerName = playerName; | ||
this.playerResult = playerResult; | ||
} | ||
|
||
public String getPlayerName() { | ||
return playerName; | ||
} | ||
|
||
public String getPlayerResult() { | ||
return playerResult; | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
package model.player; | ||
|
||
import java.util.List; | ||
import java.util.Map; | ||
|
||
public class PlayerResults { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 바로 전에 말씀드린 Players 와는 반대로 이 클래스는 충분히 있어도 된다고 생각하는 편이긴 한데요 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 이번 기회를 통해 Map과 DTO의 차이점에 대해 알아보았습니다!
→ 결론: 장단점을 비교해놓고 보니 확실히 프로그램이 커질수록 정보관리에는 DTO를 쓰는 게 더 적합하다는 생각이 듭니다!! |
||
private List<PlayerResultDto> PlayerResultsInventory; | ||
|
||
public PlayerResults(List<PlayerResultDto> playerResultsInventory) { | ||
PlayerResultsInventory = playerResultsInventory; | ||
} | ||
|
||
public String getPlayerResult(String playerName) { | ||
String result = null; | ||
for (PlayerResultDto playerResultDto : PlayerResultsInventory) { | ||
if (playerName.equals(playerResultDto.getPlayerName())) result = playerResultDto.getPlayerResult(); | ||
} | ||
return result; | ||
} | ||
|
||
public List<PlayerResultDto> getPlayerResultsInventory() { | ||
return PlayerResultsInventory; | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package model.player; | ||
|
||
import model.tool.Splitter; | ||
|
||
import java.util.ArrayList; | ||
import java.util.List; | ||
|
||
public class Players { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 일급 컬렉션을 지키려고 노력하신 부분이 보여서 고생 많으셨다는 생각이 드네요 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. < 질문 >컨트롤러의 역할을 줄이기 위해 아래와 같이 Player객체 생성을 public Players(String [] playerNames){
for (int i = 0; i < playerNames.length; i++) {
Player player = new Player(i, playerNames[i]);
playerInventory.add(player);
}
} There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 만약 그렇게 역할이 딱히 없다면 list 형태로 들고다녀도 저는 좋다고 생각합니다! |
||
private List<Player> playerInventory= new ArrayList<>(); | ||
|
||
public Players(String [] playerNames){ | ||
for (int i = 0; i < playerNames.length; i++) { | ||
Player player = new Player(i, playerNames[i]); | ||
playerInventory.add(player); | ||
} | ||
} | ||
|
||
public List<Player> getPlayerInventory() { | ||
return playerInventory; | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package model.tool; | ||
|
||
public class Splitter { | ||
final static private String SPLIT_SIGN = ","; | ||
|
||
public String[] splitWithComma(String beforeSplit) { | ||
String[] afterSplit = beforeSplit.split(SPLIT_SIGN); | ||
for (int i = 0; i < afterSplit.length; i++) { | ||
afterSplit[i] = afterSplit[i].trim(); | ||
} | ||
return afterSplit; | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
package view; | ||
|
||
import java.util.Scanner; | ||
|
||
public class InputView { | ||
private static final Scanner scanner = new Scanner(System.in); | ||
|
||
public static String inputPlayers(){ | ||
System.out.println("참여할 사람 이름을 입력하세요. (이름은 쉼표(,)로 구분하세요)"); | ||
return scanner.nextLine(); | ||
} | ||
|
||
public static String inputResults(){ | ||
System.out.println("\n"+"실행 결과를 입력하세요. (결과는 쉼표(,)로 구분하세요)"); | ||
return scanner.nextLine(); | ||
} | ||
|
||
public static Integer inputLadderHeight(){ | ||
System.out.println("\n"+"최대 사다리 높이는 몇 개인가요?"); | ||
return Integer.parseInt(scanner.nextLine()); | ||
} | ||
|
||
public static String inputPlayerToWantResult(){ | ||
System.out.println("\n"+"결과를 보고 싶은 사람은?"); | ||
return scanner.nextLine(); | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
헉 리드미를 작성해주셔서 한 눈에 보기가 편하네요!