From 12b40702c8f8ae4c13e5695ef75f621f38151f90 Mon Sep 17 00:00:00 2001 From: Martin Berg Alstad <600878@stud.hvl.no> Date: Sat, 22 Jul 2023 21:20:30 +0200 Subject: [PATCH] Refactored box to use number instead of list of objects --- BackendTests/Services/ActionServiceTests.cs | 6 ++-- BackendTests/TestUtils/Players.cs | 3 +- .../ClientApp/src/components/gameBoard.tsx | 15 ++++++---- .../src/components/gameComponent.tsx | 1 - .../ClientApp/src/components/playerStats.tsx | 7 +++-- pac-man-board-game/ClientApp/src/game/box.ts | 28 +++++++++++-------- .../ClientApp/src/game/pellet.ts | 7 ----- .../ClientApp/src/game/player.ts | 15 ++++++---- .../ClientApp/src/types/props.d.ts | 3 +- pac-man-board-game/GameStuff/Items/Box.cs | 15 +++------- pac-man-board-game/GameStuff/Items/Pellet.cs | 24 ---------------- pac-man-board-game/pac-man-board-game.csproj | 1 + 12 files changed, 49 insertions(+), 76 deletions(-) delete mode 100644 pac-man-board-game/ClientApp/src/game/pellet.ts delete mode 100644 pac-man-board-game/GameStuff/Items/Pellet.cs diff --git a/BackendTests/Services/ActionServiceTests.cs b/BackendTests/Services/ActionServiceTests.cs index 34bc635..721feb8 100644 --- a/BackendTests/Services/ActionServiceTests.cs +++ b/BackendTests/Services/ActionServiceTests.cs @@ -11,9 +11,9 @@ namespace BackendTests.Services; public class ActionServiceTests { private readonly Player _blackPlayer = Players.Create("black"); - private readonly Player _redPlayer = (Player)Players.Create("red"); + private readonly Player _redPlayer = Players.Create("red"); - private readonly Player _whitePlayer = (Player)Players.Create("white"); + private readonly Player _whitePlayer = Players.Create("white"); private ActionMessage _blackMessage = null!; private GameService _gameService = null!; private ActionMessage _redMessage = null!; @@ -92,7 +92,7 @@ public class ActionServiceTests public void PlayerInfo_DataIsNotPlayer() { var serialized = - JsonDocument.Parse(JsonSerializer.Serialize(new Box { Colour = "white", Pellets = new List() })); + JsonDocument.Parse(JsonSerializer.Serialize(new Box { Colour = "white" })); var message = new ActionMessage { Action = GameAction.PlayerInfo, diff --git a/BackendTests/TestUtils/Players.cs b/BackendTests/TestUtils/Players.cs index 9301a4a..2083995 100644 --- a/BackendTests/TestUtils/Players.cs +++ b/BackendTests/TestUtils/Players.cs @@ -24,8 +24,7 @@ internal static class Players internal static Box CreateBox(string colour) => new() { - Colour = colour, - Pellets = new List() + Colour = colour }; internal static Player Clone(this Player player) => diff --git a/pac-man-board-game/ClientApp/src/components/gameBoard.tsx b/pac-man-board-game/ClientApp/src/components/gameBoard.tsx index a72d4aa..890de9d 100644 --- a/pac-man-board-game/ClientApp/src/components/gameBoard.tsx +++ b/pac-man-board-game/ClientApp/src/components/gameBoard.tsx @@ -3,9 +3,8 @@ import {Character} from "../game/character"; import findPossiblePositions from "../game/possibleMovesAlgorithm"; import {GameTile} from "./gameTile"; import {TileType} from "../game/tileType"; -import {atom, PrimitiveAtom, useAtom, useAtomValue, useSetAtom} from "jotai"; +import {atom, useAtom, useAtomValue, useSetAtom} from "jotai"; import {allCharactersAtom, currentPlayerAtom, playersAtom, selectedDiceAtom} from "../utils/state"; -import Pellet from "../game/pellet"; import {Dialog, Transition} from "@headlessui/react"; interface BoardProps extends ComponentProps { @@ -13,7 +12,7 @@ interface BoardProps extends ComponentProps { map: GameMap } -const modalOpenAtom: PrimitiveAtom = atom(false); +const modalOpenAtom = atom(false); const Board: FC = ( { @@ -77,7 +76,11 @@ const Board: FC = ( const currentTile = map[tile.y][tile.x]; function updateTileAndPlayerBox(isPowerPellet = false): void { - currentPlayer?.addPellet(new Pellet(isPowerPellet)); + if (isPowerPellet) { + currentPlayer?.addPowerPellet(); + } else { + currentPlayer?.addPellet(); + } map[tile.y][tile.x] = TileType.empty; positions.push(tile); } @@ -182,10 +185,10 @@ const SelectPlayerModal: FC = () => { { allPlayers.map(player =>
- {player.username} has {player.box.count} pellets + {player.username} has {player.box.pellets} pellets
); diff --git a/pac-man-board-game/ClientApp/src/game/box.ts b/pac-man-board-game/ClientApp/src/game/box.ts index 0d0caf8..0504976 100644 --- a/pac-man-board-game/ClientApp/src/game/box.ts +++ b/pac-man-board-game/ClientApp/src/game/box.ts @@ -1,28 +1,32 @@ -import Pellet from "./pellet"; - export default class Box implements BoxProps { - public pellets; public readonly colour; + public pellets; + public powerPellets; - public constructor({colour, pellets = []}: BoxProps) { + public constructor({colour, pellets = 0, powerPellets = 0}: BoxProps) { this.colour = colour; this.pellets = pellets; + this.powerPellets = powerPellets; } - get powerPellet(): Pellet | undefined { - return this.pellets.find(pellet => pellet.isPowerPellet); + public addPellet(): void { + this.pellets++; } - get count(): number { - return this.pellets.filter(pellet => !pellet.isPowerPellet).length; + public removePellet(): boolean { + if (this.pellets <= 0) return false; + this.pellets--; + return true; } - get countPowerPellets(): number { - return this.pellets.filter(pellet => pellet.isPowerPellet).length; + public addPowerPellet(): void { + this.powerPellets++; } - public addPellet(pellet: Pellet): void { - this.pellets.push(pellet); + public removePowerPellet(): boolean { + if (this.powerPellets <= 0) return false; + this.powerPellets--; + return true; } } diff --git a/pac-man-board-game/ClientApp/src/game/pellet.ts b/pac-man-board-game/ClientApp/src/game/pellet.ts deleted file mode 100644 index 64cff0c..0000000 --- a/pac-man-board-game/ClientApp/src/game/pellet.ts +++ /dev/null @@ -1,7 +0,0 @@ -export default class Pellet { - public readonly isPowerPellet: boolean; - - public constructor(isPowerPellet = false) { - this.isPowerPellet = isPowerPellet; - } -} diff --git a/pac-man-board-game/ClientApp/src/game/player.ts b/pac-man-board-game/ClientApp/src/game/player.ts index cc7fed8..ecec3b2 100644 --- a/pac-man-board-game/ClientApp/src/game/player.ts +++ b/pac-man-board-game/ClientApp/src/game/player.ts @@ -2,7 +2,6 @@ import {Character, CharacterType} from "./character"; import Box from "./box"; import {getDefaultStore} from "jotai"; import {currentPlayerNameAtom, playersAtom} from "../utils/state"; -import Pellet from "./pellet"; import rules from "./rules"; export enum State { @@ -35,15 +34,19 @@ export default class Player implements PlayerProps { return Player.store.get(currentPlayerNameAtom) === this.username; } - public addPellet(pellet: Pellet): void { - this.box.addPellet(pellet); + public addPellet(): void { + this.box.addPellet(); + } + + public addPowerPellet(): void { + this.box.addPowerPellet(); } public stealFrom(other: Player): void { for (let i = 0; i < rules.maxStealPellets; i++) { - const pellet = other.box.pellets.pop(); - if (pellet) - this.box.addPellet(pellet); + const removed = other.box.removePellet(); + if (removed) + this.box.addPellet(); } Player.store.set(playersAtom, Player.store.get(playersAtom).map(player => player)); } diff --git a/pac-man-board-game/ClientApp/src/types/props.d.ts b/pac-man-board-game/ClientApp/src/types/props.d.ts index c6fa886..0904e11 100644 --- a/pac-man-board-game/ClientApp/src/types/props.d.ts +++ b/pac-man-board-game/ClientApp/src/types/props.d.ts @@ -38,7 +38,8 @@ interface CharacterProps { } interface BoxProps { - pellets?: import("../game/pellet").default[], + pellets?: number, + powerPellets?: number, readonly colour: import("../game/colour").Colour, } diff --git a/pac-man-board-game/GameStuff/Items/Box.cs b/pac-man-board-game/GameStuff/Items/Box.cs index ced418f..4041e71 100644 --- a/pac-man-board-game/GameStuff/Items/Box.cs +++ b/pac-man-board-game/GameStuff/Items/Box.cs @@ -4,23 +4,16 @@ namespace pacMan.GameStuff.Items; public class Box : IEquatable { - [JsonPropertyName("pellets")] public List? Pellets { get; init; } = new(); + [JsonPropertyName("pellets")] public int Pellets { get; init; } + [JsonPropertyName("powerPellets")] public int PowerPellet { get; init; } [JsonPropertyName("colour")] public required string Colour { get; init; } - public int CountNormal => Pellets?.Count(pellet => !pellet.IsPowerPellet) ?? 0; - public bool Equals(Box? other) { if (ReferenceEquals(null, other)) return false; if (ReferenceEquals(this, other)) return true; - return (Equals(Pellets, other.Pellets) || (Pellets?.Count == 0 && other.Pellets?.Count == 0)) && - Colour == other.Colour; - } - - public void Add(Pellet pellet) - { - Pellets?.Add(pellet); + return Pellets == other.Pellets && PowerPellet == other.PowerPellet && Colour == other.Colour; } public override bool Equals(object? obj) @@ -30,5 +23,5 @@ public class Box : IEquatable return obj.GetType() == GetType() && Equals((Box)obj); } - public override int GetHashCode() => HashCode.Combine(Pellets, Colour); + public override int GetHashCode() => HashCode.Combine(Pellets, PowerPellet, Colour); } diff --git a/pac-man-board-game/GameStuff/Items/Pellet.cs b/pac-man-board-game/GameStuff/Items/Pellet.cs deleted file mode 100644 index 045ca67..0000000 --- a/pac-man-board-game/GameStuff/Items/Pellet.cs +++ /dev/null @@ -1,24 +0,0 @@ -using System.Text.Json.Serialization; - -namespace pacMan.GameStuff.Items; - -public class Pellet : IEquatable -{ - [JsonPropertyName("isPowerPellet")] public bool IsPowerPellet { get; init; } - - public bool Equals(Pellet? other) - { - if (ReferenceEquals(null, other)) return false; - if (ReferenceEquals(this, other)) return true; - return IsPowerPellet == other.IsPowerPellet; - } - - public override bool Equals(object? obj) - { - if (ReferenceEquals(null, obj)) return false; - if (ReferenceEquals(this, obj)) return true; - return obj.GetType() == GetType() && Equals((Pellet)obj); - } - - public override int GetHashCode() => IsPowerPellet.GetHashCode(); -} diff --git a/pac-man-board-game/pac-man-board-game.csproj b/pac-man-board-game/pac-man-board-game.csproj index 1e37d0b..a6a781e 100644 --- a/pac-man-board-game/pac-man-board-game.csproj +++ b/pac-man-board-game/pac-man-board-game.csproj @@ -48,6 +48,7 @@ +