]> git.cworth.org Git - lmno.games/blobdiff - empathy/empathy.jsx
Delete some dead (and broken) code.
[lmno.games] / empathy / empathy.jsx
index 9ebe9f3c7a7b4afd604ee3159cc35ea7348a1677..dcd558f9639c33d8ee70d555ec20f2490fef88b2 100644 (file)
@@ -1,3 +1,5 @@
+const MAX_PROMPT_ITEMS = 20;
+
 function undisplay(element) {
   element.style.display="none";
 }
@@ -52,6 +54,92 @@ events.addEventListener("player-update", event => {
     window.game.set_other_player_info(info);
 });
 
+events.addEventListener("game-state", event => {
+  const state = JSON.parse(event.data);
+
+  window.game.reset_game_state();
+
+  window.game.set_prompts(state.prompts);
+
+  window.game.set_active_prompt(state.active_prompt);
+
+  window.game.set_scores(state.scores);
+
+  window.game.set_ambiguities(state.ambiguities);
+});
+
+events.addEventListener("prompt", event => {
+  const prompt = JSON.parse(event.data);
+
+  window.game.add_or_update_prompt(prompt);
+});
+
+events.addEventListener("start", event => {
+  const prompt = JSON.parse(event.data);
+
+  window.game.set_active_prompt(prompt);
+});
+
+events.addEventListener("player-answered", event => {
+  const player = JSON.parse(event.data);
+
+  window.game.set_player_answered(player);
+});
+
+events.addEventListener("player-answering", event => {
+  const player = JSON.parse(event.data);
+
+  window.game.set_player_answering(player);
+});
+
+events.addEventListener("vote-end-answers", event => {
+  const player = JSON.parse(event.data);
+
+  window.game.set_player_vote_end_answers(player);
+});
+
+events.addEventListener("unvote-end-answers", event => {
+  const player = JSON.parse(event.data);
+
+  window.game.set_player_unvote_end_answers(player);
+});
+
+events.addEventListener("ambiguities", event => {
+  const ambiguities = JSON.parse(event.data);
+
+  window.game.set_ambiguities(ambiguities);
+});
+
+events.addEventListener("player-judged", event => {
+  const player = JSON.parse(event.data);
+
+  window.game.set_player_judged(player);
+});
+
+events.addEventListener("player-judging", event => {
+  const player = JSON.parse(event.data);
+
+  window.game.set_player_judging(player);
+});
+
+events.addEventListener("vote-end-judging", event => {
+  const player = JSON.parse(event.data);
+
+  window.game.set_player_vote_end_judging(player);
+});
+
+events.addEventListener("unvote-end-judging", event => {
+  const player = JSON.parse(event.data);
+
+  window.game.set_player_unvote_end_judging(player);
+});
+
+events.addEventListener("scores", event => {
+  const scores = JSON.parse(event.data);
+
+  window.game.set_scores(scores);
+});
+
 /*********************************************************
  * Game and supporting classes                           *
  *********************************************************/
@@ -66,7 +154,7 @@ function copy_to_clipboard(id)
   document.body.removeChild(tmp);
 }
 
-function GameInfo(props) {
+const GameInfo = React.memo(props => {
   if (! props.id)
     return null;
 
@@ -83,9 +171,9 @@ function GameInfo(props) {
       >Copy Link</button>
     </div>
   );
-}
+});
 
