diff --git a/pac-man-board-game/ClientApp/src/components/gameComponent.tsx b/pac-man-board-game/ClientApp/src/components/gameComponent.tsx index dda65c4..cd2a355 100644 --- a/pac-man-board-game/ClientApp/src/components/gameComponent.tsx +++ b/pac-man-board-game/ClientApp/src/components/gameComponent.tsx @@ -69,7 +69,7 @@ export const GameComponent: Component<{ player: Player }> = ({player}) => { return () => wsService.close(); }, []); - function sendReady() { + function sendReady(): void { wsService.send({Action: GameAction.ready}); } diff --git a/pac-man-board-game/ClientApp/src/pages/game.tsx b/pac-man-board-game/ClientApp/src/pages/game.tsx index 1c3fb69..e34b3cb 100644 --- a/pac-man-board-game/ClientApp/src/pages/game.tsx +++ b/pac-man-board-game/ClientApp/src/pages/game.tsx @@ -4,7 +4,7 @@ import {useAtom} from "jotai"; import {thisPlayerAtom} from "../utils/state"; const Game: Component = () => { - const [player] = useAtom(thisPlayerAtom); + const [player] = useAtom(thisPlayerAtom); // TODO get player from session storage useEffect(() => { if (!player) { diff --git a/pac-man-board-game/ClientApp/src/pages/home.tsx b/pac-man-board-game/ClientApp/src/pages/home.tsx index dece757..11454bc 100644 --- a/pac-man-board-game/ClientApp/src/pages/home.tsx +++ b/pac-man-board-game/ClientApp/src/pages/home.tsx @@ -4,14 +4,14 @@ import Input from "../components/input"; import Dropdown from "../components/dropdown"; import {Colour, getColours} from "../game/colour"; import {useNavigate} from "react-router-dom"; -import {useAtom} from "jotai"; +import {useSetAtom} from "jotai"; import {thisPlayerAtom} from "../utils/state"; const Home: Component = () => { const input = useRef(null); const dropdown = useRef(null); - const [, setPlayer] = useAtom(thisPlayerAtom); + const setPlayer = useSetAtom(thisPlayerAtom); const navigate = useNavigate(); function formHandler(): void { diff --git a/pac-man-board-game/ClientApp/src/types/types.d.ts b/pac-man-board-game/ClientApp/src/types/types.d.ts index 53258bb..80c3cc9 100644 --- a/pac-man-board-game/ClientApp/src/types/types.d.ts +++ b/pac-man-board-game/ClientApp/src/types/types.d.ts @@ -5,7 +5,7 @@ type Setter = React.Dispatch>; type WebSocketData = string | ArrayBufferLike | Blob | ArrayBufferView; type ActionMessage = { - Action: import("../websockets/actions").GameAction, + Action: import("../utils/actions").GameAction, Data?: T } diff --git a/pac-man-board-game/ClientApp/src/utils/actions.ts b/pac-man-board-game/ClientApp/src/utils/actions.ts index 013a056..f0ac9c0 100644 --- a/pac-man-board-game/ClientApp/src/utils/actions.ts +++ b/pac-man-board-game/ClientApp/src/utils/actions.ts @@ -20,10 +20,10 @@ const ghosts = [ const store = getDefaultStore(); -export function doAction(message: MessageEvent): void { // TODO divide into smaller functions +export const doAction: MessageEventFunction = (message): void => { // TODO divide into smaller functions const parsed: ActionMessage = JSON.parse(message.data); - switch (parsed.Action) { + switch (parsed.Action as GameAction) { case GameAction.rollDice: store.set(diceAtom, parsed.Data as number[]); break; @@ -49,7 +49,7 @@ export function doAction(message: MessageEvent): void { // TODO divide i store.set(playersAtom, (parsed.Data.Players as PlayerProps[]).map(p => new Player(p))); break; } -} +}; function removeEatenPellets(parsed: ActionMessage): void { const pellets = parsed.Data?.eatenPellets as Position[]; diff --git a/pac-man-board-game/ClientApp/src/utils/state.ts b/pac-man-board-game/ClientApp/src/utils/state.ts index b3bd078..f8cf243 100644 --- a/pac-man-board-game/ClientApp/src/utils/state.ts +++ b/pac-man-board-game/ClientApp/src/utils/state.ts @@ -1,11 +1,14 @@ -// TODO merge character and player atoms, since the player is the owner of the character import Player from "../game/player"; import {atom} from "jotai"; import {Character} from "../game/character"; +import {atomWithStorage, createJSONStorage} from "jotai/utils"; +const playerStorage = createJSONStorage(() => sessionStorage); + +// TODO merge character and player atoms, since the player is the owner of the character export const charactersAtom = atom(undefined); export const playersAtom = atom([]); -export const thisPlayerAtom = atom(undefined); +export const thisPlayerAtom = atomWithStorage("player", undefined, playerStorage); export const diceAtom = atom(undefined); export const selectedDiceAtom = atom(undefined); export const currentPlayerAtom = atom(undefined); diff --git a/pac-man-board-game/Controllers/GenericController.cs b/pac-man-board-game/Controllers/GenericController.cs index 9799cb5..f915c4f 100644 --- a/pac-man-board-game/Controllers/GenericController.cs +++ b/pac-man-board-game/Controllers/GenericController.cs @@ -59,7 +59,7 @@ public abstract class GenericController : ControllerBase WsService.SendToAll(segment); } while (true); - await WsService.Close(_webSocket, result.CloseStatus.Value, result.CloseStatusDescription ?? "No reason"); + await WsService.Close(_webSocket, result.CloseStatus.Value, result.CloseStatusDescription); } catch (WebSocketException e) { @@ -70,4 +70,4 @@ public abstract class GenericController : ControllerBase } protected abstract ArraySegment Run(WebSocketReceiveResult result, byte[] data); -} \ No newline at end of file +} diff --git a/pac-man-board-game/Interfaces/IWebSocketService.cs b/pac-man-board-game/Interfaces/IWebSocketService.cs index d85c33e..65c8264 100644 --- a/pac-man-board-game/Interfaces/IWebSocketService.cs +++ b/pac-man-board-game/Interfaces/IWebSocketService.cs @@ -10,7 +10,7 @@ public interface IWebSocketService Task Send(WebSocket webSocket, ArraySegment segment); void SendToAll(ArraySegment segment); Task Receive(WebSocket webSocket, byte[] buffer); - Task Close(WebSocket webSocket, WebSocketCloseStatus closeStatus, string closeStatusDescription); + Task Close(WebSocket webSocket, WebSocketCloseStatus closeStatus, string? closeStatusDescription); int CountConnected(); GameGroup AddPlayer(IPlayer player); -} \ No newline at end of file +} diff --git a/pac-man-board-game/Services/ActionService.cs b/pac-man-board-game/Services/ActionService.cs index e2ceb3d..f1661d4 100644 --- a/pac-man-board-game/Services/ActionService.cs +++ b/pac-man-board-game/Services/ActionService.cs @@ -9,9 +9,9 @@ namespace pacMan.Services; public interface IActionService { void DoAction(ActionMessage message); - List RollDice(ActionMessage message); + List RollDice(); List PlayerInfo(ActionMessage message); - object Ready(ActionMessage message); + object Ready(); } public class ActionService : IActionService // TODO tests @@ -34,15 +34,14 @@ public class ActionService : IActionService // TODO tests { message.Data = message.Action switch { - GameAction.RollDice => RollDice(message), - + GameAction.RollDice => RollDice(), GameAction.PlayerInfo => PlayerInfo(message), - GameAction.Ready => Ready(message), + GameAction.Ready => Ready(), _ => message.Data }; } - public List RollDice(ActionMessage message) + public List RollDice() { var rolls = _diceCup.Roll(); _logger.Log(LogLevel.Information, "Rolled [{}]", string.Join(", ", rolls)); @@ -58,7 +57,7 @@ public class ActionService : IActionService // TODO tests return _group.Players; } - public object Ready(ActionMessage message) + public object Ready() { object data; if (_player != null) diff --git a/pac-man-board-game/Services/WebSocketService.cs b/pac-man-board-game/Services/WebSocketService.cs index 5f24ce0..919668f 100644 --- a/pac-man-board-game/Services/WebSocketService.cs +++ b/pac-man-board-game/Services/WebSocketService.cs @@ -44,8 +44,7 @@ public class WebSocketService : IWebSocketService // TODO add tests return result; } - public async Task Close(WebSocket webSocket, WebSocketCloseStatus closeStatus, - string closeStatusDescription = "No reason") + public async Task Close(WebSocket webSocket, WebSocketCloseStatus closeStatus, string? closeStatusDescription) { await webSocket.CloseAsync( closeStatus,