mirror of
https://github.com/danog/2048.git
synced 2024-11-27 03:44:43 +01:00
29 lines
766 B
JavaScript
29 lines
766 B
JavaScript
window.fakeStorage = {
|
|
_data : {},
|
|
setItem : function (id, val) {
|
|
console.log("set");
|
|
return this._data[id] = String(val);
|
|
},
|
|
getItem : function (id) {
|
|
return this._data.hasOwnProperty(id) ? this._data[id] : undefined;
|
|
},
|
|
removeItem : function (id) { return delete this._data[id]; },
|
|
clear : function () { return this._data = {}; }
|
|
};
|
|
|
|
function LocalScoreManager() {
|
|
var localSupported = !!window.localStorage;
|
|
|
|
this.key = "bestScore";
|
|
this.storage = localSupported ? window.localStorage : window.fakeStorage;
|
|
}
|
|
|
|
LocalScoreManager.prototype.get = function () {
|
|
return this.storage.getItem(this.key) || 0;
|
|
};
|
|
|
|
LocalScoreManager.prototype.set = function (score) {
|
|
this.storage.setItem(this.key, score);
|
|
};
|
|
|