diff options
author | Tor Andersson <tor@ccxvii.net> | 2022-06-21 12:00:38 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-02-18 12:12:42 +0100 |
commit | d3d8295f1be86253d294942cdfcd3ebadd24bff6 (patch) | |
tree | f7e3f8beeb4188d58f241aa8e7cb7b74caea41c5 | |
parent | 8c8ac74e79b0987248f60fdb5bcec97631596e30 (diff) | |
download | shores-of-tripoli-d3d8295f1be86253d294942cdfcd3ebadd24bff6.tar.gz |
Don't use JSON for undo.
-rw-r--r-- | rules.js | 58 |
1 files changed, 42 insertions, 16 deletions
@@ -332,28 +332,54 @@ function remove_from_array(array, item) { array.splice(i, 1); } -function clear_undo() { - if (game.undo) - game.undo.length = 0; - else - game.undo = []; +function deep_copy(original) { + if (Array.isArray(original)) { + let n = original.length + let copy = new Array(n) + for (let i = 0; i < n; ++i) { + let v = original[i] + if (typeof v === "object" && v !== null) + copy[i] = deep_copy(v) + else + copy[i] = v + } + return copy + } else { + let copy = {} + for (let i in original) { + let v = original[i] + if (typeof v === "object" && v !== null) + copy[i] = deep_copy(v) + else + copy[i] = v + } + return copy + } } function push_undo() { - game.undo.push(JSON.stringify(game, (k,v) => { - if (k === 'undo') return 0; - if (k === 'log') return v.length; - return v; - })); + let copy = {} + for (let k in game) { + let v = game[k] + if (k === "undo") continue + else if (k === "log") v = v.length + else if (typeof v === "object" && v !== null) v = deep_copy(v) + copy[k] = v + } + game.undo.push(copy) } function pop_undo() { - let undo = game.undo; - let save_log = game.log; - game = JSON.parse(undo.pop()); - game.undo = undo; - save_log.length = game.log; - game.log = save_log; + let save_log = game.log + let save_undo = game.undo + game = save_undo.pop() + save_log.length = game.log + game.log = save_log + game.undo = save_undo +} + +function clear_undo() { + game.undo = [] } function gen_action_undo(view) { |