From d49e0aa05e9204fcefa2e7e88653dcd5bdc73a06 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Sun, 28 Jun 2020 15:55:46 -0700 Subject: [PATCH] empathy: Pre-group words according to common patterns Specifically, the following will be considered identical and pre-grouped: = s = a = an = the Unlike the server-side canonicalization of case differences, which are not visible, the above matching words are all still made available to the player and simply pre-grouped. So, the player can decide whether to leave them grouped or to separate them back out. --- empathy/empathy.jsx | 30 +++++++++++++++++++++++++----- 1 file changed, 25 insertions(+), 5 deletions(-) diff --git a/empathy/empathy.jsx b/empathy/empathy.jsx index 9f187d8..0789b46 100644 --- a/empathy/empathy.jsx +++ b/empathy/empathy.jsx @@ -454,11 +454,31 @@ 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; - }); + function canonize(word) { + return word.replace(/((a|an|the) )?(.*?)s?$/i, '$3'); + } + + const word_sets = []; + + for (let word of props.words) { + const word_canon = canonize(word); + console.log("Canonized " + word + " to " + word_canon); + let found_match = false; + for (let set of word_sets) { + const set_canon = canonize(set.values().next().value); + console.log("Comparing " + word_canon + " to " + set_canon); + if (word_canon === set_canon) { + set.add(word); + found_match = true;; + break; + } + } + if (! found_match) { + const set = new Set(); + set.add(word); + word_sets.push(set); + } + } this.state = { word_sets: word_sets, -- 2.43.0