X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=tictactoe.js;h=11b4295df247ced277c82d8f1501369483a7a4e0;hb=7b21a4eb7ed2d6d479842b01c35ba6931c3acdc7;hp=4e76638a7cd3290df810eee00cd677c3af1ec0f8;hpb=76e5097689002f03c721c388e2ca71c52abf3354;p=empires-server diff --git a/tictactoe.js b/tictactoe.js index 4e76638..11b4295 100644 --- a/tictactoe.js +++ b/tictactoe.js @@ -1,13 +1,11 @@ const express = require("express"); const Game = require("./game.js"); -const engine_name = "tictactoe"; - const router = express.Router(); class TicTacToe extends Game { constructor() { - super(engine_name); + super(); this.moves = []; this.board = Array(9).fill(null); } @@ -27,16 +25,16 @@ class TicTacToe extends Game { broadcast_move(square) { this.broadcast_event("move", square); } -} -router.get('/', (request, response) => { - const game = request.game; + handle_events(request, response) { + super.handle_events(request, response); - if (! request.session.nickname) - response.render('choose-nickname.html', { game_name: "Tic Tac Toe" }); - else - response.render('tictactoe-game.html'); -}); + /* When a new client joins, replay all previous moves to it. */ + for (let move of this.moves) { + response.write(`event: move\ndata: ${move}\n\n`); + } + } +} router.post('/move', (request, response) => { const game = request.game; @@ -57,23 +55,15 @@ router.post('/move', (request, response) => { router.get('/events', (request, response) => { const game = request.game; - /* These headers will keep the connection open so we can stream events. */ - const headers = { - "Content-type": "text/event-stream", - "Connection": "keep-alive", - "Cache-Control": "no-cache" - }; - response.writeHead(200, headers); - - /* Add this new client to our list of clients. */ - const id = game.add_client(response); - - /* And queue up cleanup to be triggered on client close. */ - request.on('close', () => { - game.remove_client(id); - }); + game.handle_events(request, response); }); exports.router = router; -exports.name = engine_name; exports.Game = TicTacToe; + +TicTacToe.meta = { + name: "Tic Tac Toe", + identifier: "tictactoe" +}; + +exports.meta = TicTacToe.meta;