From 85c24fa1361ed4a8db6ac0e2117a49ca8e5b5f20 Mon Sep 17 00:00:00 2001 From: EpicKnarvik97 Date: Mon, 4 May 2020 00:23:25 +0200 Subject: [PATCH 01/10] Legger til brettet Lost Bearings --- src/main/resources/boards/Lost_Bearings.txt | 33 +++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 src/main/resources/boards/Lost_Bearings.txt diff --git a/src/main/resources/boards/Lost_Bearings.txt b/src/main/resources/boards/Lost_Bearings.txt new file mode 100644 index 0000000..d1407ad --- /dev/null +++ b/src/main/resources/boards/Lost_Bearings.txt @@ -0,0 +1,33 @@ +12 16 +01;1 05;5 01;1 01;1 01;1 05;5 05;1 01;1 01;1 01;1 05;1 32;1 +01;1 07;3 05;3 05;3 05;3 10;5 05;1 01;1 01;1 32;1 06;1 05;7 +01;1 17;1 01;1 01;1 01;1 05;5 05;1 01;1 01;1 01;1 01;1 21;7 +01;1 01;1 32;1 01;1 01;1 05;5 05;1 01;1 01;1 01;1 01;1 01;1 +01;1 01;1 22;7 01;1 01;1 05;5 06;1 07;7 01;1 01;1 01;1 01;1 +05;7 05;7 05;7 05;7 05;7 06;7 35;1 06;1 05;7 05;7 05;7 05;7 +05;3 05;3 05;3 05;3 06;5 35;7 31;1 35;3 06;3 05;3 05;3 05;3 +01;1 01;1 01;1 01;1 07;3 06;5 35;5 06;3 07;1 35;7 35;3 01;1 +01;1 01;1 19;1 01;1 01;1 05;5 06;3 07;1 01;1 22;7 01;1 01;1 +01;1 01;1 32;1 01;1 01;1 05;5 05;1 01;1 01;1 01;1 18;1 01;1 +05;3 06;5 01;1 01;1 01;1 05;5 10;1 05;7 05;7 05;7 07;7 01;1 +21;7 05;5 01;1 01;1 01;1 05;5 05;1 01;1 01;1 01;1 05;1 01;1 +01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 +01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 +29;1 27;1 01;1 25;1 01;1 23;1 24;1 01;1 26;1 01;1 28;1 30;1 +01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 +0 0 1;1 0 2;8 0 0 1;1 0 1;1 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 +1;7 0 0 0 0 0 0 0 0 1;7 0 1;3 +0 0 0 1;7 3;3 0 0 2;4 0 3;3 0 0 +1;7 1;5 0 0 2;4 0 0 0 0 0 0 2;1 +0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 +1;7 0 1;1 0 0 0 0 0 0 0 0 1;3 +0 0 0 4;1 2;2 0 0 1;3 0 0 2;8 0 +1;7 0 0 0 0 0 0 3;1 0 0 0 1;3 +0 0 0 0 0 0 0 0 0 0 0 0 +0 0 1;5 1;1 1;5 0 0 1;5 0 1;5 0 0 +0 0 1;1 0 1;1 0 0 1;1 0 1;1 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 +0 1;7 0 1;7 0 1;7 1;7 1;7 0 1;7 0 1;7 +0 0 1;5 0 1;5 0 0 1;5 0 1;5 0 0 \ No newline at end of file From 1dc09eb45e4702a44a41d7770cffafaf1bbe4209 Mon Sep 17 00:00:00 2001 From: EpicKnarvik97 Date: Mon, 4 May 2020 00:25:18 +0200 Subject: [PATCH 02/10] Laster listen av brett fra en fil og forbedrer visning av brettlisten --- .../roborally/ui/screens/LobbyScreen.java | 11 +++-- .../roborally/utility/BoardLoaderUtil.java | 42 +++++++++++++++++++ src/main/resources/boards.txt | 13 ++++++ 3 files changed, 63 insertions(+), 3 deletions(-) create mode 100644 src/main/resources/boards.txt diff --git a/src/main/java/inf112/fiasko/roborally/ui/screens/LobbyScreen.java b/src/main/java/inf112/fiasko/roborally/ui/screens/LobbyScreen.java index 3880513..f5cb4e3 100644 --- a/src/main/java/inf112/fiasko/roborally/ui/screens/LobbyScreen.java +++ b/src/main/java/inf112/fiasko/roborally/ui/screens/LobbyScreen.java @@ -15,8 +15,10 @@ import inf112.fiasko.roborally.networking.containers.GameStartInfoResponse; import inf112.fiasko.roborally.objects.Player; import inf112.fiasko.roborally.ui.RoboRallyWrapper; import inf112.fiasko.roborally.ui.SimpleButton; +import inf112.fiasko.roborally.utility.BoardLoaderUtil; import inf112.fiasko.roborally.utility.IOUtil; +import java.io.IOException; import java.util.List; import java.util.Map; @@ -45,8 +47,11 @@ public class LobbyScreen extends InteractiveScreen { Skin skin = new Skin(Gdx.files.internal("uiskin.json")); selectBox = new SelectBox<>(skin); - selectBox.setItems("Dizzy_Dash", "Checkmate", "Risky_Exchange", "Twister", "Bloodbath_Chess", "Vault_Assault", - "Island_Hop", "Chop_Shop_Challenge", "Around_The_World", "Death_Trap", "Whirlwind_Tour"); + try { + selectBox.setItems(BoardLoaderUtil.getBoardListHumanReadable()); + } catch (IOException e) { + e.printStackTrace(); + } selectBox.setSize(200, 50); selectBox.setPosition((applicationWidth - selectBox.getWidth()) / 2f, applicationHeight / 2f - 120); @@ -77,7 +82,7 @@ public class LobbyScreen extends InteractiveScreen { roboRallyWrapper.server.getRobotID()); for (Connection connection : playerNames.keySet()) { roboRallyWrapper.server.sendToClient(connection, new GameStartInfoResponse( - selectBox.getSelected() + ".txt", playerList, playerNames.get(connection))); + BoardLoaderUtil.getRealBoardName(selectBox.getSelected()), playerList, playerNames.get(connection))); } roboRallyWrapper.setScreen(roboRallyWrapper.screenManager.getLoadingScreen(roboRallyWrapper)); } diff --git a/src/main/java/inf112/fiasko/roborally/utility/BoardLoaderUtil.java b/src/main/java/inf112/fiasko/roborally/utility/BoardLoaderUtil.java index 4a46155..0c51290 100644 --- a/src/main/java/inf112/fiasko/roborally/utility/BoardLoaderUtil.java +++ b/src/main/java/inf112/fiasko/roborally/utility/BoardLoaderUtil.java @@ -27,6 +27,48 @@ public final class BoardLoaderUtil { private BoardLoaderUtil() { } + /** + * Gets the actual file name of a board given its human-readable name + * + * @param boardName The human-readable name of a board + * @return The file name of the board + */ + public static String getRealBoardName(String boardName) { + return boardName.replace(" ", "_") + ".txt"; + } + + /** + * Gets a list of all available boards with human-readable names + * + * @return A list of all available boards + * @throws IOException If the board list cannot be read + */ + public static String[] getBoardListHumanReadable() throws IOException { + String[] boards = getBoardList(); + for (int i = 0; i < boards.length; i++) { + boards[i] = boards[i].replace("_", " ").replace(".txt", ""); + } + return boards; + } + + /** + * Gets a list of all available boards + * + * @return A list of all available boards + * @throws IOException If the board list cannot be read + */ + private static String[] getBoardList() throws IOException { + BufferedReader reader = new BufferedReader(new InputStreamReader( + ResourceUtil.getResourceAsInputStream("boards.txt"))); + int numberOfBoards = Integer.parseInt(reader.readLine()); + String[] boardList = new String[numberOfBoards]; + for (int i = 0; i < numberOfBoards; i++) { + String board = reader.readLine(); + boardList[i] = board; + } + return boardList; + } + /** * Loads and rotates a board described in a file * diff --git a/src/main/resources/boards.txt b/src/main/resources/boards.txt new file mode 100644 index 0000000..c8d1a6b --- /dev/null +++ b/src/main/resources/boards.txt @@ -0,0 +1,13 @@ +12 +Around_The_World.txt +Bloodbath_Chess.txt +Checkmate.txt +Chop_Shop_Challenge.txt +Death_Trap.txt +Dizzy_Dash.txt +Island_Hop.txt +Lost_Bearings.txt +Risky_Exchange.txt +Twister.txt +Vault_Assault.txt +Whirlwind_Tour.txt \ No newline at end of file From a4a843087c33633ba8410f4ee5779572224580d9 Mon Sep 17 00:00:00 2001 From: EpicKnarvik97 Date: Mon, 4 May 2020 10:23:08 +0200 Subject: [PATCH 03/10] Legger til brettet Robot_Stew --- src/main/resources/boards.txt | 3 ++- src/main/resources/boards/Robot_Stew.txt | 33 ++++++++++++++++++++++++ 2 files changed, 35 insertions(+), 1 deletion(-) create mode 100644 src/main/resources/boards/Robot_Stew.txt diff --git a/src/main/resources/boards.txt b/src/main/resources/boards.txt index c8d1a6b..3fe31b4 100644 --- a/src/main/resources/boards.txt +++ b/src/main/resources/boards.txt @@ -1,4 +1,4 @@ -12 +13 Around_The_World.txt Bloodbath_Chess.txt Checkmate.txt @@ -8,6 +8,7 @@ Dizzy_Dash.txt Island_Hop.txt Lost_Bearings.txt Risky_Exchange.txt +Robot_Stew.txt Twister.txt Vault_Assault.txt Whirlwind_Tour.txt \ No newline at end of file diff --git a/src/main/resources/boards/Robot_Stew.txt b/src/main/resources/boards/Robot_Stew.txt new file mode 100644 index 0000000..d424eab --- /dev/null +++ b/src/main/resources/boards/Robot_Stew.txt @@ -0,0 +1,33 @@ +12 16 +01;05 05;05 01;05 01;05 01;05 05;05 01;05 01;05 05;05 01;05 01;05 21;07 +01;05 05;05 01;05 01;05 01;05 05;05 01;05 01;05 05;05 01;05 01;05 01;05 +01;05 07;03 05;03 02;01 22;07 05;05 01;05 01;05 05;05 02;03 01;05 01;05 +05;03 05;03 05;03 01;05 01;05 03;07 01;05 01;05 04;07 05;03 05;03 05;03 +17;01 01;05 01;05 01;05 01;05 05;05 02;03 01;05 01;05 01;05 01;05 01;05 +05;07 05;07 05;07 05;07 04;07 07;03 05;03 05;03 01;05 01;05 01;05 01;05 +11;03 11;03 12;05 01;05 05;01 22;07 01;05 01;05 04;07 02;05 01;05 01;05 +01;05 01;05 11;05 01;05 01;05 01;05 01;05 01;05 03;07 18;01 01;05 01;05 +11;07 11;07 16;07 11;07 11;07 11;07 11;07 11;07 01;05 05;07 05;07 05;07 +01;05 01;05 01;05 01;05 01;05 03;07 04;07 01;05 01;05 22;07 01;05 01;05 +01;05 02;07 19;01 01;05 01;05 05;05 06;03 05;03 05;03 05;03 01;05 05;03 +21;07 01;05 01;05 01;05 01;05 05;05 05;01 01;05 01;05 01;05 01;05 01;05 +29;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 30;1 +01;1 27;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 28;1 01;1 +05;3 05;3 06;5 25;1 01;1 01;1 01;1 01;1 26;1 07;5 05;7 05;7 +01;1 01;1 07;3 05;3 05;3 23;1 24;1 05;7 05;7 06;7 01;1 01;1 +0 0 1;1 0 1;1 0 0 1;1 0 1;1 0 0 +0 0 0 0 0 0 1;3 0 0 0 1;5 0 +1;7 0 0 0 0 0 0 0 0 0 0 1;3 +0 0 0 0 1;7 0 3;3 0 0 0 0 0 +1;7 0 0 0 0 0 0 0 0 0 3;5 1;3 +0 0 0 0 0 0 0 0 4;1 0 0 0 +0 3;1 0 2;4 0 0 0 0 0 0 0 0 +1;7 0 0 0 0 0 0 0 0 0 0 1;3 +0 0 0 0 0 0 0 0 0 0 0 0 +1;7 1;1 1;7 0 0 0 0 3;3 1;1 0 0 1;3 +0 0 0 0 0 0 0 0 0 0 7;1 0 +0 0 1;5 0 1;5 0 0 1;5 0 1;5 1;1 0 +0 0 1;1 0 2;8 0 0 2;2 0 1;1 0 0 +0 1;7 1;7 0 0 0 0 0 0 1;3 1;3 0 +0 0 0 0 0 0 1;7 0 0 0 0 0 +0 0 0 0 0 0 1;7 0 0 0 0 0 \ No newline at end of file From 6a74cb0f8ece58d44e9aecc1b133deaa89c45a6b Mon Sep 17 00:00:00 2001 From: EpicKnarvik97 Date: Mon, 4 May 2020 10:32:58 +0200 Subject: [PATCH 04/10] Legger til brettet Island_King --- src/main/resources/boards.txt | 1 + src/main/resources/boards/Island_King.txt | 33 +++++++++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 src/main/resources/boards/Island_King.txt diff --git a/src/main/resources/boards.txt b/src/main/resources/boards.txt index 3fe31b4..8ef8116 100644 --- a/src/main/resources/boards.txt +++ b/src/main/resources/boards.txt @@ -6,6 +6,7 @@ Chop_Shop_Challenge.txt Death_Trap.txt Dizzy_Dash.txt Island_Hop.txt +Island_King.txt Lost_Bearings.txt Risky_Exchange.txt Robot_Stew.txt diff --git a/src/main/resources/boards/Island_King.txt b/src/main/resources/boards/Island_King.txt new file mode 100644 index 0000000..0723c33 --- /dev/null +++ b/src/main/resources/boards/Island_King.txt @@ -0,0 +1,33 @@ +12 16 +01;05 01;05 01;05 01;05 01;05 01;05 01;05 01;05 01;05 01;05 01;05 21;03 +01;05 34;07 35;03 01;05 01;05 01;05 01;05 01;05 01;05 35;07 34;01 01;05 +01;05 35;05 03;03 05;03 05;03 05;03 05;03 05;03 05;03 03;03 35;05 01;05 +01;05 01;05 05;01 04;03 05;07 05;07 05;07 05;07 04;03 05;05 01;05 01;05 +01;05 01;05 05;01 05;05 01;05 17;01 35;07 34;01 05;01 05;05 01;05 01;05 +01;05 01;05 05;01 09;05 05;07 05;07 22;03 35;05 05;01 05;05 01;05 01;05 +01;05 01;05 05;01 05;05 35;01 19;01 05;03 05;03 09;01 05;05 01;05 01;05 +01;05 01;05 05;01 05;05 34;05 35;03 01;05 18;01 05;01 05;05 01;05 01;05 +01;05 01;05 05;01 04;03 05;03 05;03 05;03 05;03 04;03 05;05 01;05 01;05 +21;03 35;01 05;07 05;07 05;07 05;07 05;07 05;07 05;07 05;05 35;01 01;05 +01;05 34;05 35;03 01;05 01;05 01;05 01;05 01;05 01;05 35;07 34;03 01;05 +01;05 01;05 01;05 01;05 01;05 01;05 01;05 01;05 01;05 01;05 01;05 01;05 +01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 +01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 +29;1 27;1 01;1 25;1 01;1 23;1 24;1 01;1 26;1 01;1 28;1 30;1 +01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 +0 0 1;1 0 1;1 0 0 1;1 0 1;1 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 +1;7 0 0 0 0 1;5 0 0 0 0 0 1;3 +0 0 0 0 0 0 0 0 0 0 0 0 +1;7 0 0 0 0 0 0 0 0 0 0 1;3 +0 0 1;3 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 1;7 0 0 +1;7 0 0 0 0 0 0 0 0 0 0 1;3 +0 0 0 0 0 0 0 0 0 0 0 0 +1;7 0 0 0 0 1;1 0 0 0 0 0 1;3 +0 0 0 0 0 0 0 0 0 0 0 0 +0 0 1;5 0 1;5 0 0 1;5 0 1;5 0 0 +0 0 1;1 0 1;1 0 0 1;1 0 1;1 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 +0 1;7 0 1;7 0 1;7 1;7 1;7 0 1;7 0 1;7 +0 0 1;5 0 1;5 0 0 1;5 0 1;5 0 0 \ No newline at end of file From 5193ef1cf6646cc031c5889bd643d4b3ed33aca0 Mon Sep 17 00:00:00 2001 From: EpicKnarvik97 Date: Mon, 4 May 2020 11:46:50 +0200 Subject: [PATCH 05/10] Legger til brettet Pilgrimage --- src/main/resources/boards.txt | 1 + src/main/resources/boards/Pilgrimage.txt | 25 ++++++++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 src/main/resources/boards/Pilgrimage.txt diff --git a/src/main/resources/boards.txt b/src/main/resources/boards.txt index 8ef8116..28e1154 100644 --- a/src/main/resources/boards.txt +++ b/src/main/resources/boards.txt @@ -8,6 +8,7 @@ Dizzy_Dash.txt Island_Hop.txt Island_King.txt Lost_Bearings.txt +Pilgrimage.txt Risky_Exchange.txt Robot_Stew.txt Twister.txt diff --git a/src/main/resources/boards/Pilgrimage.txt b/src/main/resources/boards/Pilgrimage.txt new file mode 100644 index 0000000..021b8f3 --- /dev/null +++ b/src/main/resources/boards/Pilgrimage.txt @@ -0,0 +1,25 @@ +28 12 +21;1 05;5 01;3 01;3 01;3 05;5 05;1 01;3 01;3 01;3 01;3 01;3 01;3 02;1 01;3 05;1 01;3 01;3 05;1 01;3 05;5 01;3 05;1 21;7 01;7 01;7 30;7 01;7 +05;7 06;7 01;3 01;3 01;3 05;5 05;1 01;3 01;3 02;3 07;5 05;7 01;3 01;3 01;3 05;1 01;3 05;5 05;1 01;3 05;5 01;3 01;3 01;3 01;7 01;7 28;7 01;7 +01;3 01;3 32;3 01;3 01;3 05;5 05;1 22;1 32;3 01;3 05;5 01;3 01;3 01;3 01;3 05;1 01;3 05;5 05;1 18;1 05;5 01;3 02;3 01;3 01;7 01;7 01;7 01;7 +01;3 01;3 01;3 01;3 01;3 05;5 05;1 01;3 01;3 01;3 05;5 01;3 05;3 05;3 05;3 04;7 01;3 05;5 05;1 01;3 04;7 05;3 05;3 05;3 01;7 01;7 26;7 01;7 +01;3 01;3 01;3 01;3 07;5 06;7 05;1 01;3 01;3 01;3 05;5 01;3 01;3 01;3 01;3 01;3 01;3 05;5 05;1 01;3 01;3 01;3 01;3 01;3 01;7 01;7 01;7 01;7 +05;7 05;7 05;7 05;7 06;7 35;1 06;1 05;7 05;7 05;7 10;7 05;7 11;7 11;7 11;7 11;7 11;7 01;3 01;3 05;7 05;7 05;7 05;7 05;7 01;7 01;7 24;7 01;7 +05;3 10;3 05;3 06;5 35;7 31;3 35;3 06;3 05;3 05;3 05;3 05;3 01;3 05;3 05;3 05;3 05;3 01;3 01;3 05;3 05;3 05;3 05;3 05;3 01;7 01;7 23;7 01;7 +01;3 05;1 01;3 07;3 06;5 35;5 06;3 07;1 17;1 01;3 01;3 01;3 01;3 01;3 01;3 01;3 22;7 11;5 05;1 01;3 01;3 01;3 02;3 01;3 01;7 01;7 01;7 01;7 +01;3 05;1 01;3 01;3 07;3 06;5 05;1 01;3 01;3 01;3 01;3 01;3 05;7 05;7 05;7 04;7 01;3 11;5 05;1 01;3 05;7 05;7 05;7 05;7 01;7 01;7 25;7 01;7 +01;3 05;1 01;3 22;1 35;1 05;5 05;1 01;3 01;3 01;3 32;3 01;3 01;3 01;3 19;1 05;1 01;3 11;5 05;1 01;3 11;5 01;3 01;3 01;3 01;7 01;7 01;7 01;7 +05;3 07;1 01;3 01;3 35;5 05;5 05;1 01;3 01;3 01;3 06;3 05;3 05;3 03;7 01;3 05;1 01;3 11;5 05;1 01;3 11;5 01;3 03;7 05;3 01;7 01;7 27;7 01;7 +01;3 01;3 01;3 01;3 01;3 05;5 05;1 01;3 01;3 21;1 05;1 32;3 21;7 05;5 01;3 05;1 01;3 11;5 05;1 01;3 11;5 01;3 05;1 01;3 01;7 01;7 29;7 01;7 +0 0 1;1 0 1;1 0 0 1;1 0 1;1 0 0 0 0 1;1 0 1;1 0 0 1;1 0 1;1 0 0 0 0 1;5 0 +0 0 0 0 0 0 0 1;7 0 0 0 0 0 1;7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +1;7 0 0 0 1;3 0 0 0 0 0 0 1;3 1;7 0 0 0 0 0 0 0 0 0 0 1;3 1;7 0 1;5 1;3 +1;3 0 0 4;3 0 0 0 0 1;1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +1;7 0 0 2;4 0 0 0 2;6 3;5 0 0 2;2 1;7 0 0 0 2;4 0 0 2;6 0 0 0 1;3 1;7 0 1;5 1;3 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1;5 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1;5 0 +1;7 0 3;3 0 0 0 0 0 2;6 0 0 1;3 1;7 0 0 0 2;2 0 0 2;8 0 0 0 1;3 1;7 0 0 1;3 +0 0 0 1;1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1;5 0 +1;7 0 0 0 0 0 0 0 3;5 1;1 0 1;3 1;7 0 0 0 0 0 0 0 0 1;1 0 1;3 1;7 0 0 1;3 +0 0 0 2;2 0 0 0 0 0 0 0 0 0 0 1;3 0 0 0 0 0 0 0 0 0 0 0 1;5 0 +0 0 1;5 0 1;5 0 0 2;3 0 1;5 0 0 0 0 1;5 0 1;5 0 0 1;5 0 3;5 0 0 0 0 0 0 \ No newline at end of file From 7299990f6a15cd1cce1ed34ae1ea6bb6509086df Mon Sep 17 00:00:00 2001 From: EpicKnarvik97 Date: Mon, 4 May 2020 11:48:51 +0200 Subject: [PATCH 06/10] =?UTF-8?q?Fikser=20noen=20sm=C3=A5feil=20og=20forma?= =?UTF-8?q?teringsfeil=20i=20noen=20brett?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../inf112/fiasko/roborally/objects/Tile.java | 2 +- .../resources/boards/Around_The_World.txt | 24 +++++++++---------- src/main/resources/boards/Island_King.txt | 24 +++++++++---------- src/main/resources/boards/Lost_Bearings.txt | 2 +- src/main/resources/boards/Robot_Stew.txt | 24 +++++++++---------- src/test/resources/boards/test_board.txt | 24 +++++++++---------- 6 files changed, 50 insertions(+), 50 deletions(-) diff --git a/src/main/java/inf112/fiasko/roborally/objects/Tile.java b/src/main/java/inf112/fiasko/roborally/objects/Tile.java index 7099ab5..4232ec2 100644 --- a/src/main/java/inf112/fiasko/roborally/objects/Tile.java +++ b/src/main/java/inf112/fiasko/roborally/objects/Tile.java @@ -49,6 +49,6 @@ public class Tile implements BoardElement { @Override public String toString() { return StringUtil.addLeadingZeros(tileType.getTileTypeID(), 2) + ";" + - StringUtil.addLeadingZeros(direction.getDirectionID(), 2); + direction.getDirectionID(); } } diff --git a/src/main/resources/boards/Around_The_World.txt b/src/main/resources/boards/Around_The_World.txt index 97c8cc5..9ed4b99 100644 --- a/src/main/resources/boards/Around_The_World.txt +++ b/src/main/resources/boards/Around_The_World.txt @@ -1,16 +1,16 @@ 28 12 -21;01 01;03 01;03 01;03 01;03 01;03 01;03 01;03 01;03 01;03 01;03 01;03 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;07 01;07 30;07 01;07 -01;03 34;07 35;03 01;03 01;03 01;01 01;03 01;03 01;03 35;07 34;01 01;03 01;1 12;3 11;3 11;3 12;5 01;1 01;1 12;3 11;3 11;3 12;5 01;1 01;07 01;07 28;07 01;07 -01;03 35;05 03;01 05;03 05;03 05;03 05;03 05;03 05;03 05;03 35;05 01;03 17;1 11;1 03;1 01;1 11;5 04;1 01;1 11;1 03;1 01;1 11;5 01;1 01;07 01;07 01;07 01;07 -01;03 01;03 05;01 04;01 05;07 05;07 09;07 05;07 04;01 05;05 01;03 01;03 01;1 11;1 21;1 03;1 11;5 01;1 01;1 11;1 22;1 03;1 11;5 01;1 01;07 01;07 26;07 01;07 -01;03 01;03 05;01 05;05 34;07 35;03 05;01 01;03 05;01 05;05 01;03 01;03 01;1 12;1 11;7 11;7 12;7 01;1 04;1 12;1 11;7 11;7 12;7 01;1 01;07 01;07 01;07 01;07 -01;03 18;01 05;01 05;05 35;05 22;01 05;01 01;03 05;01 05;05 01;03 01;03 01;1 01;1 01;1 01;1 04;1 01;1 01;1 01;1 01;1 04;1 01;1 01;1 01;07 01;07 24;07 01;07 -01;03 01;03 05;01 05;05 01;03 05;05 01;03 35;01 05;01 05;05 01;01 01;03 01;1 01;1 04;1 01;1 01;1 01;1 01;1 04;1 01;1 01;1 19;1 01;1 01;07 01;07 23;07 01;07 -01;03 01;03 05;01 05;05 01;03 05;05 35;07 34;03 05;01 05;05 01;03 01;03 01;1 12;3 11;3 11;3 12;5 04;1 01;1 12;3 11;3 11;3 12;5 01;1 01;07 01;07 01;07 01;07 -01;03 01;03 05;01 04;01 05;03 09;03 05;03 05;03 04;01 05;05 01;03 01;03 01;1 11;1 03;1 22;1 11;5 01;1 01;1 11;1 03;1 21;1 11;5 01;1 01;07 01;07 25;07 01;07 -01;03 35;01 03;01 05;07 05;07 05;07 05;07 05;07 05;07 05;05 35;01 01;03 01;1 11;1 01;1 03;1 11;5 01;1 04;1 11;1 01;1 03;1 11;5 01;1 01;07 01;07 01;07 01;07 -01;03 34;05 35;03 01;03 01;03 01;03 01;03 01;03 01;03 35;07 34;03 01;03 01;1 12;1 11;7 11;7 12;7 01;1 01;1 12;1 11;7 11;7 12;7 01;1 01;07 01;07 27;07 01;07 -01;03 01;03 01;03 01;03 01;03 01;03 01;03 01;01 01;03 21;01 01;03 01;03 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;07 01;07 29;07 01;07 +21;1 01;3 01;3 01;3 01;3 01;3 01;3 01;3 01;3 01;3 01;3 01;3 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;7 01;7 30;7 01;7 +01;3 34;7 35;3 01;3 01;3 01;1 01;3 01;3 01;3 35;7 34;1 01;3 01;1 12;3 11;3 11;3 12;5 01;1 01;1 12;3 11;3 11;3 12;5 01;1 01;7 01;7 28;7 01;7 +01;3 35;5 03;1 05;3 05;3 05;3 05;3 05;3 05;3 05;3 35;5 01;3 17;1 11;1 03;1 01;1 11;5 04;1 01;1 11;1 03;1 01;1 11;5 01;1 01;7 01;7 01;7 01;7 +01;3 01;3 05;1 04;1 05;7 05;7 09;7 05;7 04;1 05;5 01;3 01;3 01;1 11;1 21;1 03;1 11;5 01;1 01;1 11;1 22;1 03;1 11;5 01;1 01;7 01;7 26;7 01;7 +01;3 01;3 05;1 05;5 34;7 35;3 05;1 01;3 05;1 05;5 01;3 01;3 01;1 12;1 11;7 11;7 12;7 01;1 04;1 12;1 11;7 11;7 12;7 01;1 01;7 01;7 01;7 01;7 +01;3 18;1 05;1 05;5 35;5 22;1 05;1 01;3 05;1 05;5 01;3 01;3 01;1 01;1 01;1 01;1 04;1 01;1 01;1 01;1 01;1 04;1 01;1 01;1 01;7 01;7 24;7 01;7 +01;3 01;3 05;1 05;5 01;3 05;5 01;3 35;1 05;1 05;5 01;1 01;3 01;1 01;1 04;1 01;1 01;1 01;1 01;1 04;1 01;1 01;1 19;1 01;1 01;7 01;7 23;7 01;7 +01;3 01;3 05;1 05;5 01;3 05;5 35;7 34;3 05;1 05;5 01;3 01;3 01;1 12;3 11;3 11;3 12;5 04;1 01;1 12;3 11;3 11;3 12;5 01;1 01;7 01;7 01;7 01;7 +01;3 01;3 05;1 04;1 05;3 09;3 05;3 05;3 04;1 05;5 01;3 01;3 01;1 11;1 03;1 22;1 11;5 01;1 01;1 11;1 03;1 21;1 11;5 01;1 01;7 01;7 25;7 01;7 +01;3 35;1 03;1 05;7 05;7 05;7 05;7 05;7 05;7 05;5 35;1 01;3 01;1 11;1 01;1 03;1 11;5 01;1 04;1 11;1 01;1 03;1 11;5 01;1 01;7 01;7 01;7 01;7 +01;3 34;5 35;3 01;3 01;3 01;3 01;3 01;3 01;3 35;7 34;3 01;3 01;1 12;1 11;7 11;7 12;7 01;1 01;1 12;1 11;7 11;7 12;7 01;1 01;7 01;7 27;7 01;7 +01;3 01;3 01;3 01;3 01;3 01;3 01;3 01;1 01;3 21;1 01;3 01;3 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;7 01;7 29;7 01;7 0 0 1;1 0 1;1 0 0 1;1 0 1;1 0 0 0 0 1;1 0 1;1 0 0 1;1 0 1;1 0 0 0 0 1;5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1;7 0 0 0 0 0 1;5 0 0 0 0 1;3 1;7 0 0 1;5 0 0 0 0 0 0 0 1;3 1;7 0 1;5 1;3 diff --git a/src/main/resources/boards/Island_King.txt b/src/main/resources/boards/Island_King.txt index 0723c33..adab0f2 100644 --- a/src/main/resources/boards/Island_King.txt +++ b/src/main/resources/boards/Island_King.txt @@ -1,16 +1,16 @@ 12 16 -01;05 01;05 01;05 01;05 01;05 01;05 01;05 01;05 01;05 01;05 01;05 21;03 -01;05 34;07 35;03 01;05 01;05 01;05 01;05 01;05 01;05 35;07 34;01 01;05 -01;05 35;05 03;03 05;03 05;03 05;03 05;03 05;03 05;03 03;03 35;05 01;05 -01;05 01;05 05;01 04;03 05;07 05;07 05;07 05;07 04;03 05;05 01;05 01;05 -01;05 01;05 05;01 05;05 01;05 17;01 35;07 34;01 05;01 05;05 01;05 01;05 -01;05 01;05 05;01 09;05 05;07 05;07 22;03 35;05 05;01 05;05 01;05 01;05 -01;05 01;05 05;01 05;05 35;01 19;01 05;03 05;03 09;01 05;05 01;05 01;05 -01;05 01;05 05;01 05;05 34;05 35;03 01;05 18;01 05;01 05;05 01;05 01;05 -01;05 01;05 05;01 04;03 05;03 05;03 05;03 05;03 04;03 05;05 01;05 01;05 -21;03 35;01 05;07 05;07 05;07 05;07 05;07 05;07 05;07 05;05 35;01 01;05 -01;05 34;05 35;03 01;05 01;05 01;05 01;05 01;05 01;05 35;07 34;03 01;05 -01;05 01;05 01;05 01;05 01;05 01;05 01;05 01;05 01;05 01;05 01;05 01;05 +01;5 01;5 01;5 01;5 01;5 01;5 01;5 01;5 01;5 01;5 01;5 21;3 +01;5 34;7 35;3 01;5 01;5 01;5 01;5 01;5 01;5 35;7 34;1 01;5 +01;5 35;5 03;3 05;3 05;3 05;3 05;3 05;3 05;3 03;3 35;5 01;5 +01;5 01;5 05;1 04;3 05;7 05;7 05;7 05;7 04;3 05;5 01;5 01;5 +01;5 01;5 05;1 05;5 01;5 17;1 35;7 34;1 05;1 05;5 01;5 01;5 +01;5 01;5 05;1 09;5 05;7 05;7 22;3 35;5 05;1 05;5 01;5 01;5 +01;5 01;5 05;1 05;5 35;1 19;1 05;3 05;3 09;1 05;5 01;5 01;5 +01;5 01;5 05;1 05;5 34;5 35;3 01;5 18;1 05;1 05;5 01;5 01;5 +01;5 01;5 05;1 04;3 05;3 05;3 05;3 05;3 04;3 05;5 01;5 01;5 +21;3 35;1 05;7 05;7 05;7 05;7 05;7 05;7 05;7 05;5 35;1 01;5 +01;5 34;5 35;3 01;5 01;5 01;5 01;5 01;5 01;5 35;7 34;3 01;5 +01;5 01;5 01;5 01;5 01;5 01;5 01;5 01;5 01;5 01;5 01;5 01;5 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 29;1 27;1 01;1 25;1 01;1 23;1 24;1 01;1 26;1 01;1 28;1 30;1 diff --git a/src/main/resources/boards/Lost_Bearings.txt b/src/main/resources/boards/Lost_Bearings.txt index d1407ad..b6fa258 100644 --- a/src/main/resources/boards/Lost_Bearings.txt +++ b/src/main/resources/boards/Lost_Bearings.txt @@ -23,7 +23,7 @@ 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1;7 0 1;1 0 0 0 0 0 0 0 0 1;3 -0 0 0 4;1 2;2 0 0 1;3 0 0 2;8 0 +0 0 0 4;1 2;2 0 0 0 1;7 0 2;8 0 1;7 0 0 0 0 0 0 3;1 0 0 0 1;3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1;5 1;1 1;5 0 0 1;5 0 1;5 0 0 diff --git a/src/main/resources/boards/Robot_Stew.txt b/src/main/resources/boards/Robot_Stew.txt index d424eab..aba7b4d 100644 --- a/src/main/resources/boards/Robot_Stew.txt +++ b/src/main/resources/boards/Robot_Stew.txt @@ -1,16 +1,16 @@ 12 16 -01;05 05;05 01;05 01;05 01;05 05;05 01;05 01;05 05;05 01;05 01;05 21;07 -01;05 05;05 01;05 01;05 01;05 05;05 01;05 01;05 05;05 01;05 01;05 01;05 -01;05 07;03 05;03 02;01 22;07 05;05 01;05 01;05 05;05 02;03 01;05 01;05 -05;03 05;03 05;03 01;05 01;05 03;07 01;05 01;05 04;07 05;03 05;03 05;03 -17;01 01;05 01;05 01;05 01;05 05;05 02;03 01;05 01;05 01;05 01;05 01;05 -05;07 05;07 05;07 05;07 04;07 07;03 05;03 05;03 01;05 01;05 01;05 01;05 -11;03 11;03 12;05 01;05 05;01 22;07 01;05 01;05 04;07 02;05 01;05 01;05 -01;05 01;05 11;05 01;05 01;05 01;05 01;05 01;05 03;07 18;01 01;05 01;05 -11;07 11;07 16;07 11;07 11;07 11;07 11;07 11;07 01;05 05;07 05;07 05;07 -01;05 01;05 01;05 01;05 01;05 03;07 04;07 01;05 01;05 22;07 01;05 01;05 -01;05 02;07 19;01 01;05 01;05 05;05 06;03 05;03 05;03 05;03 01;05 05;03 -21;07 01;05 01;05 01;05 01;05 05;05 05;01 01;05 01;05 01;05 01;05 01;05 +01;5 05;5 01;5 01;5 01;5 05;5 01;5 01;5 05;5 01;5 01;5 21;7 +01;5 05;5 01;5 01;5 01;5 05;5 01;5 01;5 05;5 01;5 01;5 01;5 +01;5 07;3 05;3 02;1 22;7 05;5 01;5 01;5 05;5 02;3 01;5 01;5 +05;3 05;3 05;3 01;5 01;5 03;7 01;5 01;5 04;7 05;3 05;3 05;3 +17;1 01;5 01;5 01;5 01;5 05;5 02;3 01;5 01;5 01;5 01;5 01;5 +05;7 05;7 05;7 05;7 04;7 07;3 05;3 05;3 01;5 01;5 01;5 01;5 +11;3 11;3 12;5 01;5 05;1 22;7 01;5 01;5 04;7 02;5 01;5 01;5 +01;5 01;5 11;5 01;5 01;5 01;5 01;5 01;5 03;7 18;1 01;5 01;5 +11;7 11;7 16;7 11;7 11;7 11;7 11;7 11;7 01;5 05;7 05;7 05;7 +01;5 01;5 01;5 01;5 01;5 03;7 04;7 01;5 01;5 22;7 01;5 01;5 +01;5 02;7 19;1 01;5 01;5 05;5 06;3 05;3 05;3 05;3 01;5 05;3 +21;7 01;5 01;5 01;5 01;5 05;5 05;1 01;5 01;5 01;5 01;5 01;5 29;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 30;1 01;1 27;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 28;1 01;1 05;3 05;3 06;5 25;1 01;1 01;1 01;1 01;1 26;1 07;5 05;7 05;7 diff --git a/src/test/resources/boards/test_board.txt b/src/test/resources/boards/test_board.txt index 4fe6cf5..162a450 100644 --- a/src/test/resources/boards/test_board.txt +++ b/src/test/resources/boards/test_board.txt @@ -1,16 +1,16 @@ 12 12 -05;01 01;01 01;01 01;01 01;01 01;01 01;01 05;01 01;01 01;01 01;01 01;01 -01;01 05;01 01;01 01;01 01;01 01;01 01;01 01;01 01;01 02;01 01;01 01;01 -01;01 05;01 01;01 05;07 01;01 01;01 01;01 01;01 01;01 05;01 01;01 01;01 -01;01 01;01 01;01 01;01 01;01 01;01 01;01 01;01 01;01 01;01 01;01 01;01 -01;01 01;01 01;01 01;01 01;01 11;01 01;01 01;01 01;01 01;01 01;01 01;01 -01;01 01;01 01;01 01;01 11;01 12;07 11;07 01;01 01;01 04;01 01;01 01;01 -01;01 01;01 01;01 01;01 11;01 01;01 01;01 01;01 01;01 01;01 01;01 01;01 -01;01 01;01 01;01 01;01 11;01 05;01 05;03 02;01 01;01 03;01 01;01 01;01 -01;01 07;05 07;07 01;01 11;01 05;01 01;01 05;01 01;01 01;01 01;01 01;01 -01;01 07;03 07;01 01;01 11;01 05;01 01;01 01;01 01;01 01;01 01;01 01;01 -01;01 01;01 01;01 01;01 11;01 05;01 01;01 05;03 01;01 01;01 05;05 01;01 -01;01 01;01 01;01 01;01 01;01 01;01 01;01 01;01 05;01 01;01 01;01 01;01 +05;1 01;1 01;1 01;1 01;1 01;1 01;1 05;1 01;1 01;1 01;1 01;1 +01;1 05;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 02;1 01;1 01;1 +01;1 05;1 01;1 05;7 01;1 01;1 01;1 01;1 01;1 05;1 01;1 01;1 +01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 +01;1 01;1 01;1 01;1 01;1 11;1 01;1 01;1 01;1 01;1 01;1 01;1 +01;1 01;1 01;1 01;1 11;1 12;7 11;7 01;1 01;1 04;1 01;1 01;1 +01;1 01;1 01;1 01;1 11;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 +01;1 01;1 01;1 01;1 11;1 05;1 05;3 02;1 01;1 03;1 01;1 01;1 +01;1 07;5 07;7 01;1 11;1 05;1 01;1 05;1 01;1 01;1 01;1 01;1 +01;1 07;3 07;1 01;1 11;1 05;1 01;1 01;1 01;1 01;1 01;1 01;1 +01;1 01;1 01;1 01;1 11;1 05;1 01;1 05;3 01;1 01;1 05;5 01;1 +01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 05;1 01;1 01;1 01;1 1;1 1;5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 From ec207172e3f340bbbf7fb9e5a2b9b4edce3f2f1d Mon Sep 17 00:00:00 2001 From: EpicKnarvik97 Date: Mon, 4 May 2020 13:04:34 +0200 Subject: [PATCH 07/10] Legger til brettet Oddest Sea --- src/main/resources/boards.txt | 1 + src/main/resources/boards/Oddest_Sea.txt | 25 ++++++++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 src/main/resources/boards/Oddest_Sea.txt diff --git a/src/main/resources/boards.txt b/src/main/resources/boards.txt index 28e1154..22a12f8 100644 --- a/src/main/resources/boards.txt +++ b/src/main/resources/boards.txt @@ -8,6 +8,7 @@ Dizzy_Dash.txt Island_Hop.txt Island_King.txt Lost_Bearings.txt +Oddest_Sea.txt Pilgrimage.txt Risky_Exchange.txt Robot_Stew.txt diff --git a/src/main/resources/boards/Oddest_Sea.txt b/src/main/resources/boards/Oddest_Sea.txt new file mode 100644 index 0000000..a70ab9e --- /dev/null +++ b/src/main/resources/boards/Oddest_Sea.txt @@ -0,0 +1,25 @@ +28 12 +21;5 01;5 01;5 01;5 01;5 05;5 01;5 01;5 01;5 01;5 05;1 01;5 01;3 11;5 01;3 22;1 01;3 11;5 05;1 01;3 01;3 01;3 01;3 21;1 01;7 01;7 30;7 01;7 +01;5 07;5 05;7 05;7 05;7 06;7 01;5 01;5 01;5 01;5 06;1 05;7 01;3 14;3 11;3 11;3 11;3 15;3 11;3 11;3 11;3 12;5 07;5 05;7 01;7 01;7 28;7 01;7 +01;5 05;5 20;1 02;1 01;5 01;5 01;5 01;5 02;3 01;5 01;5 01;5 01;3 11;1 06;3 05;3 05;3 05;3 05;3 05;3 06;5 11;5 05;5 01;3 01;7 01;7 01;7 01;7 +01;5 05;5 01;5 01;5 01;5 01;5 17;1 01;5 01;5 01;5 03;5 05;3 01;3 11;1 05;1 12;3 11;3 11;3 11;3 12;5 05;5 11;5 05;5 01;3 01;7 01;7 26;7 01;7 +01;5 05;5 01;5 01;5 01;5 01;5 01;5 01;5 01;5 01;5 05;1 01;5 01;3 11;1 05;1 11;1 06;3 05;3 06;5 11;5 05;5 11;5 05;5 01;3 01;7 01;7 01;7 01;7 +05;7 06;7 01;5 01;5 01;5 22;5 22;5 01;5 01;5 01;5 05;1 01;5 01;3 11;1 05;1 11;1 05;1 34;7 34;1 11;5 05;5 11;5 09;5 05;7 01;7 01;7 24;7 01;7 +01;5 01;5 01;5 01;5 01;5 22;5 22;5 01;5 19;1 01;5 05;1 01;5 11;3 15;1 05;1 11;1 05;1 34;5 34;3 11;5 05;5 11;5 05;5 05;3 01;7 01;7 23;7 01;7 +01;5 01;5 01;5 01;5 01;5 01;5 01;5 01;5 01;5 01;5 05;1 01;5 01;3 11;1 05;1 11;1 05;1 12;1 11;7 12;7 05;5 11;5 05;5 01;3 01;7 01;7 01;7 01;7 +01;5 05;5 01;5 01;5 01;5 01;5 01;5 01;5 01;5 01;5 06;1 09;7 01;3 11;1 05;1 11;1 06;1 05;7 05;7 05;7 06;7 11;5 05;5 01;3 01;7 01;7 25;7 01;7 +01;5 05;5 01;5 02;7 01;5 01;5 01;5 01;5 02;5 01;5 01;5 05;1 01;3 11;1 05;1 12;1 11;7 11;7 11;7 11;7 11;7 12;7 05;5 01;3 01;7 01;7 01;7 01;7 +01;5 05;5 01;5 01;5 18;1 11;5 01;5 01;5 13;5 11;7 11;7 03;5 11;3 13;1 06;1 05;7 05;7 05;7 09;7 05;7 05;7 05;7 08;7 01;3 01;7 01;7 27;7 01;7 +01;5 05;5 01;5 01;5 01;5 11;5 01;5 01;5 11;5 01;5 01;5 21;5 21;1 01;3 01;3 01;3 01;3 01;3 05;1 01;3 01;3 01;3 05;1 01;3 01;7 01;7 29;7 01;7 +0 0 1;1 0 1;1 0 0 1;1 0 3;1 0 0 0 0 6;1 0 5;1 0 0 5;1 0 6;1 0 0 0 0 1;5 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +1;7 0 0 0 0 5;5 1;5 0 0 0 0 1;3 6;7 0 0 0 0 0 0 0 0 0 0 6;3 1;7 0 1;5 1;3 +0 0 0 0 0 0 0 0 0 1;1 0 0 0 0 0 0 0 3;1 0 0 0 0 0 0 0 0 0 0 +3;7 0 0 0 2;8 0 0 2;2 0 0 0 3;3 5;7 0 0 0 0 0 3;1 0 0 0 0 5;3 1;7 0 1;5 1;3 +0 0 6;3 0 0 0 0 0 0 5;7 0 0 0 0 0 0 3;7 0 0 0 1;3 0 0 0 0 0 1;5 0 +0 0 5;3 0 0 0 0 0 0 1;7 0 0 0 0 0 3;7 0 0 0 1;3 0 0 0 0 0 0 1;5 0 +3;7 0 0 0 2;6 0 0 2;4 0 0 0 3;3 5;7 0 0 0 0 1;5 0 0 0 0 0 5;3 1;7 0 0 1;3 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1;5 0 0 0 0 0 0 0 1;5 0 +1;7 0 0 0 0 5;1 1;1 0 0 0 0 1;3 6;7 0 0 0 0 0 0 0 0 0 0 6;3 1;7 0 0 1;3 +0 0 0 0 0 0 6;3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1;5 0 +0 0 1;5 0 1;5 0 0 1;5 0 1;5 0 0 0 0 6;5 0 5;5 0 0 5;5 0 6;5 0 0 0 0 0 0 \ No newline at end of file From 4f03e48cc93bc3cd979322ecfd3cdcb3c6f094cc Mon Sep 17 00:00:00 2001 From: EpicKnarvik97 Date: Mon, 4 May 2020 13:40:26 +0200 Subject: [PATCH 08/10] Legger til brettet Against the Grain --- src/main/resources/boards.txt | 3 ++- .../resources/boards/Against_the_Grain.txt | 25 +++++++++++++++++++ 2 files changed, 27 insertions(+), 1 deletion(-) create mode 100644 src/main/resources/boards/Against_the_Grain.txt diff --git a/src/main/resources/boards.txt b/src/main/resources/boards.txt index 22a12f8..0dc3ba2 100644 --- a/src/main/resources/boards.txt +++ b/src/main/resources/boards.txt @@ -1,4 +1,5 @@ -13 +17 +Against_the_Grain.txt Around_The_World.txt Bloodbath_Chess.txt Checkmate.txt diff --git a/src/main/resources/boards/Against_the_Grain.txt b/src/main/resources/boards/Against_the_Grain.txt new file mode 100644 index 0000000..a82191c --- /dev/null +++ b/src/main/resources/boards/Against_the_Grain.txt @@ -0,0 +1,25 @@ +28 12 +21;5 01;3 01;3 05;1 01;3 01;3 01;3 01;3 05;5 01;3 05;1 01;3 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 21;7 01;7 01;7 30;7 01;7 +01;3 01;3 01;3 05;1 01;3 01;3 01;3 01;3 05;5 17;1 01;3 01;3 01;1 12;3 11;3 11;3 11;3 11;3 11;3 11;3 11;3 11;3 12;5 01;1 01;7 01;7 28;7 01;7 +01;3 01;3 02;1 05;1 01;3 01;3 02;3 01;3 05;5 22;5 05;1 01;3 01;1 11;1 05;3 01;1 05;3 01;1 05;7 01;1 05;7 01;1 11;5 01;1 01;7 01;7 01;7 01;7 +05;3 05;3 05;3 04;5 01;3 01;3 04;5 03;5 01;3 01;3 05;1 01;3 01;1 11;1 01;1 02;1 01;1 05;3 01;1 05;7 01;1 05;7 11;5 01;1 01;7 01;7 26;7 01;7 +01;3 01;3 01;3 01;3 01;3 05;1 01;3 01;3 11;5 01;3 05;1 01;3 01;1 11;1 05;3 01;1 05;3 01;1 02;1 01;1 05;7 01;1 11;5 01;1 01;7 01;7 01;7 01;7 +01;3 01;3 01;3 01;3 02;1 05;1 01;3 01;3 11;5 04;5 06;1 05;7 01;1 11;1 01;1 05;3 01;1 22;7 01;1 05;7 01;1 05;7 11;5 01;1 01;7 01;7 24;7 01;7 +05;3 05;3 05;3 03;5 05;3 07;1 22;5 01;3 11;5 03;5 05;3 05;3 01;1 11;1 05;3 01;1 05;3 19;1 22;7 01;1 02;1 01;1 11;5 01;1 01;7 01;7 23;7 01;7 +01;3 01;3 22;5 01;3 01;3 04;5 05;7 01;3 11;5 01;3 01;3 01;3 01;1 11;1 01;1 05;3 01;1 02;1 01;1 05;7 01;1 05;7 11;5 01;1 01;7 01;7 01;7 01;7 +01;3 01;3 02;7 18;1 01;3 05;5 01;3 01;3 11;5 01;3 01;3 01;3 01;1 11;1 05;3 01;1 05;3 01;1 05;7 01;1 05;7 01;1 11;5 01;1 01;7 01;7 25;7 01;7 +01;3 01;3 05;1 05;1 01;3 05;5 12;3 11;3 16;5 01;3 01;3 01;3 01;1 11;1 01;1 05;3 01;1 05;3 01;1 05;7 01;1 05;7 11;5 01;1 01;7 01;7 01;7 01;7 +05;3 05;3 07;1 05;1 01;3 05;5 11;1 01;3 11;5 01;3 02;5 01;3 01;1 12;1 11;7 11;7 11;7 11;7 11;7 11;7 11;7 11;7 12;7 01;1 01;7 01;7 27;7 01;7 +01;3 01;3 01;3 05;1 01;3 05;5 11;1 01;3 11;5 01;3 01;3 21;5 21;7 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;1 01;7 01;7 29;7 01;7 +0 0 1;1 0 1;1 0 0 1;1 0 1;1 0 0 0 0 1;1 0 1;1 0 0 1;1 0 1;1 0 0 0 0 1;5 0 +0 1;3 0 0 3;3 0 0 0 0 0 7;7 1;7 0 0 0 1;5 0 1;5 1;5 0 1;5 0 0 0 0 0 0 0 +1;7 0 0 0 0 0 0 0 0 0 0 1;3 1;7 0 0 0 0 0 0 0 0 0 0 1;3 1;7 0 1;5 1;3 +0 0 0 0 0 4;7 0 0 0 1;7 0 0 0 1;3 0 0 0 0 0 0 0 0 1;7 0 0 0 0 0 +1;7 0 0 0 0 0 0 0 0 3;1 0 1;3 1;7 0 0 0 0 0 0 0 0 0 0 1;3 1;7 0 1;5 1;3 +0 1;1 0 3;1 0 0 0 0 0 0 0 0 0 1;3 0 0 0 0 0 0 0 0 1;7 0 0 0 1;5 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 1;3 0 0 0 0 0 0 0 0 1;7 0 0 0 1;5 0 +1;7 0 0 1;5 0 0 0 0 0 0 0 1;3 1;7 0 0 0 0 0 0 0 0 0 0 1;3 1;7 0 0 1;3 +0 0 0 0 0 0 2;2 0 0 0 0 0 0 1;3 0 0 0 0 0 0 0 0 1;7 0 0 0 1;5 0 +1;7 0 0 0 0 0 0 0 0 1;5 0 1;3 1;7 0 0 0 0 0 0 0 0 0 0 1;3 1;7 0 0 1;3 +0 0 0 0 0 0 3;7 0 0 1;7 0 0 0 0 0 1;1 0 1;1 1;1 0 1;1 0 0 0 0 0 1;5 0 +0 0 1;5 0 1;5 0 0 1;5 0 1;5 0 0 0 0 1;5 0 1;5 0 0 1;5 0 1;5 0 0 0 0 0 0 \ No newline at end of file From a1c8b495b89994cd0c99b488e7f87f10be434bc2 Mon Sep 17 00:00:00 2001 From: EpicKnarvik97 Date: Tue, 5 May 2020 12:31:46 +0200 Subject: [PATCH 09/10] =?UTF-8?q?Fjerner=20automatisk=20reset=20av=20kamer?= =?UTF-8?q?a=20n=C3=A5r=20brettvisningsskjermen=20byttes=20til?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../fiasko/roborally/ui/screens/BoardActiveScreen.java | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/main/java/inf112/fiasko/roborally/ui/screens/BoardActiveScreen.java b/src/main/java/inf112/fiasko/roborally/ui/screens/BoardActiveScreen.java index 852d9e7..36e9f58 100644 --- a/src/main/java/inf112/fiasko/roborally/ui/screens/BoardActiveScreen.java +++ b/src/main/java/inf112/fiasko/roborally/ui/screens/BoardActiveScreen.java @@ -58,12 +58,6 @@ public class BoardActiveScreen extends InteractiveScreen { lastTouch = new Vector2(); } - @Override - public void show() { - super.show(); - resetCamera(); - } - @Override public void render(float delta) { super.render(delta); From 979703bcf9bf7196adf811c7b212ad39700d82e3 Mon Sep 17 00:00:00 2001 From: EpicKnarvik97 Date: Tue, 5 May 2020 12:33:20 +0200 Subject: [PATCH 10/10] =?UTF-8?q?Legger=20til=20automatisk=20rotasjon=20av?= =?UTF-8?q?=20brett=20med=20st=C3=B8rre=20bredde=20enn=20h=C3=B8yde?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../roborally/utility/BoardLoaderUtil.java | 57 ++++++++----------- .../fiasko/roborally/objects/PhaseTest.java | 6 +- 2 files changed, 27 insertions(+), 36 deletions(-) diff --git a/src/main/java/inf112/fiasko/roborally/utility/BoardLoaderUtil.java b/src/main/java/inf112/fiasko/roborally/utility/BoardLoaderUtil.java index 0c51290..ec52397 100644 --- a/src/main/java/inf112/fiasko/roborally/utility/BoardLoaderUtil.java +++ b/src/main/java/inf112/fiasko/roborally/utility/BoardLoaderUtil.java @@ -51,6 +51,26 @@ public final class BoardLoaderUtil { return boards; } + /** + * Loads a board described in a file + * + * @param boardFile The file containing the board description + * @param robotList A list of robots on the board + * @return A board + * @throws IOException If the board file cannot be loaded + */ + public static Board loadBoard(String boardFile, List robotList) throws IOException { + TwoTuple, Grid> grids = loadBoardGrids(boardFile); + Grid tileGrid = grids.value1; + Grid wallGrid = grids.value2; + if (grids.value1.getHeight() < grids.value1.getWidth()) { + tileGrid = rotateGrid(tileGrid, true); + wallGrid = rotateGrid(wallGrid, true); + } + adjustRobotRotationToBoardRotation(tileGrid, robotList); + return new Board(tileGrid, wallGrid, robotList); + } + /** * Gets a list of all available boards * @@ -69,21 +89,6 @@ public final class BoardLoaderUtil { return boardList; } - /** - * Loads and rotates a board described in a file - * - * @param boardFile The file containing the board description - * @param robotList A list of robots on the board - * @param clockwise Whether to rotate the board clockwise - * @return A board - * @throws IOException If the board file cannot be loaded - */ - public static Board loadBoardRotated(String boardFile, List robotList, boolean clockwise) throws IOException { - TwoTuple, Grid> grids = loadBoardGrids(boardFile); - adjustRobotRotationToBoardRotation(grids.value1, robotList); - return new Board(rotateGrid(grids.value1, clockwise), rotateGrid(grids.value2, clockwise), robotList); - } - /** * Loads the grids necessary to create a board * @@ -138,20 +143,6 @@ public final class BoardLoaderUtil { return newGrid; } - /** - * Loads a board described in a file - * - * @param boardFile The file containing the board description - * @param robotList A list of robots on the board - * @return A board - * @throws IOException If the board file cannot be loaded - */ - public static Board loadBoard(String boardFile, List robotList) throws IOException { - TwoTuple, Grid> grids = loadBoardGrids(boardFile); - adjustRobotRotationToBoardRotation(grids.value1, robotList); - return new Board(grids.value1, grids.value2, robotList); - } - /** * Changes the direction of robots to the direction which is up * @@ -159,13 +150,13 @@ public final class BoardLoaderUtil { * @param robotList The list of robots on the board */ private static void adjustRobotRotationToBoardRotation(Grid tileGrid, List robotList) { - //The flags are always in the up direction - List> flags = GridUtil.getMatchingElements(TileType.ROBOT_SPAWN_1, tileGrid); + //The spawns are always in the up direction + List> spawns = GridUtil.getMatchingElements(TileType.ROBOT_SPAWN_1, tileGrid); Direction boardDirection; - if (flags.size() == 0) { + if (spawns.size() == 0) { boardDirection = Direction.NORTH; } else { - boardDirection = flags.get(0).getElement().getDirection(); + boardDirection = spawns.get(0).getElement().getDirection(); } for (Robot robot : robotList) { robot.setFacingDirection(boardDirection); diff --git a/src/test/java/inf112/fiasko/roborally/objects/PhaseTest.java b/src/test/java/inf112/fiasko/roborally/objects/PhaseTest.java index cccccd1..611ac68 100644 --- a/src/test/java/inf112/fiasko/roborally/objects/PhaseTest.java +++ b/src/test/java/inf112/fiasko/roborally/objects/PhaseTest.java @@ -86,21 +86,21 @@ public class PhaseTest { assertTrue(robot.hasTouchedFlagThisTurn()); robot.setHasTouchedFlagThisTurn(false); assertNull(testGame.getWinningPlayerName()); - board.moveRobot(robotID, Direction.EAST); + board.moveRobot(robotID, Direction.SOUTH); testPhase.checkAllFlags(); //Should have registered second flag assertEquals(2, robot.getLastFlagVisited()); assertTrue(robot.hasTouchedFlagThisTurn()); assertNull(testGame.getWinningPlayerName()); robot.setHasTouchedFlagThisTurn(false); - board.moveRobot(robotID, Direction.EAST); + board.moveRobot(robotID, Direction.SOUTH); testPhase.checkAllFlags(); //Should have registered third flag assertEquals(3, robot.getLastFlagVisited()); assertTrue(robot.hasTouchedFlagThisTurn()); assertNull(testGame.getWinningPlayerName()); robot.setHasTouchedFlagThisTurn(false); - board.moveRobot(robotID, Direction.EAST); + board.moveRobot(robotID, Direction.SOUTH); testPhase.checkAllFlags(); //Should have registered fourth and last flag assertEquals(4, robot.getLastFlagVisited());