X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=game.js;h=5a49b6bdd52b5aaf753ca3469e14618cd1548c9a;hb=4b5792d269a7df065ac9b05e86f28c1c21ec40ab;hp=eb78f31ecbe531a38801cbbb9b4a466eb968d8cc;hpb=9029f4547056b096dfb9296d3eb69948f889ba23;p=lmno-server diff --git a/game.js b/game.js index eb78f31..5a49b6b 100644 --- a/game.js +++ b/game.js @@ -36,11 +36,22 @@ class Player { return JSON.stringify({ id: this.id, name: this.name, - team: this.team.name + team: this.team.name, + score: this.score }); } } +/* This replacer function allows for JSON.stringify to give results + * for objects of various types that are used in game state. + */ +function stringify_replacer(key, value) { + if (typeof value === 'object' && value instanceof Set) { + return [...value]; + } + return value; +} + /* Base class providing common code for game engine implementations. */ class Game { constructor(id) { @@ -184,7 +195,7 @@ class Game { /* After adding the player to the list, and if we are already past * the first move, assign this player to the first team that - * doesn't already have a player aissgned (if any). */ + * doesn't already have a player assigned (if any). */ if (! this.first_move) { const have_players = Array(this.teams.length).fill(false); this.players.forEach(p => { @@ -224,6 +235,10 @@ class Game { this.broadcast_string(`event: ${type}\ndata: ${data}\n`); } + broadcast_event_object(type, obj) { + this.broadcast_event(type, JSON.stringify(obj)); + } + handle_events(request, response) { /* These headers will keep the connection open so we can stream events. */ const headers = { @@ -259,7 +274,7 @@ class Game { /* Finally, if this game class has a "state" property, stream that * current state to the client. */ if (this.state) { - const state_json = JSON.stringify(this.state); + const state_json = JSON.stringify(this.state, stringify_replacer); response.write(`event: game-state\ndata: ${state_json}\n\n`); } }