forked from woowacourse/java-janggi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBoardGenerator.java
109 lines (92 loc) · 4.64 KB
/
BoardGenerator.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
package domain.board;
import domain.piece.Byeong;
import domain.piece.Cha;
import domain.piece.Ma;
import domain.piece.Piece;
import domain.piece.PieceType;
import domain.piece.Po;
import domain.piece.Sa;
import domain.piece.Sang;
import domain.piece.Team;
import domain.piece.Wang;
import java.util.ArrayDeque;
import java.util.Deque;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import view.SangMaOrderCommand;
public class BoardGenerator {
public Board generateBoard(final SangMaOrderCommand hanSangMaOrderCommand,
final SangMaOrderCommand choSangMaOrderCommand) {
PointNodeMapperFactory pointNodeMapperFactory = new PointNodeMapperFactory();
PointNodeMapper pointNodeMapper = pointNodeMapperFactory.createDefaultPointNodeMapper();
Map<Point, Piece> pieceByPoint = createPieces(hanSangMaOrderCommand, choSangMaOrderCommand);
return new Board(pieceByPoint, pointNodeMapper);
}
private Map<Point, Piece> createPieces(
final SangMaOrderCommand hanSangMaOrderCommand,
final SangMaOrderCommand choSangMaOrderCommand) {
Map<Point, Piece> pieceByPoint = new HashMap<>();
List<Point> hanSangMaPoints = List.of(Point.of(1, 2), Point.of(1, 3), Point.of(1, 7), Point.of(1, 8));
initializeHanPieces(hanSangMaPoints, hanSangMaOrderCommand, pieceByPoint);
List<Point> choSangMaPoints = List.of(Point.of(10, 2), Point.of(10, 3), Point.of(10, 7), Point.of(10, 8));
initializeChoPieces(choSangMaPoints, choSangMaOrderCommand, pieceByPoint);
return pieceByPoint;
}
private void initializeHanPieces(final List<Point> sangMaPoints,
final SangMaOrderCommand sangMaOrderCommand,
final Map<Point, Piece> pieceByPoint) {
pieceByPoint.put(Point.of(4, 1), new Byeong(Team.HAN));
pieceByPoint.put(Point.of(4, 3), new Byeong(Team.HAN));
pieceByPoint.put(Point.of(4, 5), new Byeong(Team.HAN));
pieceByPoint.put(Point.of(4, 7), new Byeong(Team.HAN));
pieceByPoint.put(Point.of(4, 9), new Byeong(Team.HAN));
pieceByPoint.put(Point.of(3, 2), new Po(Team.HAN));
pieceByPoint.put(Point.of(3, 8), new Po(Team.HAN));
pieceByPoint.put(Point.of(2, 5), new Wang(Team.HAN));
pieceByPoint.put(Point.of(1, 1), new Cha(Team.HAN));
pieceByPoint.put(Point.of(1, 4), new Sa(Team.HAN));
pieceByPoint.put(Point.of(1, 6), new Sa(Team.HAN));
pieceByPoint.put(Point.of(1, 9), new Cha(Team.HAN));
Deque<Piece> sangMaOrder = createSangMaByCommand(sangMaOrderCommand, Team.HAN);
for (Point point : sangMaPoints) {
pieceByPoint.put(point, sangMaOrder.removeFirst());
}
}
private void initializeChoPieces(final List<Point> sangMaPoints,
final SangMaOrderCommand sangMaOrderCommand,
final Map<Point, Piece> pieceByPoint) {
pieceByPoint.put(Point.of(7, 1), new Byeong(Team.CHO));
pieceByPoint.put(Point.of(7, 3), new Byeong(Team.CHO));
pieceByPoint.put(Point.of(7, 5), new Byeong(Team.CHO));
pieceByPoint.put(Point.of(7, 7), new Byeong(Team.CHO));
pieceByPoint.put(Point.of(7, 9), new Byeong(Team.CHO));
pieceByPoint.put(Point.of(8, 2), new Po(Team.CHO));
pieceByPoint.put(Point.of(8, 8), new Po(Team.CHO));
pieceByPoint.put(Point.of(9, 5), new Wang(Team.CHO));
pieceByPoint.put(Point.of(10, 1), new Cha(Team.CHO));
pieceByPoint.put(Point.of(10, 4), new Sa(Team.CHO));
pieceByPoint.put(Point.of(10, 6), new Sa(Team.CHO));
pieceByPoint.put(Point.of(10, 9), new Cha(Team.CHO));
Deque<Piece> sangMaOrder = createSangMaByCommand(sangMaOrderCommand, Team.CHO);
for (Point point : sangMaPoints) {
pieceByPoint.put(point, sangMaOrder.removeFirst());
}
}
private Deque<Piece> createSangMaByCommand(final SangMaOrderCommand sangMaOrderCommand,
final Team team) {
List<PieceType> pieceTypes = sangMaOrderCommand.getPieceTypes();
Deque<Piece> pieces = new ArrayDeque<>();
for (PieceType pieceType : pieceTypes) {
pieces.addLast(createPiece(pieceType, team));
}
return pieces;
}
private Piece createPiece(final PieceType pieceType, final Team team) {
return switch (pieceType) {
case SANG -> new Sang(team);
case MA -> new Ma(team);
default -> throw new IllegalArgumentException("[ERROR] 상 또는 마가 아닙니다.");
};
}
}