X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=lmno.js;h=baa96f82a5469d66ccd51916005182e4361e0c74;hb=cf23efebe1600d10396b674e20e7cdf7f88bb58f;hp=1e1d260954d9fa7b71babdadea911fd63162c96e;hpb=5c589dc3c8016c2f43174b1cf6de3e934835a142;p=empires-server diff --git a/lmno.js b/lmno.js index 1e1d260..baa96f8 100644 --- a/lmno.js +++ b/lmno.js @@ -69,7 +69,7 @@ nunjucks.configure("templates", { * * / Serves -game.html template * - * /player Allows client to set name + * /player Allows client to set name or team * * /events Serves a stream of events. Game can override * the handle_events method, call super() first, @@ -305,12 +305,24 @@ for (let key in engines) { /* Further, add some routes conditionally depending on whether the * engine provides specific, necessary methods for the routes. */ - if (engine.prototype.add_move) { + + /* Note: We have to use hasOwnProperty here since the base Game + * class has a geeric add_move function, and we don't want that to + * have any influence on our decision. Only if the child has + * overridden that do we want to create a "/move" route. */ + if (engine.prototype.hasOwnProperty("add_move")) { router.post('/move', (request, response) => { const game = request.game; const move = request.body.move; + const player = game.players[request.session.id]; + + /* Reject move if there is no player for this session. */ + if (! player) { + response.json({legal: false, message: "No valid player from session"}); + return; + } - const result = game.add_move(move); + const result = game.add_move(player, move); /* Feed move response back to the client. */ response.json(result);