Fixed test, deprecated method, and changes it's uses
This commit is contained in:
parent
dd6b493830
commit
89d2935323
@ -148,8 +148,9 @@ public class ActionServiceTests
|
||||
[Test]
|
||||
public void Ready_NotAllReady()
|
||||
{
|
||||
var game = _gameService.CreateAndJoin(_whitePlayer, _spawns);
|
||||
_gameService.JoinById(game.Id, _blackPlayer);
|
||||
_service.SetPlayerInfo(_whiteMessage.Data);
|
||||
_service.SetPlayerInfo(_blackMessage.Data);
|
||||
|
||||
var result = _service.Ready();
|
||||
if (result is ReadyData r1)
|
||||
@ -157,6 +158,7 @@ public class ActionServiceTests
|
||||
else
|
||||
Assert.Fail("Result should be ReadyData");
|
||||
|
||||
_gameService.JoinById(game.Id, _redPlayer);
|
||||
_service.SetPlayerInfo(_redMessage.Data);
|
||||
|
||||
result = _service.Ready();
|
||||
|
@ -43,11 +43,6 @@
|
||||
"test": "cross-env CI=true vitest",
|
||||
"coverage": "vitest run --coverage"
|
||||
},
|
||||
"eslintConfig": {
|
||||
"extends": [
|
||||
"react-app"
|
||||
]
|
||||
},
|
||||
"browserslist": {
|
||||
"production": [
|
||||
">0.2%",
|
||||
|
@ -32,7 +32,7 @@ public class GameController : GenericController
|
||||
return _gameService.Games;
|
||||
}
|
||||
|
||||
[HttpPost("join/{gameId}")]
|
||||
[HttpPost("join/{gameId:guid}")]
|
||||
public IActionResult JoinGame(Guid gameId, [FromBody] Player player) // TODO what if player is in a game already?
|
||||
{
|
||||
Logger.Log(LogLevel.Debug, "Joining game {}", gameId);
|
||||
|
@ -75,7 +75,7 @@ public class ActionService : IActionService
|
||||
return jsonElement;
|
||||
}
|
||||
|
||||
public List<Player> SetPlayerInfo(JsonElement? jsonElement) // TODO split up into two actions
|
||||
public List<Player> SetPlayerInfo(JsonElement? jsonElement) // TODO split up into two actions, join and create
|
||||
{
|
||||
var data = jsonElement?.Deserialize<PlayerInfoData>() ?? throw new NullReferenceException("Data is null");
|
||||
Player = data.Player;
|
||||
@ -93,7 +93,7 @@ public class ActionService : IActionService
|
||||
}
|
||||
else
|
||||
{
|
||||
Game = _gameService.AddPlayer(Player, data.Spawns);
|
||||
Game = _gameService.CreateAndJoin(Player, data.Spawns);
|
||||
}
|
||||
|
||||
Game.Connections += SendSegment;
|
||||
|
@ -19,6 +19,7 @@ public class GameService : WebSocketService
|
||||
/// </summary>
|
||||
public SynchronizedCollection<Game> Games { get; } = new();
|
||||
|
||||
[Obsolete("Use CreateAndJoin instead")]
|
||||
public Game AddPlayer(Player player, Queue<DirectionalPosition> spawns)
|
||||
{
|
||||
var index = 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user