X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=game.js;h=fb2d75afa87214f1eaa4fe426772ca59f39e24f3;hb=7b21a4eb7ed2d6d479842b01c35ba6931c3acdc7;hp=f99ff234fa24c64aa9b9b362a6ad7c475902d5fb;hpb=76e5097689002f03c721c388e2ca71c52abf3354;p=empires-server diff --git a/game.js b/game.js index f99ff23..fb2d75a 100644 --- a/game.js +++ b/game.js @@ -1,11 +1,30 @@ /* Base class providing common code for game engine implementations. */ class Game { - constructor(name) { - this.name = name; + constructor() { this.clients = []; this.next_client_id = 1; } + /* Suport for game meta-data. + * + * What we want here is an effectively static field that is + * accessible through either the class name (SomeGame.meta) or an + * instance (some_game.meta). To pull this off we do keep two copies + * of the data. But the game classes can just set SomeGame.meta once + * and then reference it either way. + */ + static set meta(data) { + /* This allows class access (SomeGame.meta) via the get method below. */ + this._meta = data; + + /* While this allows access via an instance (some_game.meta). */ + this.prototype.meta = data; + } + + static get meta() { + return this._meta; + } + add_client(response) { const id = this.next_client_id; this.clients.push({id: id, @@ -33,6 +52,24 @@ class Game { this.broadcast_string(`event: ${type}\ndata: ${data}\n`); } + handle_events(request, response) { + /* 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 = this.add_client(response); + + /* And queue up cleanup to be triggered on client close. */ + request.on('close', () => { + this.remove_client(id); + }); + } + } module.exports = Game;