-function PlayerInfo(props) {
+const PlayerInfo = React.memo(props => {
   if (! props.player.id)
     return null;
 
@@ -93,15 +181,17 @@ function PlayerInfo(props) {
     <div className="player-info">
       <span className="players-header">Players: </span>
       {props.player.name}
+      {props.player.score > 0 ? ` (${props.player.score})` : ""}
       {props.other_players.map(other => (
         <span key={other.id}>
           {", "}
           {other.name}
+          {other.score > 0 ? ` (${other.score})` : ""}
         </span>
       ))}
     </div>
   );
-}
+});
 
 function fetch_method_json(method, api = '', data = {}) {
   const response = fetch(api, {
@@ -122,45 +212,497 @@ async function fetch_put_json(api = '', data = {}) {
   return fetch_method_json('PUT', api, data);
 }
 
-function CategoryRequest(props) {
+class CategoryRequest extends React.PureComponent {
+  constructor(props) {
+    super(props);
+    this.category = React.createRef();
+
+    this.handle_change = this.handle_change.bind(this);
+    this.handle_submit = this.handle_submit.bind(this);
+  }
+
+  handle_change(event) {
+    const category_input = this.category.current;
+    const category = category_input.value;
+
+    const match = category.match(/[0-9]+/);
+    if (match) {
+      const num_items = parseInt(match[0], 10);
+      if (num_items <= MAX_PROMPT_ITEMS)
+        category_input.setCustomValidity("");
+    }
+  }
+
+  async handle_submit(event) {
+    const form = event.currentTarget;
+    const category_input = this.category.current;
+    const category = category_input.value;
+
+    /* Prevent the default page-changing form-submission behavior. */
+    event.preventDefault();
+
+    const match = category.match(/[0-9]+/);
+    if (match === null) {
+      category_input.setCustomValidity("Category must include a number");
+      form.reportValidity();
+      return;
+    }
+
+    const num_items = parseInt(match[0], 10);
+
+    if (num_items > MAX_PROMPT_ITEMS) {
+      category_input.setCustomValidity(`Maximum number of items is ${MAX_PROMPT_ITEMS}`);
+      form.reportValidity();
+      return;
+    }
+
+    const response = await fetch_post_json("prompts", {
+      items: num_items,
+      prompt: category
+    });
+
+    if (response.status === 200) {
+      const result = await response.json();
+      if (! result.valid) {
+        add_message("danger", result.message);
+        return;
+      }
+    } else {
+      add_message("danger", "An error occurred submitting your category");
+    }
+
+    form.reset();
+  }
+
+  render() {
+    return (
+      <div className="category-request">
+        <h2>Submit a Category</h2>
+        <p>
+          Suggest a category to play. Don't forget to include the
+          number of items for each person to submit.
+        </p>
+
+        <form onSubmit={this.handle_submit} >
+          <div className="form-field large">
+            <input
+              type="text"
+              id="category"
+              placeholder="6 things at the beach"
+              required
+              autoComplete="off"
+              onChange={this.handle_change}
+              ref={this.category}
+            />
+          </div>
+
+          <div className="form-field large">
+            <button type="submit">
+              Send
+            </button>
+          </div>
+
+        </form>
+      </div>
+    );
+  }
+}
+
+const PromptOptions = React.memo(props => {
+
+  if (props.prompts.length === 0)
+    return null;
+
+  return (
+    <div className="prompt-options">
+      <h2>Vote on Categories</h2>
+      <p>
+        Select any categories below that you'd like to play.
+        You can choose as many as you'd like.
+      </p>
+      {props.prompts.map(p => {
+        return (
+          <button
+            className="vote-button"
+            key={p.id}
+            onClick={() => fetch_post_json(`vote/${p.id}`) }
+          >
+            {p.prompt}
+            <div className="vote-choices">
+              {p.votes.map(v => {
+                return (
+                  <div
+                    key={v}
+                    className="vote-choice"
+                  >
+                    {v}
+                  </div>
+                );
+              })}
+            </div>
+          </button>
+        );
+      })}
+    </div>
+  );
+});
+
+const LetsPlay = React.memo(props => {
+
+  const quorum = Math.round((props.num_players + 1) / 2);
+  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;
+
+  const candidates = props.prompts.filter(p => p.votes.length >= quorum);
+  const index = Math.floor(Math.random() * candidates.length);
+  const winner = candidates[index];
+
   return (
-    <div className="category-request">
-      <h2>Submit a Category</h2>
+    <div className="lets-play">
+      <h2>Let's Play</h2>
       <p>
-          Suggest a category to play with your friends. Don't forget to
-          include the number of items for each person to submit.
+        That should be enough voting. If you're not waiting for any
+        other players to join, then let's start.
       </p>
+      <button
+        className="lets-play"
+        onClick={() => fetch_post_json(`start/${winner.id}`) }
+      >
+        Start Game
+      </button>
+    </div>
+  );
+});
+
+class Ambiguities extends React.PureComponent {
+
+  constructor(props) {
+    super(props);
+
+    const word_sets = props.words.map(word => {
+      const set = new Set();
+      set.add(word);
+      return set;
+    });
+
+    this.state = {
+      word_sets: word_sets,
+      submitted: false,
+      selected: null
+    };
+  }
+
+  async handle_submit() {
+    const response = await fetch_post_json(
+      `judged/${this.props.prompt.id}`,{
+        word_groups: this.state.word_sets.map(set => Array.from(set))
+      }
+    );
+
+    if (response.status === 200) {
+      const result = await response.json();
+      if (! result.valid) {
+        add_message("danger", result.message);
+        return;
+      }
+    } else {
+      add_message("danger", "An error occurred submitting the results of your judging");
+      return;
+    }
+
+    this.setState({
+      submitted: true
+    });
+  }
 
-      <form>
-        <div className="form-field large">
-          <input
-            type="text"
-            id="category"
-            placeholder="6 things at the beach"
-            required pattern=".*[0-9]+.*"
-            title="Category must contain a number"
+  handle_click(word) {
+    if (this.state.selected == word) {
+      /* Second click on same word removes the word from the group. */
+      const idx = this.state.word_sets.findIndex(s => s.has(word));
+      const set = this.state.word_sets[idx];
+      if (set.size === 1)
+        return;
+      const new_set = new Set([...set].filter(w => w !== word));
+      this.setState({
+        selected: null,
+        word_sets: [...this.state.word_sets.slice(0, idx),
+                    new_set,
+                    new Set().add(word),
+                    ...this.state.word_sets.slice(idx+1)]
+      });
+    } else if (this.state.selected) {
+      /* Click of a second word groups the two together. */
+      const idx1 = this.state.word_sets.findIndex(s => s.has(this.state.selected));
+      const idx2 = this.state.word_sets.findIndex(s => s.has(word));
+      const set1 = this.state.word_sets[idx1];
+      const set2 = this.state.word_sets[idx2];
+      const new_set = new Set([...set2, ...set1]);
+      if (idx1 < idx2) {
+        this.setState({
+          selected: null,
+          word_sets: [...this.state.word_sets.slice(0, idx1),
+                      ...this.state.word_sets.slice(idx1 + 1, idx2),
+                      new_set,
+                      ...this.state.word_sets.slice(idx2 + 1)]
+        });
+      } else {
+        this.setState({
+          selected: null,
+          word_sets: [...this.state.word_sets.slice(0, idx2),
+                      new_set,
+                      ...this.state.word_sets.slice(idx2 + 1, idx1),
+                      ...this.state.word_sets.slice(idx1 + 1)]
+        });
+      }
+    } else {
+      /* First click of a word selects it. */
+      this.setState({
+        selected: word
+      });
+    }
+  }
+
+  render() {
+    if (this.state.submitted)
+      return (
+        <div className="please-wait">
+          <h2>Submission received</h2>
+          <p>
+            The following players have completed judging:
+            {[...this.props.players_judged].join(', ')}
+          </p>
+          <p>
+            Still waiting for the following players:
+          </p>
+          <ul>
+            {Object.entries(this.props.players_judging).map(player => {
+              return (
+                <li
+                  key={player}
+                >
+                  {player}
+                  {this.props.players_judging[player] ?
+                   <span className="typing"/> : null }
+                </li>
+              );
+            })}
+          </ul>
+          <button
+            className="vote-button"
+            onClick={() => fetch_post_json(`end-judging/${this.props.prompt.id}`) }
           >
-          </input>
-        </div>
+            Move On
+            <div className="vote-choices">
+              {[...this.props.votes].map(v => {
+                return (
+                  <div
+                    key={v}
+                    className="vote-choice"
+                  >
+                    {v}
+                  </div>
+                );
+              })}
+            </div>
+          </button>
 
-        <div className="form-field large">
-          <button type="submit">
+        </div>
+      );
+
+    const btn_class = "ambiguity-button";
+    const btn_selected_class = btn_class + " selected";
+
+    return (
+      <div className="ambiguities">
+        <h2>Judging Answers</h2>
+        <p>
+          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,
+          what goes around comes around, so it's best to be generous when
+          judging.
+        </p>
+        {this.state.word_sets.map(set => {
+          return (
+            <div
+              className="ambiguity-group"
+              key={Array.from(set)[0]}
+            >
+              {Array.from(set).map(word => {
+                return (
+                  <button
+                    className={this.state.selected === word ?
+                               btn_selected_class : btn_class }
+                    key={word}
+                    onClick={() => this.handle_click(word)}
+                  >
+                    {word}
+                  </button>
+                );
+              })}
+            </div>
+          );
+        })}
+        <p>
+          Click here when done judging:<br/>
+          <button
+            onClick={() => this.handle_submit()}
+          >
             Send
           </button>
-        </div>
+        </p>
+      </div>
+    );
+  }
+}
 
-      </form>
-    </div>
-  );
+class ActivePrompt extends React.PureComponent {
+
+  constructor(props) {
+    super(props);
+    const items = props.prompt.items;
+
+    this.state = {
+      submitted: false
+    };
+
+    this.answers = [...Array(items)].map(() => React.createRef());
+    this.handle_submit = this.handle_submit.bind(this);
+  }
+
+  async handle_submit(event) {
+    const form = event.currentTarget;
+
+    /* Prevent the default page-changing form-submission behavior. */
+    event.preventDefault();
+
+    const response = await fetch_post_json(`answer/${this.props.prompt.id}`, {
+      answers: this.answers.map(r => r.current.value)
+    });
+    if (response.status === 200) {
+      const result = await response.json();
+      if (! result.valid) {
+        add_message("danger", result.message);
+        return;
+      }
+    } else {
+      add_message("danger", "An error occurred submitting your answers");
+      return;
+    }
+
+    /* Everything worked. Server is happy with our answers. */
+    form.reset();
+    this.setState({
+        submitted: true
+    });
+  }
+
+  render() {
+    if (this.state.submitted)
+      return (
+        <div className="please-wait">
+          <h2>Submission received</h2>
+          <p>
+            The following players have submitted their answers:
+            {[...this.props.players_answered].join(', ')}
+          </p>
+          <p>
+          Still waiting for the following players:
+          </p>
+          <ul>
+            {Object.entries(this.props.players_answering).map(player => {
+              return (
+                <li
+                  key={player}
+                >
+                  {player}
+                  {this.props.players_answering[player] ?
+                   <span className="typing"/> : null }
+                </li>
+              );
+            })}
+          </ul>
+          <button
+            className="vote-button"
+            onClick={() => fetch_post_json(`end-answers/${this.props.prompt.id}`) }
+          >
+            Move On
+            <div className="vote-choices">
+              {[...this.props.votes].map(v => {
+                return (
+                  <div
+                    key={v}
+                    className="vote-choice"
+                  >
+                    {v}
+                  </div>
+                );
+              })}
+            </div>
+          </button>
+
+        </div>
+      );
+
+    return (
+      <div className="active-prompt">
+        <h2>The Game of Empathy</h2>
+        <p>
+          Remember, you're trying to match your answers with
+          what the other players submit.
+          Give {this.props.prompt.items} answers for the following prompt:
+        </p>
+        <h2>{this.props.prompt.prompt}</h2>
+        <form onSubmit={this.handle_submit}>
+          {[...Array(this.props.prompt.items)].map((whocares,i) => {
+            return (
+              <div
+                key={i}
+                className="form-field large">
+                <input
+                  type="text"
+                  name={`answer_${i}`}
+                  required
+                  autoComplete="off"
+                  ref={this.answers[i]}
+                />
+              </div>
+            );
+          })}
+
+          <div
+            key="submit-button"
+            className="form-field large">
+            <button type="submit">
+              Send
+            </button>
+          </div>
+
+        </form>
+      </div>
+    );
+  }
 }
 
-class Game extends React.Component {
+class Game extends React.PureComponent {
   constructor(props) {
     super(props);
     this.state = {
       game_info: {},
       player_info: {},
       other_players: [],
+      prompts: [],
+      active_prompt: null,
+      players_answered: new Set(),
+      players_answering: {},
+      end_answers_votes: new Set(),
+      ambiguities: null,
+      players_judged: new Set(),
+      players_judging: {},
+      end_judging_votes: new Set(),
+      scores: null
     };
   }
 
@@ -189,8 +731,176 @@ class Game extends React.Component {
     });
   }
 
+  reset_game_state() {
+    this.setState({
+      prompts: [],
+      active_prompt: null,
+      players_answered: new Set(),
+      players_answering: {},
+      end_answers_votes: new Set(),
+      ambiguities: null,
+      players_judged: new Set(),
+      players_judging: {},
+      end_judging_votes: new Set(),
+      scores: null
+    });
+  }
+
+  set_prompts(prompts) {
+    this.setState({
+      prompts: prompts
+    });
+  }
+
+  add_or_update_prompt(prompt) {
+    const prompts_copy = [...this.state.prompts];
+    const idx = prompts_copy.findIndex(p => p.id === prompt.id);
+    if (idx >= 0) {
+      prompts_copy[idx] = prompt;
+    } else {
+      prompts_copy.push(prompt);
+    }
+    this.setState({
+      prompts: prompts_copy
+    });
+  }
+
+  set_active_prompt(prompt) {
+    this.setState({
+      active_prompt: prompt
+    });
+  }
+
+  set_player_answered(player) {
+    const new_players_answering = {...this.state.players_answering};
+    delete new_players_answering[player];
+
+    this.setState({
+      players_answered: new Set([...this.state.players_answered, player]),
+      players_answering: new_players_answering
+    });
+  }
+
+  set_player_answering(player) {
+    this.setState({
+      players_answering: {
+        ...this.state.players_answering,
+        [player]: {active: true}
+      }
+    });
+  }
+
+  set_player_vote_end_answers(player) {
+    this.setState({
+      end_answers_votes: new Set([...this.state.end_answers_votes, player])
+    });
+  }
+
+  set_player_unvote_end_answers(player) {
+    this.setState({
+      end_answers_votes: new Set([...this.state.end_answers_votes].filter(p => p !== player))
+    });
+  }
+
+  set_ambiguities(ambiguities) {
+    this.setState({
+      ambiguities: ambiguities
+    });
+  }
+
+  set_player_judged(player) {
+    const new_players_judging = {...this.state.players_judging};
+    delete new_players_judging[player];
+
+    this.setState({
+      players_judged: new Set([...this.state.players_judged, player]),
+      players_judging: new_players_judging
+    });
+  }
+
+  set_player_judging(player) {
+    this.setState({
+      players_judging: {
+        ...this.state.players_judging,
+        [player]: {active: true}
+      }
+    });
+  }
+
+
+  set_player_vote_end_judging(player) {
+    this.setState({
+      end_judging_votes: new Set([...this.state.end_judging_votes, player])
+    });
+  }
+
+  set_player_unvote_end_judging(player) {
+    this.setState({
+      end_judging_votes: new Set([...this.state.end_judging_votes].filter(p => p !== player))
+    });
+  }
+
+  set_scores(scores) {
+    this.setState({
+      scores: scores
+    });
+  }
+
   render() {
     const state = this.state;
+    const players_total = 1 + state.other_players.length;
+
+    if (state.scores) {
+      return (
+        <div className="scores">
+          <h2>Scores</h2>
+          <ul>
+            {state.scores.scores.map(score => {
+              return (
+                <li key={score.player}>
+                  {score.player}: {score.score}
+                </li>
+              );
+            })}
+          </ul>
+          <h2>Words submitted</h2>
+          <ul>
+            {state.scores.words.map(word => {
+              return (
+                <li key={word.word}>
+                  {`${word.word}: ${word.players.join(', ')}`}
+                </li>
+              );
+            })}
+          </ul>
+          <button
+            className="new-game"
+            onClick={() => fetch_post_json('reset') }
+          >
+            New Game
+          </button>
+        </div>
+      );
+    }
+
+    if (state.ambiguities){
+      return <Ambiguities
+               prompt={state.active_prompt}
+               words={state.ambiguities}
+               players_judged={state.players_judged}
+               players_judging={state.players_judging}
+               votes={state.end_judging_votes}
+             />;
+    }
+
+    if (state.active_prompt) {
+      return <ActivePrompt
+               prompt={state.active_prompt}
+               players_answered={state.players_answered}
+               players_answering={state.players_answering}
+               votes={state.end_answers_votes}
+             />;
+    }
 
     return [
       <GameInfo
@@ -207,6 +917,15 @@ class Game extends React.Component {
       <p key="spacer"></p>,
       <CategoryRequest
         key="category-request"
+      />,
+      <PromptOptions
+        key="prompts"
+        prompts={state.prompts}
+      />,
+      <LetsPlay
+        key="lets-play"
+        num_players={1+state.other_players.length}
+        prompts={state.prompts}
       />
     ];
   }