From 4b3a5a5ea3f444fd5a5062c5fa8b5e7bd5e8724a Mon Sep 17 00:00:00 2001 From: aleandro Date: Sun, 14 Jun 2026 21:07:49 +0200 Subject: [PATCH] Mid commit for problem solving --- src/main/java/it/polimi/ingsw/gc14/ClientLauncherTUI.java | 4 ++-- .../java/it/polimi/ingsw/gc14/GameEventProcessor.java | 6 +++--- .../it/polimi/ingsw/gc14/Model/GamePackage/Board.java | 2 +- .../polimi/ingsw/gc14/Model/GamePackage/CurrentState.java | 2 +- .../java/it/polimi/ingsw/gc14/Model/OrderLogicCard.java | 2 +- .../it/polimi/ingsw/gc14/Network/InterfaceResolver.java | 2 +- .../polimi/ingsw/gc14/Network/RMI/Client/RMIClient.java | 2 +- src/main/java/it/polimi/ingsw/gc14/ServerLauncher.java | 4 ++-- .../it/polimi/ingsw/gc14/View/GUI/FireParticleSystem.java | 8 ++++---- src/main/java/it/polimi/ingsw/gc14/View/GUI/GUI.java | 4 ++-- .../polimi/ingsw/gc14/View/GUI/TotemFXMLController.java | 2 +- .../java/it/polimi/ingsw/gc14/View/TUI/AsciiTable.java | 3 ++- .../gc14/Model/Cards/TribeCards/Events/HuntTest.java | 2 +- .../Model/Cards/TribeCards/Events/SustenanceTest.java | 2 +- 14 files changed, 23 insertions(+), 22 deletions(-) diff --git a/src/main/java/it/polimi/ingsw/gc14/ClientLauncherTUI.java b/src/main/java/it/polimi/ingsw/gc14/ClientLauncherTUI.java index 9aacd2a..001f2bb 100644 --- a/src/main/java/it/polimi/ingsw/gc14/ClientLauncherTUI.java +++ b/src/main/java/it/polimi/ingsw/gc14/ClientLauncherTUI.java @@ -303,7 +303,7 @@ public class ClientLauncherTUI { /** * Handles the {@code draw} command, dispatching to the appropriate controller draw method. * - * @param parts the tokenised command: {@code [draw, upper|lower, tribe|building, pos]}. + * @param parts the tokenized command: {@code [draw, upper|lower, tribe|building, pos]}. * @param controller the client controller to invoke. */ private void handleDraw(String[] parts, ClientController controller) { @@ -331,7 +331,7 @@ public class ClientLauncherTUI { /** * Parses an integer position argument at {@code idx} in {@code parts}. * - * @param parts the tokenised command array. + * @param parts the tokenized command array. * @param idx index of the position argument. * @return the parsed integer, or {@code -1} if missing or malformed. */ diff --git a/src/main/java/it/polimi/ingsw/gc14/GameEventProcessor.java b/src/main/java/it/polimi/ingsw/gc14/GameEventProcessor.java index 33c18a5..a8aae23 100644 --- a/src/main/java/it/polimi/ingsw/gc14/GameEventProcessor.java +++ b/src/main/java/it/polimi/ingsw/gc14/GameEventProcessor.java @@ -21,7 +21,7 @@ import java.util.stream.Collectors; *

The three top-level states that determine routing are: *