X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=lmno.js;h=ef76cb06918cce8a7f8b1318075aa908e701cf23;hb=e368873853353b4b8949bfdf3c560b484e4cfb88;hp=18e60efd947349be35218a643ac6ba7a9756971d;hpb=92382a8dd4bfc9c83b7cf5fa1c0981b01096efd0;p=empires-server diff --git a/lmno.js b/lmno.js index 18e60ef..ef76cb0 100644 --- a/lmno.js +++ b/lmno.js @@ -267,7 +267,7 @@ app.get('/admin/', auth_admin, (request, response) => { let idle = []; for (let id in lmno.games) { - if (lmno.games[id].clients.length) + if (lmno.games[id].players.length) active.push(lmno.games[id]); else idle.push(lmno.games[id]); @@ -285,10 +285,14 @@ for (let key in engines) { router.get('/', (request, response) => { const game = request.game; - if (! request.session.nickname) - response.render('choose-nickname.html', { game_name: game.meta.name }); - else + if (! request.session.nickname) { + response.render('choose-nickname.html', { + game_name: game.meta.name, + options: game.meta.options + }); + } else { response.render(`${game.meta.identifier}-game.html`); + } }); router.put('/player', (request, response) => { @@ -305,11 +309,16 @@ 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]; + const player = game.players_by_session[request.session.id]; /* Reject move if there is no player for this session. */ if (! player) { @@ -319,6 +328,9 @@ for (let key in engines) { const result = game.add_move(player, move); + /* Take care of any generic post-move work. */ + game.post_move(player, result); + /* Feed move response back to the client. */ response.json(result);