diff options
author | Adam NAILI | 2018-01-14 00:08:43 +0100 |
---|---|---|
committer | Adam NAILI | 2018-01-14 00:08:43 +0100 |
commit | 2c6e0ce2c71f2a395b110ebbffe7b5198bffc3d1 (patch) | |
tree | 4e81c5fd0fcfc8216be3b15705def79c2d2c0c66 /src/main/java | |
parent | 93865b1e5ba80c78c6c7cb794a44baf6818bc89b (diff) | |
download | wallj-2c6e0ce2c71f2a395b110ebbffe7b5198bffc3d1.tar.gz |
Updating documentation and formatting BoardConverter
Diffstat (limited to 'src/main/java')
-rw-r--r-- | src/main/java/fr/umlv/java/wallj/board/BoardConverter.java | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/main/java/fr/umlv/java/wallj/board/BoardConverter.java b/src/main/java/fr/umlv/java/wallj/board/BoardConverter.java index 6231875..c4d47cc 100644 --- a/src/main/java/fr/umlv/java/wallj/board/BoardConverter.java +++ b/src/main/java/fr/umlv/java/wallj/board/BoardConverter.java | |||
@@ -6,13 +6,17 @@ import java.util.ArrayList; | |||
6 | import java.util.List; | 6 | import java.util.List; |
7 | 7 | ||
8 | /** | 8 | /** |
9 | * Operations of conversion on Board and List of blocks | ||
9 | * @author Adam NAILI | 10 | * @author Adam NAILI |
10 | */ | 11 | */ |
11 | public final class BoardConverter { | 12 | public final class BoardConverter { |
12 | //TODO | ||
13 | private BoardConverter() { | 13 | private BoardConverter() { |
14 | } | 14 | } |
15 | 15 | ||
16 | /** | ||
17 | * @param blocks the list of blocks to convert in a board | ||
18 | * @return the converted board | ||
19 | */ | ||
16 | public static Board worldToBoard(List<Block> blocks) { | 20 | public static Board worldToBoard(List<Block> blocks) { |
17 | int width = blocks.stream().map(Block::getTile).mapToInt(TileVec2::getCol).max().orElse(-1) + 1; | 21 | int width = blocks.stream().map(Block::getTile).mapToInt(TileVec2::getCol).max().orElse(-1) + 1; |
18 | int height = blocks.stream().map(Block::getTile).mapToInt(TileVec2::getRow).max().orElse(-1) + 1; | 22 | int height = blocks.stream().map(Block::getTile).mapToInt(TileVec2::getRow).max().orElse(-1) + 1; |
@@ -24,6 +28,10 @@ public final class BoardConverter { | |||
24 | return builder.build(); | 28 | return builder.build(); |
25 | } | 29 | } |
26 | 30 | ||
31 | /** | ||
32 | * @param board the board to convert into a list of blocks | ||
33 | * @return the list of blocks converted | ||
34 | */ | ||
27 | public static List<Block> boardToWorld(Board board) { | 35 | public static List<Block> boardToWorld(Board board) { |
28 | ArrayList<Block> blocks = new ArrayList<>(); | 36 | ArrayList<Block> blocks = new ArrayList<>(); |
29 | int nbRow = board.getDim().getRow(); | 37 | int nbRow = board.getDim().getRow(); |
@@ -31,7 +39,7 @@ public final class BoardConverter { | |||
31 | for (int i = 0; i < nbRow; i++) { | 39 | for (int i = 0; i < nbRow; i++) { |
32 | for (int j = 0; j < nbCol; j++) { | 40 | for (int j = 0; j < nbCol; j++) { |
33 | Block block; | 41 | Block block; |
34 | TileVec2 location = TileVec2.of(j,i); | 42 | TileVec2 location = TileVec2.of(j, i); |
35 | block = BlockFactory.build(board.getBlockTypeAt(location), location); | 43 | block = BlockFactory.build(board.getBlockTypeAt(location), location); |
36 | if (block != null) { | 44 | if (block != null) { |
37 | blocks.add(block); | 45 | blocks.add(block); |