Redirect to lobby if game does not exists
This commit is contained in:
parent
12edaab1f4
commit
348eac8214
@ -33,15 +33,15 @@ const DebugOptions: FC = () => {
|
|||||||
sessionStorage.clear();
|
sessionStorage.clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
function resetMap() {
|
function restartGame(): void {
|
||||||
// TODO
|
// TODO
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={"fixed w-max right-2 bottom-16 border-2 z-50 bg-white rounded-xl p-2"}>
|
<div className={"fixed w-max right-2 bottom-16 border-2 z-50 bg-white rounded-xl p-2"}>
|
||||||
<button onClick={clearSessionStorage}>Clear sessionstorage</button>
|
<button onClick={clearSessionStorage}>Clear sessionstorage</button>
|
||||||
<br/>
|
{/*<br/>*/}
|
||||||
<button onClick={resetMap}>Reset map</button>
|
{/*<button onClick={restartGame}>Restart game</button>*/}
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
@ -10,29 +10,10 @@ import {diceAtom, ghostsAtom, playersAtom, rollDiceButtonAtom, selectedDiceAtom}
|
|||||||
import GameButton from "./gameButton";
|
import GameButton from "./gameButton";
|
||||||
import {Button} from "./button";
|
import {Button} from "./button";
|
||||||
import {useNavigate, useParams} from "react-router-dom";
|
import {useNavigate, useParams} from "react-router-dom";
|
||||||
|
import {getData} from "../utils/api";
|
||||||
|
|
||||||
const wsService = new WebSocketService(import.meta.env.VITE_API_WS);
|
const wsService = new WebSocketService(import.meta.env.VITE_API_WS);
|
||||||
|
|
||||||
// TODO bug, when taking player on last dice, the currentPlayer changes and the wrong character gets to steal
|
|
||||||
// TODO bug, first player can sometimes roll dice twice
|
|
||||||
// TODO bug, when refreshing page, some data is missing until other clients make a move
|
|
||||||
// TODO bug, stolen pellets are only updated on the client that stole them
|
|
||||||
// TODO bug, when navigating to lobby from the navbar while not logged in, the page is blank instead of redirecting to login
|
|
||||||
// TODO bug, when refreshing page, the player's button show ready, instead of roll dice or waiting
|
|
||||||
|
|
||||||
// TODO spawns should be the same color as the player
|
|
||||||
// TODO better front page
|
|
||||||
// TODO smaller map to fit button and dice on screen
|
|
||||||
// TODO guest users
|
|
||||||
// TODO store map in backend and save it in state on each client
|
|
||||||
// TODO add debug menu on dev, for testing and cheating
|
|
||||||
// TODO sign up player page
|
|
||||||
// TODO show box with collected pellets
|
|
||||||
// TODO layout
|
|
||||||
// TODO end game when all pellets are eaten
|
|
||||||
// TODO store stats in backend
|
|
||||||
// TODO check if game exists on load, if not redirect to lobby
|
|
||||||
|
|
||||||
export const GameComponent: FC<{ player: Player, map: GameMap }> = ({player, map}) => {
|
export const GameComponent: FC<{ player: Player, map: GameMap }> = ({player, map}) => {
|
||||||
|
|
||||||
const players = useAtomValue(playersAtom);
|
const players = useAtomValue(playersAtom);
|
||||||
@ -84,7 +65,7 @@ export const GameComponent: FC<{ player: Player, map: GameMap }> = ({player, map
|
|||||||
* Joins a game by sending a WebSocket request to the server.
|
* Joins a game by sending a WebSocket request to the server.
|
||||||
*/
|
*/
|
||||||
function joinGame(): void {
|
function joinGame(): void {
|
||||||
wsService.send({ // TODO if returns exception, navigate to lobby
|
wsService.send({
|
||||||
action: GameAction.joinGame,
|
action: GameAction.joinGame,
|
||||||
data: {
|
data: {
|
||||||
username: player.username,
|
username: player.username,
|
||||||
@ -117,10 +98,17 @@ export const GameComponent: FC<{ player: Player, map: GameMap }> = ({player, map
|
|||||||
}
|
}
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
wsService.onReceive = doAction;
|
|
||||||
wsService.open();
|
|
||||||
|
|
||||||
wsService.waitForOpen().then(() => joinGame());
|
getData(`/game/exists/${id}`)
|
||||||
|
.then(res => {
|
||||||
|
if (!res.ok) {
|
||||||
|
return navigate("/lobby");
|
||||||
|
}
|
||||||
|
wsService.onReceive = doAction;
|
||||||
|
wsService.open();
|
||||||
|
|
||||||
|
wsService.waitForOpen().then(() => joinGame());
|
||||||
|
})
|
||||||
|
|
||||||
return () => wsService.close();
|
return () => wsService.close();
|
||||||
}, []);
|
}, []);
|
||||||
|
@ -51,6 +51,13 @@ public class GameController : GenericController
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[HttpGet("exists/{gameId:guid}")]
|
||||||
|
public IActionResult GameExists(Guid gameId)
|
||||||
|
{
|
||||||
|
Logger.Log(LogLevel.Debug, "Checking if game {} exists", gameId);
|
||||||
|
return _gameService.Games.Any(game => game.Id == gameId) ? Ok() : NotFound();
|
||||||
|
}
|
||||||
|
|
||||||
[HttpPost("create")]
|
[HttpPost("create")]
|
||||||
public IActionResult CreateGame([FromBody] CreateGameData data)
|
public IActionResult CreateGame([FromBody] CreateGameData data)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user