2020-05-09 19:47:00 +00:00
|
|
|
class LiveSession {
|
|
|
|
constructor(store) {
|
2020-05-27 20:33:51 +00:00
|
|
|
// this._wss = "ws://localhost:8081/";
|
|
|
|
this._wss = "wss://baumgart.biz:8080/";
|
2020-05-24 20:13:52 +00:00
|
|
|
this._socket = null;
|
|
|
|
this._isSpectator = true;
|
|
|
|
this._gamestate = [];
|
|
|
|
this._store = store;
|
|
|
|
this._pingInterval = 30 * 1000; // 30 seconds between pings
|
|
|
|
this._pingTimer = null;
|
|
|
|
this._players = {}; // map of players connected to a session
|
|
|
|
// reconnect to previous session
|
|
|
|
if (this._store.state.session.sessionId) {
|
|
|
|
this.connect(this._store.state.session.sessionId);
|
|
|
|
}
|
2020-05-09 19:47:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Open a new session for the passed channel.
|
|
|
|
* @param channel
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
_open(channel) {
|
|
|
|
this.disconnect();
|
2020-05-27 20:33:51 +00:00
|
|
|
this._socket = new WebSocket(this._wss + channel);
|
2020-05-24 20:13:52 +00:00
|
|
|
this._socket.addEventListener("message", this._handleMessage.bind(this));
|
|
|
|
this._socket.onopen = this._onOpen.bind(this);
|
|
|
|
this._socket.onclose = () => {
|
|
|
|
this._socket = null;
|
2020-05-30 20:47:42 +00:00
|
|
|
this._store.commit("session/setSessionId", "");
|
2020-05-24 20:13:52 +00:00
|
|
|
clearInterval(this._pingTimer);
|
|
|
|
this._pingTimer = null;
|
2020-05-09 19:47:00 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Send a message through the socket.
|
|
|
|
* @param command
|
|
|
|
* @param params
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
_send(command, params) {
|
2020-05-24 20:13:52 +00:00
|
|
|
if (this._socket && this._socket.readyState === 1) {
|
|
|
|
this._socket.send(JSON.stringify([command, params]));
|
2020-05-09 19:47:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Open event handler for socket.
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
_onOpen() {
|
2020-05-24 20:13:52 +00:00
|
|
|
if (this._isSpectator) {
|
2020-05-09 19:47:00 +00:00
|
|
|
this._send("req", "gs");
|
|
|
|
} else {
|
|
|
|
this.sendGamestate();
|
|
|
|
}
|
2020-05-24 20:13:52 +00:00
|
|
|
this._ping();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Send a ping message with player ID and ST flag.
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
_ping() {
|
2020-05-27 20:33:51 +00:00
|
|
|
this._send("ping", [this._isSpectator, this._store.state.session.playerId]);
|
2020-05-27 20:55:33 +00:00
|
|
|
this._handlePing();
|
2020-05-24 20:13:52 +00:00
|
|
|
clearTimeout(this._pingTimer);
|
|
|
|
this._pingTimer = setTimeout(this._ping.bind(this), this._pingInterval);
|
2020-05-09 19:47:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle an incoming socket message.
|
|
|
|
* @param data
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
_handleMessage({ data }) {
|
2020-05-09 19:56:51 +00:00
|
|
|
let command, params;
|
|
|
|
try {
|
|
|
|
[command, params] = JSON.parse(data);
|
|
|
|
} catch (err) {
|
|
|
|
console.log("unsupported socket message", data);
|
|
|
|
}
|
2020-05-09 19:47:00 +00:00
|
|
|
switch (command) {
|
|
|
|
case "req":
|
|
|
|
if (params === "gs") {
|
|
|
|
this.sendGamestate();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case "gs":
|
|
|
|
this._updateGamestate(params);
|
|
|
|
break;
|
|
|
|
case "player":
|
|
|
|
this._updatePlayer(params);
|
2020-05-24 20:13:52 +00:00
|
|
|
break;
|
2020-05-30 22:18:31 +00:00
|
|
|
case "claim":
|
|
|
|
this._updateSeat(params);
|
|
|
|
break;
|
2020-05-24 20:13:52 +00:00
|
|
|
case "ping":
|
|
|
|
this._handlePing(params);
|
|
|
|
break;
|
2020-06-03 20:25:23 +00:00
|
|
|
case "nomination":
|
|
|
|
this._store.commit("session/nomination", params);
|
|
|
|
break;
|
|
|
|
case "vote":
|
2020-06-05 20:12:51 +00:00
|
|
|
this._handleVote(params);
|
2020-06-03 20:25:23 +00:00
|
|
|
break;
|
2020-06-03 21:04:50 +00:00
|
|
|
case "lock":
|
2020-06-07 20:22:50 +00:00
|
|
|
this._handleLock(params);
|
2020-06-03 21:04:50 +00:00
|
|
|
break;
|
2020-05-24 20:13:52 +00:00
|
|
|
case "bye":
|
|
|
|
this._handleBye(params);
|
|
|
|
break;
|
2020-05-09 19:47:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Connect to a new live session, either as host or spectator.
|
2020-05-27 20:33:51 +00:00
|
|
|
* Set a unique playerId if there isn't one yet.
|
2020-05-09 19:47:00 +00:00
|
|
|
* @param channel
|
|
|
|
*/
|
|
|
|
connect(channel) {
|
2020-05-27 20:33:51 +00:00
|
|
|
if (!this._store.state.session.playerId) {
|
|
|
|
this._store.commit(
|
2020-05-30 20:47:42 +00:00
|
|
|
"session/setPlayerId",
|
2020-05-27 20:33:51 +00:00
|
|
|
Math.random()
|
|
|
|
.toString(36)
|
|
|
|
.substr(2)
|
|
|
|
);
|
|
|
|
}
|
2020-05-30 20:47:42 +00:00
|
|
|
this._store.commit("session/setPlayerCount", 0);
|
2020-05-24 20:13:52 +00:00
|
|
|
this._isSpectator = this._store.state.session.isSpectator;
|
2020-05-09 19:47:00 +00:00
|
|
|
this._open(channel);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Close the current session, if any.
|
|
|
|
*/
|
|
|
|
disconnect() {
|
2020-05-30 20:47:42 +00:00
|
|
|
this._store.commit("session/setPlayerCount", 0);
|
2020-05-24 20:13:52 +00:00
|
|
|
if (this._socket) {
|
2020-05-27 20:33:51 +00:00
|
|
|
this._send("bye", this._store.state.session.playerId);
|
2020-05-24 20:13:52 +00:00
|
|
|
this._socket.close();
|
|
|
|
this._socket = null;
|
2020-05-09 19:47:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Publish the current gamestate.
|
|
|
|
*/
|
|
|
|
sendGamestate() {
|
2020-05-24 20:13:52 +00:00
|
|
|
if (this._isSpectator) return;
|
|
|
|
this._gamestate = this._store.state.players.players.map(player => ({
|
2020-05-09 19:47:00 +00:00
|
|
|
name: player.name,
|
2020-05-30 20:47:42 +00:00
|
|
|
id: player.id,
|
2020-05-09 19:47:00 +00:00
|
|
|
isDead: player.isDead,
|
|
|
|
isVoteless: player.isVoteless,
|
|
|
|
...(player.role && player.role.team === "traveler"
|
|
|
|
? {
|
|
|
|
role: {
|
|
|
|
id: player.role.id,
|
|
|
|
team: "traveler",
|
|
|
|
name: player.role.name
|
|
|
|
}
|
|
|
|
}
|
|
|
|
: {})
|
|
|
|
}));
|
|
|
|
this._send("gs", {
|
2020-05-24 20:13:52 +00:00
|
|
|
gamestate: this._gamestate,
|
2020-06-05 18:19:49 +00:00
|
|
|
edition: this._store.state.edition,
|
|
|
|
nomination: this._store.state.session.nomination
|
2020-05-09 19:47:00 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update the gamestate based on incoming data.
|
|
|
|
* @param gamestate
|
|
|
|
* @param edition
|
2020-06-07 19:40:04 +00:00
|
|
|
* @param nomination
|
2020-05-09 19:47:00 +00:00
|
|
|
* @private
|
|
|
|
*/
|
2020-06-05 18:19:49 +00:00
|
|
|
_updateGamestate({ gamestate, edition, nomination }) {
|
2020-05-27 20:33:51 +00:00
|
|
|
if (!this._isSpectator) return;
|
2020-05-24 20:13:52 +00:00
|
|
|
this._store.commit("setEdition", edition);
|
2020-06-05 18:19:49 +00:00
|
|
|
this._store.commit("session/nomination", nomination);
|
2020-05-24 20:13:52 +00:00
|
|
|
const players = this._store.state.players.players;
|
2020-05-09 19:47:00 +00:00
|
|
|
// adjust number of players
|
|
|
|
if (players.length < gamestate.length) {
|
|
|
|
for (let x = players.length; x < gamestate.length; x++) {
|
2020-05-24 20:13:52 +00:00
|
|
|
this._store.commit("players/add", gamestate[x].name);
|
2020-05-09 19:47:00 +00:00
|
|
|
}
|
|
|
|
} else if (players.length > gamestate.length) {
|
|
|
|
for (let x = players.length; x > gamestate.length; x--) {
|
2020-05-24 20:13:52 +00:00
|
|
|
this._store.commit("players/remove", x - 1);
|
2020-05-09 19:47:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// update status for each player
|
|
|
|
gamestate.forEach((state, x) => {
|
|
|
|
const player = players[x];
|
2020-05-30 20:47:42 +00:00
|
|
|
const { role } = state;
|
|
|
|
// update relevant properties
|
|
|
|
["name", "id", "isDead", "isVoteless"].forEach(property => {
|
|
|
|
const value = state[property];
|
|
|
|
if (player[property] !== value) {
|
|
|
|
this._store.commit("players/update", { player, property, value });
|
|
|
|
}
|
|
|
|
});
|
|
|
|
// roles are special, because of travelers
|
2020-05-09 19:47:00 +00:00
|
|
|
if (role && player.role.id !== role.id) {
|
2020-05-24 20:13:52 +00:00
|
|
|
this._store.commit("players/update", {
|
2020-05-09 19:47:00 +00:00
|
|
|
player,
|
|
|
|
property: "role",
|
|
|
|
value: role
|
|
|
|
});
|
|
|
|
} else if (!role && player.role.team === "traveler") {
|
2020-05-24 20:13:52 +00:00
|
|
|
this._store.commit("players/update", {
|
2020-05-09 19:47:00 +00:00
|
|
|
player,
|
|
|
|
property: "role",
|
|
|
|
value: {}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Publish a player update.
|
|
|
|
* @param player
|
|
|
|
* @param property
|
|
|
|
* @param value
|
|
|
|
*/
|
|
|
|
sendPlayer({ player, property, value }) {
|
2020-05-24 20:13:52 +00:00
|
|
|
if (this._isSpectator || property === "reminders") return;
|
|
|
|
const index = this._store.state.players.players.indexOf(player);
|
2020-05-09 19:47:00 +00:00
|
|
|
if (property === "role") {
|
|
|
|
if (value.team && value.team === "traveler") {
|
|
|
|
// update local gamestate to remember this player as a traveler
|
2020-05-24 20:13:52 +00:00
|
|
|
this._gamestate[index].role = {
|
2020-05-09 19:47:00 +00:00
|
|
|
id: player.role.id,
|
|
|
|
team: "traveler",
|
|
|
|
name: player.role.name
|
|
|
|
};
|
|
|
|
this._send("player", {
|
|
|
|
index,
|
|
|
|
property,
|
2020-05-24 20:13:52 +00:00
|
|
|
value: this._gamestate[index].role
|
2020-05-09 19:47:00 +00:00
|
|
|
});
|
2020-05-24 20:13:52 +00:00
|
|
|
} else if (this._gamestate[index].role) {
|
|
|
|
delete this._gamestate[index].role;
|
2020-05-09 19:47:00 +00:00
|
|
|
this._send("player", { index, property, value: {} });
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
this._send("player", { index, property, value });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update a player based on incoming data.
|
|
|
|
* @param index
|
|
|
|
* @param property
|
|
|
|
* @param value
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
_updatePlayer({ index, property, value }) {
|
2020-05-24 20:13:52 +00:00
|
|
|
const player = this._store.state.players.players[index];
|
2020-05-09 19:47:00 +00:00
|
|
|
if (!player) return;
|
|
|
|
// special case where a player stops being a traveler
|
|
|
|
if (
|
|
|
|
property === "role" &&
|
|
|
|
value.team !== "traveler" &&
|
|
|
|
player.role.team === "traveler"
|
|
|
|
) {
|
|
|
|
// reset to an unknown role
|
2020-05-24 20:13:52 +00:00
|
|
|
this._store.commit("players/update", {
|
2020-05-09 19:47:00 +00:00
|
|
|
player,
|
|
|
|
property: "role",
|
|
|
|
value: {}
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
// just update the player otherwise
|
2020-05-24 20:13:52 +00:00
|
|
|
this._store.commit("players/update", { player, property, value });
|
2020-05-09 19:47:00 +00:00
|
|
|
}
|
|
|
|
}
|
2020-05-24 20:13:52 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle a ping message by another player / storyteller
|
|
|
|
* @param isSpectator
|
|
|
|
* @param playerId
|
|
|
|
* @private
|
|
|
|
*/
|
2020-05-27 20:55:33 +00:00
|
|
|
_handlePing([isSpectator, playerId] = []) {
|
2020-05-24 20:13:52 +00:00
|
|
|
const now = new Date().getTime();
|
2020-05-27 20:55:33 +00:00
|
|
|
if (playerId) {
|
|
|
|
this._players[playerId] = now;
|
|
|
|
if (!this._isSpectator && !isSpectator) {
|
|
|
|
alert("Another storyteller joined the session!");
|
|
|
|
}
|
|
|
|
}
|
2020-05-24 20:13:52 +00:00
|
|
|
// remove players that haven't sent a ping in twice the timespan
|
|
|
|
for (let player in this._players) {
|
2020-05-25 17:32:23 +00:00
|
|
|
if (now - this._players[player] > this._pingInterval * 2) {
|
2020-05-24 20:13:52 +00:00
|
|
|
delete this._players[player];
|
|
|
|
}
|
|
|
|
}
|
2020-05-31 21:42:08 +00:00
|
|
|
// remove claimed seats from players that are no longer connected
|
|
|
|
this._store.state.players.players.forEach(player => {
|
2020-06-03 20:25:23 +00:00
|
|
|
if (!this._isSpectator && player.id && !this._players[player.id]) {
|
2020-05-31 21:42:08 +00:00
|
|
|
this._store.commit("players/update", {
|
|
|
|
player,
|
|
|
|
property: "id",
|
|
|
|
value: ""
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
2020-05-30 20:47:42 +00:00
|
|
|
this._store.commit(
|
|
|
|
"session/setPlayerCount",
|
|
|
|
Object.keys(this._players).length
|
|
|
|
);
|
2020-05-24 20:13:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle a player leaving the sessions
|
|
|
|
* @param playerId
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
_handleBye(playerId) {
|
|
|
|
delete this._players[playerId];
|
2020-05-30 20:47:42 +00:00
|
|
|
this._store.commit(
|
|
|
|
"session/setPlayerCount",
|
|
|
|
Object.keys(this._players).length
|
|
|
|
);
|
2020-05-24 20:13:52 +00:00
|
|
|
}
|
2020-05-30 22:18:31 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Claim a seat, needs to be confirmed by the Storyteller.
|
|
|
|
* @param seat either -1 or the index of the seat claimed
|
|
|
|
*/
|
|
|
|
claimSeat(seat) {
|
|
|
|
if (!this._isSpectator) return;
|
|
|
|
if (this._store.state.players.players.length > seat) {
|
|
|
|
this._send("claim", [seat, this._store.state.session.playerId]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update a player id associated with that seat.
|
|
|
|
* @param index seat index or -1
|
|
|
|
* @param value playerId to add / remove
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
_updateSeat([index, value]) {
|
2020-06-03 20:25:23 +00:00
|
|
|
if (this._isSpectator) return;
|
2020-05-30 22:18:31 +00:00
|
|
|
const property = "id";
|
2020-06-03 20:25:23 +00:00
|
|
|
const players = this._store.state.players.players;
|
2020-05-30 22:18:31 +00:00
|
|
|
// remove previous seat
|
2020-06-03 20:25:23 +00:00
|
|
|
const oldIndex = players.findIndex(({ id }) => id === value);
|
|
|
|
if (oldIndex >= 0 && oldIndex !== index) {
|
|
|
|
this._store.commit("players/update", {
|
|
|
|
player: players[oldIndex],
|
|
|
|
property,
|
|
|
|
value: ""
|
|
|
|
});
|
2020-05-30 22:18:31 +00:00
|
|
|
}
|
|
|
|
// add playerId to new seat
|
|
|
|
if (index >= 0) {
|
2020-06-03 20:25:23 +00:00
|
|
|
const player = players[index];
|
2020-05-30 22:18:31 +00:00
|
|
|
if (!player) return;
|
|
|
|
this._store.commit("players/update", { player, property, value });
|
|
|
|
}
|
2020-06-03 20:25:23 +00:00
|
|
|
// update player session list as if this was a ping
|
|
|
|
this._handlePing([true, value]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-06-03 21:04:50 +00:00
|
|
|
* A player nomination. ST only
|
2020-06-03 20:25:23 +00:00
|
|
|
* @param nomination [nominator, nominee]
|
|
|
|
*/
|
|
|
|
nomination(nomination) {
|
|
|
|
if (this._isSpectator) return;
|
|
|
|
const players = this._store.state.players.players;
|
|
|
|
if (
|
|
|
|
!nomination ||
|
|
|
|
(players.length > nomination[0] && players.length > nomination[1])
|
|
|
|
) {
|
|
|
|
this._send("nomination", nomination);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-06-16 08:58:36 +00:00
|
|
|
* Send a vote. Player or ST
|
2020-06-05 20:12:51 +00:00
|
|
|
* @param index Seat of the player
|
2020-06-16 08:58:36 +00:00
|
|
|
* @param sync Flag whether to sync this vote with others or not
|
2020-06-03 20:25:23 +00:00
|
|
|
*/
|
|
|
|
vote([index]) {
|
2020-06-05 20:12:51 +00:00
|
|
|
const player = this._store.state.players.players[index];
|
2020-06-16 08:58:36 +00:00
|
|
|
if (
|
|
|
|
this._store.state.session.playerId === player.id ||
|
|
|
|
!this._isSpectator
|
|
|
|
) {
|
|
|
|
// send vote only if it is your own vote or you are the storyteller
|
2020-06-05 20:12:51 +00:00
|
|
|
this._send("vote", [index, this._store.state.session.votes[index]]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle an incoming vote, but not if it is for your own seat.
|
2020-06-16 08:58:36 +00:00
|
|
|
* @param index
|
2020-06-05 20:12:51 +00:00
|
|
|
* @param vote
|
|
|
|
*/
|
2020-06-16 08:58:36 +00:00
|
|
|
_handleVote([index, vote]) {
|
|
|
|
this._store.commit("session/vote", [index, vote]);
|
2020-05-30 22:18:31 +00:00
|
|
|
}
|
2020-06-03 21:04:50 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Lock a vote. ST only
|
|
|
|
*/
|
|
|
|
lockVote() {
|
|
|
|
if (this._isSpectator) return;
|
2020-06-07 20:22:50 +00:00
|
|
|
const { lockedVote, votes, nomination } = this._store.state.session;
|
|
|
|
const { players } = this._store.state.players;
|
|
|
|
const index = (nomination[1] + lockedVote - 1) % players.length;
|
|
|
|
this._send("lock", [this._store.state.session.lockedVote, votes[index]]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update vote lock and the locked vote, if it differs.
|
|
|
|
* @param lock
|
|
|
|
* @param vote
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
_handleLock([lock, vote]) {
|
|
|
|
this._store.commit("session/lockVote", lock);
|
|
|
|
if (lock > 1) {
|
|
|
|
const { lockedVote, nomination } = this._store.state.session;
|
|
|
|
const { players } = this._store.state.players;
|
|
|
|
const index = (nomination[1] + lockedVote - 1) % players.length;
|
|
|
|
if (this._store.state.session.votes[index] !== vote) {
|
|
|
|
this._store.commit("session/vote", [index, vote]);
|
|
|
|
}
|
|
|
|
}
|
2020-06-03 21:04:50 +00:00
|
|
|
}
|
2020-05-09 19:47:00 +00:00
|
|
|
}
|
|
|
|
|
2020-05-08 17:33:29 +00:00
|
|
|
module.exports = store => {
|
|
|
|
// setup
|
2020-05-09 19:47:00 +00:00
|
|
|
const session = new LiveSession(store);
|
2020-05-08 17:33:29 +00:00
|
|
|
|
|
|
|
// listen to mutations
|
2020-05-09 19:47:00 +00:00
|
|
|
store.subscribe(({ type, payload }) => {
|
|
|
|
switch (type) {
|
2020-05-30 20:47:42 +00:00
|
|
|
case "session/setSessionId":
|
2020-05-09 19:47:00 +00:00
|
|
|
if (payload) {
|
|
|
|
session.connect(payload);
|
|
|
|
} else {
|
2020-05-12 18:48:00 +00:00
|
|
|
window.location.hash = "";
|
2020-05-09 19:47:00 +00:00
|
|
|
session.disconnect();
|
|
|
|
}
|
|
|
|
break;
|
2020-05-30 22:18:31 +00:00
|
|
|
case "session/claimSeat":
|
|
|
|
session.claimSeat(payload);
|
|
|
|
break;
|
2020-06-03 20:25:23 +00:00
|
|
|
case "session/nomination":
|
|
|
|
session.nomination(payload);
|
|
|
|
break;
|
2020-06-16 08:58:36 +00:00
|
|
|
case "session/voteSync":
|
2020-06-03 20:25:23 +00:00
|
|
|
session.vote(payload);
|
|
|
|
break;
|
2020-06-03 21:04:50 +00:00
|
|
|
case "session/lockVote":
|
|
|
|
session.lockVote();
|
|
|
|
break;
|
2020-05-09 19:47:00 +00:00
|
|
|
case "players/set":
|
2020-05-12 20:22:36 +00:00
|
|
|
case "players/swap":
|
2020-05-19 13:21:38 +00:00
|
|
|
case "players/move":
|
2020-05-09 19:47:00 +00:00
|
|
|
case "players/clear":
|
|
|
|
case "players/remove":
|
|
|
|
case "players/add":
|
|
|
|
case "setEdition":
|
|
|
|
session.sendGamestate();
|
|
|
|
break;
|
|
|
|
case "players/update":
|
|
|
|
session.sendPlayer(payload);
|
|
|
|
break;
|
|
|
|
}
|
2020-05-08 17:33:29 +00:00
|
|
|
});
|
2020-05-12 18:48:00 +00:00
|
|
|
|
|
|
|
// check for session Id in hash
|
|
|
|
const [command, param] = window.location.hash.substr(1).split("/");
|
|
|
|
if (command === "play") {
|
2020-05-30 20:47:42 +00:00
|
|
|
store.commit("session/setSpectator", true);
|
|
|
|
store.commit("session/setSessionId", param);
|
2020-05-12 18:48:00 +00:00
|
|
|
}
|
2020-05-08 17:33:29 +00:00
|
|
|
};
|