X-Git-Url: https://git.cworth.org/git?p=lmno.games;a=blobdiff_plain;f=empathy%2Fempathy.jsx;h=dc13edf5063ad403d4ffca275fedb86b7b39ccca;hp=570e585b3076bda4117842acc009a209a357215b;hb=48039abb322ac4aaaf489b1de2eec88086a8e2dd;hpb=da31560cbb4678376e32af417a1c9ee47f031330 diff --git a/empathy/empathy.jsx b/empathy/empathy.jsx index 570e585..dc13edf 100644 --- a/empathy/empathy.jsx +++ b/empathy/empathy.jsx @@ -433,14 +433,34 @@ const PromptOptions = React.memo(props => { const LetsPlay = React.memo(props => { - const quorum = Math.round((props.num_players + 1) / 2); + const quorum = Math.max(0, props.num_players - props.prompts.length); const max_votes = props.prompts.reduce( (max_so_far, v) => Math.max(max_so_far, v.votes.length), 0); - if (max_votes < quorum) - return null; + if (max_votes < quorum) { + let text = `Before we play, we should collect a bit + more information about what category would + be interesting for this group. So, either + type a new category option above, or else`; + if (props.prompts.length) { + if (props.prompts.length > 1) + text += " vote on some of the categories below."; + else + text += " vote on the category below."; + } else { + text += " wait for others to submit, and then vote on them below."; + } - const candidates = props.prompts.filter(p => p.votes.length >= quorum); + return ( +
+

+ {text} +

+
+ ); + } + + const candidates = props.prompts.filter(p => p.votes.length >= max_votes); const index = Math.floor(Math.random() * candidates.length); const winner = candidates[index]; @@ -675,11 +695,16 @@ class Ambiguities extends React.PureComponent {

Judging Answers

- Click on each pair of answers that should be scored as equivalent, - (and click any word twice to split it out from a group). Remember, + Click/tap on each pair of answers that should be scored as equivalent, + (or click a word twice to split it out from a group). Remember, what goes around comes around, so it's best to be generous when judging.

+

+ Also, for an especially fun or witty answer, you can give kudos + by clicking the star on the right. You may only do this for one + word/group. +

{this.props.prompt.prompt}

{this.state.word_sets.map(set => { return ( @@ -1225,9 +1250,15 @@ class Game extends React.PureComponent { if (score.score === state.active_prompt.items) { quirkster = Quirkster!; } + let kudos_slam = null; + if (score.kudos > 0 && score.kudos >= players_total - 1) { + kudos_slam = Kudos Slam!; + } return (
  • - {score.players.join("/")}: {score.score} {perfect} {quirkster} + {score.players.join("/")}: {score.score} + {score.kudos ? `, ${'★'.repeat(score.kudos)}` : ""} + {' '}{perfect} {quirkster} {kudos_slam}
  • ); })} @@ -1235,9 +1266,20 @@ class Game extends React.PureComponent {

    Words submitted