hextris/js/save-state.js

29 lines
677 B
JavaScript
Raw Normal View History

2014-05-26 01:59:33 +00:00
function exportSaveState() {
2014-05-26 03:52:35 +00:00
var state = {};
if(gameState == 1 || gameState == -1 || (gameState === 0 && localStorage.getItem('saveState') !== undefined)) {
2014-05-26 03:52:35 +00:00
state = {
clock: MainClock,
blocks: blocks,
score: score,
wavegen: waveone,
gdx: gdx,
gdy: gdy,
2014-05-31 14:55:36 +00:00
comboMultiplier:comboMultiplier
};
state.clock.blocks.map(function(i){i.map(function(o){o.distFromHex /= settings.scale})});
state.blocks.map(function(block){block.distFromHex /= settings.scale;});
2014-05-26 01:59:33 +00:00
}
2014-05-26 03:52:35 +00:00
return JSONfn.stringify(state);
}
2014-05-26 05:11:13 +00:00
function clearSaveState() {
localStorage.setItem("saveState", "{}");
}
function isStateSaved() {
return localStorage.getItem("saveState") != "{}";
}