X-Git-Url: https://git.cworth.org/git?p=lmno.games;a=blobdiff_plain;f=tictactoe%2Ftictactoe.jsx;h=46cee2a7f42e9f4bc3a7809e7d93b3855eb383ed;hp=f5951f1ff26a4bb738dd26a13c74f13feed08ccf;hb=7b54e4a8c6a461c186125b5e36d4d312ee9b41b2;hpb=1809f95530cf644d89b33ac30c2c574ecd9365bd diff --git a/tictactoe/tictactoe.jsx b/tictactoe/tictactoe.jsx index f5951f1..46cee2a 100644 --- a/tictactoe/tictactoe.jsx +++ b/tictactoe/tictactoe.jsx @@ -121,7 +121,7 @@ class Board extends React.Component { return ( this.props.onClick(i)} /> ); @@ -197,10 +197,6 @@ class Game extends React.Component { }); } - send_move(i) { - return fetch_post_json("move", { move: i }); - } - reset_board() { this.setState({ history: [ @@ -237,8 +233,12 @@ class Game extends React.Component { }); } - async handle_click(i) { - const response = await this.send_move(i); + async handle_click(i, first_move) { + let move = { move: i }; + if (first_move) { + move.assert_first_move = true; + } + const response = await fetch_post_json("move", move); if (response.status == 200) { const result = await response.json(); if (! result.legal) @@ -253,28 +253,59 @@ class Game extends React.Component { } render() { - const history = this.state.history; - const current = history[this.state.step_number]; + const state = this.state; + const history = state.history; + const current = history[state.step_number]; const winner = calculate_winner(current.squares); + const first_move = state.step_number === 0; + const my_team = state.player_info.team; + var board_active; let status; - if (winner) { - status = "Winner: " + winner; - } else { - status = "Next player: " + (Team.properties[this.state.next_to_play].name); + if (winner) + { + status = winner + " wins!"; + if (state.player_info.team != "") + { + if (my_team === winner) + status += " Congratulations!"; + else + status += " Better luck next time."; + } + board_active = false; + } + else if (first_move) + { + status = "Either player can make the first move."; + board_active = true; + } + else if (my_team === "") + { + status = "You're just watching the game."; + board_active = false; + } + else if (my_team === Team.properties[state.next_to_play].name) + { + status = "Your turn. Make a move."; + board_active = true; + } + else + { + status = "Waiting for your opponent to move."; + board_active = false; } return [ , ,
this.handle_click(i)} + onClick={i => this.handle_click(i, first_move)} />