2023-07-18 14:12:53 +02:00

47 lines
1.3 KiB
C#

using System.Net.WebSockets;
using Microsoft.AspNetCore.Mvc;
using pacMan.Game;
using pacMan.Services;
using pacMan.Utils;
namespace pacMan.Controllers;
[ApiController]
[Route("api/[controller]")]
public class GameController : GenericController // TODO reconnect using player id
{
private readonly IActionService _actionService;
public GameController(ILogger<GameController> logger, GameService gameService, IActionService actionService) :
base(logger, gameService) =>
_actionService = actionService;
[HttpGet("connect")]
public override async Task Accept() => await base.Accept();
[HttpGet("allGames")]
public IEnumerable<GameGroup> GetAllGames()
{
Logger.Log(LogLevel.Information, "Returning all games");
return GameService.Games;
}
protected override ArraySegment<byte> Run(WebSocketReceiveResult result, byte[] data)
{
var stringResult = data.GetString(result.Count);
Logger.Log(LogLevel.Information, "Received: {}", stringResult);
var action = ActionMessage.FromJson(stringResult);
_actionService.DoAction(action);
return action.ToArraySegment();
}
protected override void Disconnect()
{
base.Disconnect();
_actionService.Disconnect();
}
}