X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=empathy.js;h=cb691485c0e928ccef8ae4cf9ac0e478877a74ce;hb=5263d08448482739a022a81431214d99ce435322;hp=b12c3e75553f596b7cc2108cc9e1c21f0bd97444;hpb=9aa7407eda90493c1004258e705ef0fa4afa6a48;p=lmno-server diff --git a/empathy.js b/empathy.js index b12c3e7..cb69148 100644 --- a/empathy.js +++ b/empathy.js @@ -8,6 +8,8 @@ class Empathy extends Game { prompts: [], active_prompt: null, players_answered: 0, + ambiguities: null, + players_judged: 0, scores: null }; this.answers = []; @@ -41,6 +43,8 @@ class Empathy extends Game { this.state.active_prompt = null; this.state.players_answered = 0; + this.state.ambiguities = 0; + this.state.players_judged = 0; this.state.scores = null; this.answers = []; @@ -117,6 +121,33 @@ class Empathy extends Game { return { valid: true }; } + perform_judging() { + const word_map = {}; + + for (let a of this.answers) { + for (let word of a.answers) { + const key = this.canonize(word); + word_map[key] = word; + } + } + + this.state.ambiguities = Object.values(word_map); + + this.broadcast_event_object('ambiguities', this.state.ambiguities); + } + + receive_judging() { + /* And notify players how many players have completed judging. */ + this.state.players_judged++; + this.broadcast_event_object('judged', this.state.players_judged); + + return { valid: true }; + } + + canonize(word) { + return word.toLowerCase(); + } + compute_scores() { const word_submitters = {}; const scores = []; @@ -187,7 +218,9 @@ class Prompt { router.post('/prompts', (request, response) => { const game = request.game; - game.add_prompt(request.body.items, request.body.prompt); + prompt = game.add_prompt(request.body.items, request.body.prompt); + + response.json({ id: prompt.id}); }); router.post('/vote/:prompt_id([0-9]+)', (request, response) => { @@ -195,7 +228,7 @@ router.post('/vote/:prompt_id([0-9]+)', (request, response) => { const prompt_id = parseInt(request.params.prompt_id, 10); if (game.toggle_vote(prompt_id, request.session.id)) - response.sendStatus(200); + response.send(''); else response.sendStatus(404); }); @@ -205,7 +238,7 @@ router.post('/start/:prompt_id([0-9]+)', (request, response) => { const prompt_id = parseInt(request.params.prompt_id, 10); if (game.start(prompt_id)) - response.sendStatus(200); + response.send(''); else response.sendStatus(404); }); @@ -219,7 +252,20 @@ router.post('/answer/:prompt_id([0-9]+)', (request, response) => { request.body.answers); response.json(result); - if (game.answers.length >= game.players.length) + if (game.state.players_answered >= game.players.length) + game.perform_judging(); +}); + +router.post('/judging/:prompt_id([0-9]+)', (request, response) => { + const game = request.game; + const prompt_id = parseInt(request.params.prompt_id, 10); + + const result = game.receive_judging(prompt_id, + request.session.id, + request.body); + response.json(result); + + if (game.state.players_judged >= game.players.length) game.compute_scores(); });