diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-08-05 12:59:55 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-08-12 22:38:49 +0200 |
commit | b9285d141998cbe6235b39808e6a0c145bb94013 (patch) | |
tree | 494ae0416b758c046f9bd671cdb9792f480e6037 | |
parent | 9096b626446b83dc545285146bdaa394dbac5ef3 (diff) | |
download | server-b9285d141998cbe6235b39808e6a0c145bb94013.tar.gz |
Use synchronization cookie to prevent action de-sync errors.
-rw-r--r-- | public/common/play.js | 18 | ||||
-rw-r--r-- | server.js | 33 |
2 files changed, 36 insertions, 15 deletions
diff --git a/public/common/play.js b/public/common/play.js index e117dae..cf4bcad 100644 --- a/public/common/play.js +++ b/public/common/play.js @@ -24,6 +24,7 @@ let socket = null let chat = null let game_log = [] +let game_cookie = 0 let snap_active = [] let snap_cache = [] @@ -421,6 +422,7 @@ function connect_play() { socket.onclose = function (evt) { console.log("CLOSE %d", evt.code) + game_cookie = 0 if (evt.code === 1000 && evt.reason !== "") { document.getElementById("prompt").textContent = "Disconnected: " + evt.reason document.title = "DISCONNECTED" @@ -435,11 +437,17 @@ function connect_play() { } socket.onmessage = function (evt) { - let [ cmd, arg ] = JSON.parse(evt.data) - console.log("MESSAGE %s", cmd) + let msg_data = JSON.parse(evt.data) + let cmd = msg_data[0] + let arg = msg_data[1] + console.log("MESSAGE", cmd) switch (cmd) { case "error": document.getElementById("prompt").textContent = arg + if (view) { + view.actions = null + on_update() + } break case "chat": @@ -473,6 +481,8 @@ function connect_play() { break case "state": + game_cookie = msg_data[2] + if (snap_view) on_snap_stop() @@ -683,13 +693,13 @@ function send_action(verb, noun) { let realnoun = Array.isArray(noun) ? noun[0] : noun if (view.actions && view.actions[verb] && view.actions[verb].includes(realnoun)) { view.actions = null - send_message("action", [ verb, noun ]) + send_message("action", [ verb, noun, game_cookie ]) return true } } else { if (view.actions && view.actions[verb]) { view.actions = null - send_message("action", [ verb ]) + send_message("action", [ verb, null, game_cookie ]) return true } } @@ -1969,6 +1969,7 @@ setInterval(notify_ready_to_start_reminder, 5 * 60 * 1000) */ var game_clients = {} +var game_cookies = {} function is_player_online(game_id, user_id) { if (game_clients[game_id]) @@ -1997,10 +1998,10 @@ function send_state(socket, state) { view.log = view.log.slice(view.log_start) if (state.state === 'game_over') view.game_over = 1 - view = JSON.stringify(['state', view]) - if (socket.last_view !== view) { - socket.send(view) - socket.last_view = view + let this_view = JSON.stringify(view) + if (view.actions || socket.last_view !== this_view) { + socket.send('["state",' + this_view + ',' + game_cookies[socket.game_id] + ']') + socket.last_view = this_view } } catch (err) { console.log(err) @@ -2062,11 +2063,17 @@ function put_new_state(game_id, state, old_active, role, action, args) { put_game_state(game_id, state, old_active) } -function on_action(socket, action, args) { - if (args !== undefined) +function on_action(socket, action, args, cookie) { + if (args !== null) SLOG(socket, "ACTION", action, JSON.stringify(args)) else SLOG(socket, "ACTION", action) + + if (typeof cookie === "number") // TODO: for backwards compatibility only, remove later! + if (game_cookies[socket.game_id] !== cookie) + return send_message(socket, 'error', "Synchronization error!") + game_cookies[socket.game_id] ++ + try { let state = get_game_state(socket.game_id) let old_active = state.active @@ -2254,7 +2261,7 @@ function broadcast_presence(game_id) { function handle_player_message(socket, cmd, arg) { switch (cmd) { case "action": - on_action(socket, arg[0], arg[1]) + on_action(socket, arg[0], arg[1], arg[2]) break case "query": on_query(socket, arg[0], arg[1]) @@ -2350,18 +2357,22 @@ wss.on('connection', (socket, req) => { if (socket.seen === 0) send_message(socket, 'players', [socket.role, players.map(p => ({ name: p.name, role: p.role }))]) - if (game_clients[socket.game_id]) + if (game_clients[socket.game_id]) { game_clients[socket.game_id].push(socket) - else + } else { game_clients[socket.game_id] = [ socket ] + game_cookies[socket.game_id] = 1 + } socket.on('close', (code) => { SLOG(socket, "CLOSE " + code) game_clients[socket.game_id].splice(game_clients[socket.game_id].indexOf(socket), 1) - if (game_clients[socket.game_id].length > 0) + if (game_clients[socket.game_id].length > 0) { broadcast_presence(socket.game_id) - else + } else { delete game_clients[socket.game_id] + delete game_cookies[socket.game_id] + } }) socket.on('error', (err) => { |