|
@@ -4,6 +4,8 @@ const React = require('react/addons');
|
|
const GameHeader = require('./GameHeader');
|
|
const GameHeader = require('./GameHeader');
|
|
const Chat = require('./Chat');
|
|
const Chat = require('./Chat');
|
|
const Modal = require('./Modal');
|
|
const Modal = require('./Modal');
|
|
|
|
+const GameActions = require('../actions/GameActions');
|
|
|
|
+const GameStore = require('../stores/GameStore');
|
|
const Immutable = require('immutable');
|
|
const Immutable = require('immutable');
|
|
const {Map} = Immutable;
|
|
const {Map} = Immutable;
|
|
|
|
|
|
@@ -27,7 +29,8 @@ const GameInterface = React.createClass({
|
|
decline: this._declineRematch
|
|
decline: this._declineRematch
|
|
}
|
|
}
|
|
}),
|
|
}),
|
|
- soundsEnabled: false
|
|
|
|
|
|
+ soundsEnabled: false,
|
|
|
|
+ gameOver: GameStore.getState().gameOver
|
|
};
|
|
};
|
|
},
|
|
},
|
|
componentDidMount() {
|
|
componentDidMount() {
|
|
@@ -55,10 +58,53 @@ const GameInterface = React.createClass({
|
|
this.setState({color: 'black'});
|
|
this.setState({color: 'black'});
|
|
}
|
|
}
|
|
});
|
|
});
|
|
|
|
+
|
|
|
|
+ io.on('full', () => {
|
|
|
|
+ window.alert(
|
|
|
|
+ 'This game already has two players. You have to create a new one.');
|
|
|
|
+ window.location = '/';
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ io.on('player-resigned', data => {
|
|
|
|
+ let winner = data.color === 'black' ? 'White' : 'Black';
|
|
|
|
+ let loser = winner === 'Black' ? 'White' : 'Black';
|
|
|
|
+
|
|
|
|
+ GameActions.gameOver({
|
|
|
|
+ type: 'resign',
|
|
|
|
+ winner: winner
|
|
|
|
+ });
|
|
|
|
+ this._openModal('info', `${loser} has resigned. ${winner} wins!`);
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ io.on('rematch-offered', () => {
|
|
|
|
+ this._openModal('offer', 'Your opponent has sent you a rematch offer.');
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ io.on('rematch-declined', () => {
|
|
|
|
+ this._openModal('info', 'Rematch offer has been declined.');
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ io.on('rematch-confirmed', data => {
|
|
|
|
+ GameActions.rematch();
|
|
|
|
+ this.setState({
|
|
|
|
+ color: this.state.color === 'white' ? 'black' : 'white',
|
|
|
|
+ modal: this.state.modal.set('open', false)
|
|
|
|
+ }, () => {
|
|
|
|
+ if (this.state.color === 'white') {
|
|
|
|
+ io.emit('timer-white', {
|
|
|
|
+ token: this.props.params[0]
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ });
|
|
|
|
+ GameStore.on('change', this._onGameChange);
|
|
|
|
+ },
|
|
|
|
+ componentWillUnmount() {
|
|
|
|
+ GameStore.off('change', this._onGameChange);
|
|
},
|
|
},
|
|
render() {
|
|
render() {
|
|
let {io, params} = this.props;
|
|
let {io, params} = this.props;
|
|
- let {color, soundsEnabled} = this.state;
|
|
|
|
|
|
+ let {color, soundsEnabled, gameOver} = this.state;
|
|
|
|
|
|
return (
|
|
return (
|
|
<div>
|
|
<div>
|
|
@@ -66,7 +112,8 @@ const GameInterface = React.createClass({
|
|
io={io}
|
|
io={io}
|
|
params={params}
|
|
params={params}
|
|
color={color}
|
|
color={color}
|
|
- openModal={this._openModal} />
|
|
|
|
|
|
+ openModal={this._openModal}
|
|
|
|
+ gameOver={gameOver.get('status')} />
|
|
|
|
|
|
<audio preload="auto" ref="moveSnd">
|
|
<audio preload="auto" ref="moveSnd">
|
|
<source src="/snd/move.mp3" />
|
|
<source src="/snd/move.mp3" />
|
|
@@ -89,6 +136,9 @@ const GameInterface = React.createClass({
|
|
</div>
|
|
</div>
|
|
);
|
|
);
|
|
},
|
|
},
|
|
|
|
+ _onGameChange() {
|
|
|
|
+ this.setState({gameOver: GameStore.getState().gameOver});
|
|
|
|
+ },
|
|
_openModal(type, message) {
|
|
_openModal(type, message) {
|
|
this.setState({
|
|
this.setState({
|
|
modal: this.state.modal
|
|
modal: this.state.modal
|
|
@@ -108,6 +158,7 @@ const GameInterface = React.createClass({
|
|
time: params[1] * 60,
|
|
time: params[1] * 60,
|
|
inc: params[2]
|
|
inc: params[2]
|
|
});
|
|
});
|
|
|
|
+ this._hideModal();
|
|
},
|
|
},
|
|
_declineRematch() {
|
|
_declineRematch() {
|
|
let {io, params} = this.props;
|
|
let {io, params} = this.props;
|
|
@@ -115,6 +166,7 @@ const GameInterface = React.createClass({
|
|
io.emit('rematch-decline', {
|
|
io.emit('rematch-decline', {
|
|
token: params[0]
|
|
token: params[0]
|
|
});
|
|
});
|
|
|
|
+ this._hideModal();
|
|
},
|
|
},
|
|
_toggleSounds() {
|
|
_toggleSounds() {
|
|
this.setState({
|
|
this.setState({
|