From 0bca0e8a02e005293663abc4a052ad8f8b2078f3 Mon Sep 17 00:00:00 2001 From: syuilo Date: Wed, 7 Mar 2018 18:45:16 +0900 Subject: wip --- src/api/stream/othello-game.ts | 105 ++++++++++++++++++++++++----------------- 1 file changed, 61 insertions(+), 44 deletions(-) (limited to 'src/api/stream') diff --git a/src/api/stream/othello-game.ts b/src/api/stream/othello-game.ts index 17cdd3a9e7..59d964777d 100644 --- a/src/api/stream/othello-game.ts +++ b/src/api/stream/othello-game.ts @@ -19,51 +19,68 @@ export default function(request: websocket.request, connection: websocket.connec switch (msg.type) { case 'set': if (msg.pos == null) return; - const pos = msg.pos; - - const game = await Game.findOne({ _id: gameId }); - - const o = new Othello(); - - game.logs.forEach(log => { - o.set(log.color, log.pos); - }); - - const myColor = game.black_user_id.equals(user._id) ? 'black' : 'white'; - const opColor = myColor == 'black' ? 'white' : 'black'; - - if (!o.canReverse(myColor, pos)) return; - o.set(myColor, pos); - - let turn; - if (o.getPattern(opColor).length > 0) { - turn = myColor == 'black' ? game.white_user_id : game.black_user_id; - } else { - turn = myColor == 'black' ? game.black_user_id : game.white_user_id; - } - - const log = { - at: new Date(), - color: myColor, - pos - }; - - await Game.update({ - _id: gameId - }, { - $set: { - turn_user_id: turn - }, - $push: { - logs: log - } - }); - - publishOthelloGameStream(gameId, 'set', { - color: myColor, - pos - }); + set(msg.pos); break; } }); + + async function set(pos) { + const game = await Game.findOne({ _id: gameId }); + + if (game.is_ended) return; + + const o = new Othello(); + + game.logs.forEach(log => { + o.set(log.color, log.pos); + }); + + const myColor = game.black_user_id.equals(user._id) ? 'black' : 'white'; + const opColor = myColor == 'black' ? 'white' : 'black'; + + if (!o.canReverse(myColor, pos)) return; + o.set(myColor, pos); + + let turn; + if (o.getPattern(opColor).length > 0) { + turn = myColor == 'black' ? game.white_user_id : game.black_user_id; + } else if (o.getPattern(myColor).length > 0) { + turn = myColor == 'black' ? game.black_user_id : game.white_user_id; + } else { + turn = null; + } + + const isEnded = turn === null; + + let winner; + if (isEnded) { + const blackCount = o.board.filter(s => s == 'black').length; + const whiteCount = o.board.filter(s => s == 'white').length; + winner = blackCount == whiteCount ? null : blackCount > whiteCount ? game.black_user_id : game.white_user_id; + } + + const log = { + at: new Date(), + color: myColor, + pos + }; + + await Game.update({ + _id: gameId + }, { + $set: { + turn_user_id: turn, + is_ended: isEnded, + winner_id: winner + }, + $push: { + logs: log + } + }); + + publishOthelloGameStream(gameId, 'set', { + color: myColor, + pos + }); + } } -- cgit v1.2.3-freya