Added createGame button

This commit is contained in:
Martin Berg Alstad 2023-07-20 16:14:27 +02:00
parent bc0bfbea0f
commit 0c9ba333ea
6 changed files with 52 additions and 14 deletions

View File

@ -3,12 +3,11 @@ import {AllDice} from "./dice";
import {doAction, GameAction} from "../utils/actions";
import GameBoard from "./gameBoard";
import WebSocketService from "../websockets/WebSocketService";
import {getCharacterSpawns} from "../game/map";
import {getPacManSpawns} from "../game/map";
import Player from "../game/player";
import PlayerStats from "../components/playerStats";
import {useAtom, useAtomValue, useSetAtom} from "jotai";
import {diceAtom, ghostsAtom, playersAtom, rollDiceButtonAtom, selectedDiceAtom} from "../utils/state";
import {CharacterType} from "../game/character";
import GameButton from "./gameButton";
const wsService = new WebSocketService(import.meta.env.VITE_API_WS);
@ -66,10 +65,8 @@ export const GameComponent: FC<{ player: Player, map: GameMap }> = ({player, map
wsService.send({
Action: GameAction.playerInfo,
Data: {
Player: player, Spawns: getCharacterSpawns(map)
.filter(s => s.type === CharacterType.pacMan)
.map(s => s.position)
}
Player: player, Spawns: getPacManSpawns(map)
} as PlayerInfoData
});
}

View File

@ -40,4 +40,10 @@ export function getCharacterSpawns(map: GameMap): { type: CharacterType, positio
}
return result;
}
export function getPacManSpawns(map: GameMap): DirectionalPosition[] {
return getCharacterSpawns(map)
.filter(s => s.type === CharacterType.pacMan)
.map(s => s.position)
}

View File

@ -3,6 +3,8 @@ import {atom, useAtomValue} from "jotai";
import {Button} from "../components/button";
import {thisPlayerAtom} from "../utils/state";
import {getData, postData} from "../utils/api";
import {getPacManSpawns, testMap} from "../game/map";
import {useNavigate} from "react-router-dom";
const fetchAtom = atom(async () => {
const response = await getData("/game/all");
@ -10,11 +12,38 @@ const fetchAtom = atom(async () => {
});
// TODO create game button
const LobbyPage: FC = () => ( // TODO check if player is defined in storage, if not redirect to login
<Suspense fallback={"Please wait"}>
<GameTable className={"mx-auto"}/>
</Suspense>
)
const LobbyPage: FC = () => { // TODO check if player is defined in storage, if not redirect to login
const thisPlayer = useAtomValue(thisPlayerAtom);
const navigate = useNavigate();
async function createGame(): Promise<void> {
const response = await postData("/game/create", {
body: {Player: thisPlayer, Spawns: getPacManSpawns(testMap)} as PlayerInfoData
});
const data = await response.json();
if (response.ok) {
console.debug("Game created: ", data);
// TODO redirect to game page
} else {
console.error("Error: ", data);
// TODO display error
}
}
return (
<>
<Button onClick={createGame}>New game</Button>
<Suspense fallback={"Please wait"}>
<GameTable className={"mx-auto"}/>
</Suspense>
</>
);
}
export default LobbyPage;

View File

@ -53,3 +53,8 @@ type ApiRequest = {
headers?: HeadersInit,
body?: any
}
type PlayerInfoData = {
readonly Player: PlayerProps,
readonly Spawns: DirectionalPosition[],
}

View File

@ -51,7 +51,7 @@ public class GameController : GenericController // TODO reconnect using player i
}
}
[HttpPost("createGame")]
[HttpPost("create")]
public IActionResult CreateGame([FromBody] PlayerInfoData data)
{
Logger.Log(LogLevel.Debug, "Creating game");

View File

@ -28,6 +28,7 @@ public class Player : IPlayer, IEquatable<Player>
return Username == other.Username;
}
// [JsonPropertyName("username")]
public required string Username { get; init; }
public required Character PacMan { get; init; }
public required string Colour { get; init; }
@ -49,9 +50,9 @@ public class Player : IPlayer, IEquatable<Player>
Username = user.Username,
PacMan = new Character
{
Colour = user.Colour,
Colour = user.Colour ?? "white",
Type = CharacterType.PacMan
},
Colour = user.Colour
Colour = user.Colour ?? "white"
};
}