]> git.cworth.org Git - lmno.games/commitdiff
Subtle refinement of the status message.
authorCarl Worth <cworth@cworth.org>
Sat, 6 Jun 2020 11:54:39 +0000 (04:54 -0700)
committerCarl Worth <cworth@cworth.org>
Sat, 6 Jun 2020 11:54:39 +0000 (04:54 -0700)
This distinguishes the message based on how many opponents are in the
game so there's a different message whether we are waiting for an
opponent to move or else to join in the first place.

Also, we use "either player" if there are two players in the game, or
else "any player" if there are mroe than two players in the game.

tictactoe/tictactoe.jsx

index ca0bce3fd4985bf8636893cbfeae92ea4235508b..3e75573ee2d872f31bef1084ec0a48c2f1d78245 100644 (file)
@@ -342,7 +342,17 @@ class Game extends React.Component {
     }
     else if (first_move)
     {
     }
     else if (first_move)
     {
-      status = "Either player can make the first move.";
+      if (state.opponent_info.length == 0) {
+        status = "You can make the first move or wait for an opponent to join.";
+      } else {
+        let qualifier;
+        if (state.opponent_info.length == 1) {
+          qualifier = "Either";
+        } else {
+          qualifier = "Any";
+        }
+        status = `${qualifier} player can make the first move.`;
+      }
       board_active = true;
     }
     else if (my_team === "")
       board_active = true;
     }
     else if (my_team === "")
@@ -357,7 +367,12 @@ class Game extends React.Component {
     }
     else
     {
     }
     else
     {
-      status = "Waiting for your opponent to move.";
+      status = "Waiting for your opponent to ";
+      if (state.opponent_info.length == 0) {
+        status += "join.";
+      } else {
+        status += "move.";
+      }
       board_active = false;
     }
 
       board_active = false;
     }