2017-07-25 16:39:56 +02:00
|
|
|
/* SaveObject.js
|
|
|
|
* Defines the object used to save/load games
|
2017-05-05 03:08:44 +02:00
|
|
|
*/
|
|
|
|
var saveObject = new BitburnerSaveObject();
|
|
|
|
|
|
|
|
function BitburnerSaveObject() {
|
|
|
|
this.PlayerSave = "";
|
|
|
|
this.AllServersSave = "";
|
|
|
|
this.CompaniesSave = "";
|
|
|
|
this.FactionsSave = "";
|
|
|
|
this.SpecialServerIpsSave = "";
|
2017-05-23 17:12:09 +02:00
|
|
|
this.AliasesSave = "";
|
2017-06-30 18:44:03 +02:00
|
|
|
this.GlobalAliasesSave = "";
|
2017-06-02 06:15:45 +02:00
|
|
|
this.MessagesSave = "";
|
2017-07-03 21:42:11 +02:00
|
|
|
this.StockMarketSave = "";
|
2017-07-25 16:39:56 +02:00
|
|
|
this.SettingsSave = "";
|
2017-06-07 02:04:18 +02:00
|
|
|
this.VersionSave = "";
|
2017-05-05 03:08:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
BitburnerSaveObject.prototype.saveGame = function() {
|
|
|
|
this.PlayerSave = JSON.stringify(Player);
|
2017-07-25 16:39:56 +02:00
|
|
|
|
|
|
|
//Delete all logs from all running scripts
|
2017-06-19 16:54:11 +02:00
|
|
|
var TempAllServers = JSON.parse(JSON.stringify(AllServers), Reviver);
|
|
|
|
//var TempAllServers = jQuery.extend(true, {}, AllServers); //Deep copy
|
2017-06-18 11:31:14 +02:00
|
|
|
for (var ip in TempAllServers) {
|
|
|
|
var server = TempAllServers[ip];
|
|
|
|
if (server == null) {continue;}
|
|
|
|
for (var i = 0; i < server.runningScripts.length; ++i) {
|
|
|
|
var runningScriptObj = server.runningScripts[i];
|
|
|
|
runningScriptObj.logs.length = 0;
|
|
|
|
runningScriptObj.logs = [];
|
|
|
|
}
|
|
|
|
}
|
2017-07-25 16:39:56 +02:00
|
|
|
|
2017-06-18 11:31:14 +02:00
|
|
|
this.AllServersSave = JSON.stringify(TempAllServers);
|
2017-05-05 03:08:44 +02:00
|
|
|
this.CompaniesSave = JSON.stringify(Companies);
|
|
|
|
this.FactionsSave = JSON.stringify(Factions);
|
|
|
|
this.SpecialServerIpsSave = JSON.stringify(SpecialServerIps);
|
2017-05-23 17:12:09 +02:00
|
|
|
this.AliasesSave = JSON.stringify(Aliases);
|
2017-06-30 18:44:03 +02:00
|
|
|
this.GlobalAliasesSave = JSON.stringify(GlobalAliases);
|
2017-06-02 06:15:45 +02:00
|
|
|
this.MessagesSave = JSON.stringify(Messages);
|
2017-07-03 21:42:11 +02:00
|
|
|
this.StockMarketSave = JSON.stringify(StockMarket);
|
2017-07-25 16:39:56 +02:00
|
|
|
this.SettingsSave = JSON.stringify(Settings);
|
2017-06-07 02:04:18 +02:00
|
|
|
this.VersionSave = JSON.stringify(CONSTANTS.Version);
|
2017-05-05 06:54:40 +02:00
|
|
|
var saveString = btoa(unescape(encodeURIComponent(JSON.stringify(this))));
|
2017-05-05 03:08:44 +02:00
|
|
|
window.localStorage.setItem("bitburnerSave", saveString);
|
2017-07-25 16:39:56 +02:00
|
|
|
|
2017-05-15 19:23:20 +02:00
|
|
|
console.log("Game saved!");
|
2017-05-15 18:54:23 +02:00
|
|
|
Engine.createStatusText("Game saved!");
|
2017-05-05 03:08:44 +02:00
|
|
|
}
|
|
|
|
|
2017-06-08 06:57:40 +02:00
|
|
|
loadGame = function(saveObj) {
|
|
|
|
if (!window.localStorage.getItem("bitburnerSave")) {
|
|
|
|
console.log("No save file to load");
|
|
|
|
return false;
|
2017-05-05 03:08:44 +02:00
|
|
|
}
|
2017-06-08 06:57:40 +02:00
|
|
|
var saveString = decodeURIComponent(escape(atob(window.localStorage.getItem("bitburnerSave"))));
|
|
|
|
saveObj = JSON.parse(saveString, Reviver);
|
2017-07-25 16:39:56 +02:00
|
|
|
|
2017-05-05 03:08:44 +02:00
|
|
|
Player = JSON.parse(saveObj.PlayerSave, Reviver);
|
2017-08-01 21:10:21 +02:00
|
|
|
|
|
|
|
//Parse Decimal.js objects
|
|
|
|
Player.money = new Decimal(Player.money);
|
|
|
|
Player.total_money = new Decimal(Player.total_money);
|
|
|
|
Player.lifetime_money = new Decimal(Player.lifetime_money);
|
|
|
|
|
2017-05-05 03:08:44 +02:00
|
|
|
AllServers = JSON.parse(saveObj.AllServersSave, Reviver);
|
|
|
|
Companies = JSON.parse(saveObj.CompaniesSave, Reviver);
|
|
|
|
Factions = JSON.parse(saveObj.FactionsSave, Reviver);
|
|
|
|
SpecialServerIps = JSON.parse(saveObj.SpecialServerIpsSave, Reviver);
|
2017-07-25 16:39:56 +02:00
|
|
|
|
2017-05-23 19:36:35 +02:00
|
|
|
if (saveObj.hasOwnProperty("AliasesSave")) {
|
2017-05-23 18:15:17 +02:00
|
|
|
try {
|
|
|
|
Aliases = JSON.parse(saveObj.AliasesSave, Reviver);
|
|
|
|
} catch(e) {
|
|
|
|
Aliases = {};
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Aliases = {};
|
|
|
|
}
|
2017-06-30 18:44:03 +02:00
|
|
|
if (saveObj.hasOwnProperty("GlobalAliasesSave")) {
|
|
|
|
try {
|
|
|
|
GlobalAliases = JSON.parse(saveObj.GlobalAliasesSave, Reviver);
|
|
|
|
} catch(e) {
|
|
|
|
GlobalAliases = {};
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
GlobalAliases = {};
|
|
|
|
}
|
2017-06-02 06:15:45 +02:00
|
|
|
if (saveObj.hasOwnProperty("MessagesSave")) {
|
|
|
|
try {
|
|
|
|
Messages = JSON.parse(saveObj.MessagesSave, Reviver);
|
|
|
|
} catch(e) {
|
|
|
|
initMessages();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
initMessages();
|
|
|
|
}
|
2017-07-03 21:42:11 +02:00
|
|
|
if (saveObj.hasOwnProperty("StockMarketSave")) {
|
|
|
|
try {
|
|
|
|
StockMarket = JSON.parse(saveObj.StockMarketSave, Reviver);
|
|
|
|
} catch(e) {
|
|
|
|
StockMarket = {};
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
StockMarket = {};
|
|
|
|
}
|
2017-07-25 16:39:56 +02:00
|
|
|
if (saveObj.hasOwnProperty("SettingsSave")) {
|
|
|
|
try {
|
|
|
|
Settings = JSON.parse(saveObj.SettingsSave, Reviver);
|
|
|
|
} catch(e) {
|
|
|
|
initSettings();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
initSettings();
|
|
|
|
}
|
2017-06-07 02:04:18 +02:00
|
|
|
if (saveObj.hasOwnProperty("VersionSave")) {
|
|
|
|
try {
|
|
|
|
var ver = JSON.parse(saveObj.VersionSave, Reviver);
|
|
|
|
if (ver != CONSTANTS.Version) {
|
2017-06-07 02:28:20 +02:00
|
|
|
createNewUpdateText();
|
2017-06-07 02:04:18 +02:00
|
|
|
}
|
|
|
|
} catch(e) {
|
2017-06-07 02:28:20 +02:00
|
|
|
createNewUpdateText();
|
2017-06-07 02:04:18 +02:00
|
|
|
}
|
|
|
|
} else {
|
2017-06-07 02:28:20 +02:00
|
|
|
createNewUpdateText();
|
2017-06-07 02:04:18 +02:00
|
|
|
}
|
2017-07-25 16:39:56 +02:00
|
|
|
|
2017-05-05 03:08:44 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-06-08 06:57:40 +02:00
|
|
|
loadImportedGame = function(saveObj, saveString) {
|
|
|
|
var tempSaveObj = null;
|
|
|
|
var tempPlayer = null;
|
|
|
|
var tempAllServers = null;
|
|
|
|
var tempCompanies = null;
|
|
|
|
var tempFactions = null;
|
|
|
|
var tempSpecialServerIps = null;
|
|
|
|
var tempAugmentations = null;
|
|
|
|
var tempAliases = null;
|
2017-06-30 18:44:03 +02:00
|
|
|
var tempGlobalAliases = null;
|
2017-06-08 06:57:40 +02:00
|
|
|
var tempMessages = null;
|
2017-07-03 21:42:11 +02:00
|
|
|
var tempStockMarket = null;
|
2017-06-08 06:57:40 +02:00
|
|
|
try {
|
|
|
|
saveString = decodeURIComponent(escape(atob(saveString)));
|
|
|
|
tempSaveObj = new BitburnerSaveObject();
|
|
|
|
tempSaveObj = JSON.parse(saveString, Reviver);
|
2017-07-25 16:39:56 +02:00
|
|
|
|
2017-06-08 06:57:40 +02:00
|
|
|
tempPlayer = JSON.parse(tempSaveObj.PlayerSave, Reviver);
|
2017-08-01 21:10:21 +02:00
|
|
|
|
|
|
|
//Parse Decimal.js objects
|
|
|
|
tempPlayer.money = new Decimal(tempPlayer.money);
|
|
|
|
tempPlayer.total_money = new Decimal(tempPlayer.total_money);
|
|
|
|
tempPlayer.lifetime_money = new Decimal(tempPlayer.lifetime_money);
|
|
|
|
|
2017-06-08 06:57:40 +02:00
|
|
|
tempAllServers = JSON.parse(tempSaveObj.AllServersSave, Reviver);
|
|
|
|
tempCompanies = JSON.parse(tempSaveObj.CompaniesSave, Reviver);
|
|
|
|
tempFactions = JSON.parse(tempSaveObj.FactionsSave, Reviver);
|
|
|
|
tempSpecialServerIps = JSON.parse(tempSaveObj.SpecialServerIpsSave, Reviver);
|
|
|
|
tempAugmentations = JSON.parse(tempSaveObj.AugmentationsSave, Reviver);
|
|
|
|
if (tempSaveObj.hasOwnProperty("AliasesSave")) {
|
|
|
|
try {
|
|
|
|
tempAliases = JSON.parse(tempSaveObj.AliasesSave, Reviver);
|
|
|
|
} catch(e) {
|
|
|
|
tempAliases = {};
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
tempAliases = {};
|
|
|
|
}
|
2017-06-30 18:44:03 +02:00
|
|
|
if (tempSaveObj.hasOwnProperty("GlobalAliases")) {
|
|
|
|
try {
|
|
|
|
tempGlobalAliases = JSON.parse(tempSaveObj.AliasesSave, Reviver);
|
|
|
|
} catch(e) {
|
|
|
|
tempGlobalAliases = {};
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
tempGlobalAliases = {};
|
|
|
|
}
|
2017-06-08 06:57:40 +02:00
|
|
|
if (tempSaveObj.hasOwnProperty("MessagesSave")) {
|
|
|
|
try {
|
|
|
|
tempMessages = JSON.parse(tempSaveObj.MessagesSave, Reviver);
|
|
|
|
} catch(e) {
|
|
|
|
initMessages();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
initMessages();
|
|
|
|
}
|
2017-07-03 21:42:11 +02:00
|
|
|
if (saveObj.hasOwnProperty("StockMarketSave")) {
|
|
|
|
try {
|
|
|
|
tempStockMarket = JSON.parse(saveObj.StockMarketSave, Reviver);
|
|
|
|
} catch(e) {
|
|
|
|
tempStockMarket = {};
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
tempStockMarket = {};
|
|
|
|
}
|
2017-06-08 06:57:40 +02:00
|
|
|
if (tempSaveObj.hasOwnProperty("VersionSave")) {
|
|
|
|
try {
|
|
|
|
var ver = JSON.parse(tempSaveObj.VersionSave, Reviver);
|
2017-07-29 18:25:40 +02:00
|
|
|
if (CONSTANTS.Version == "0.26.3") {
|
|
|
|
tempPlayer.money = new Decimal(tempPlayer.money);
|
|
|
|
tempPlayer.total_money = new Decimal(tempPlayer.total_money);
|
|
|
|
tempPlayer.lifetime_money = new Decimal(tempPlayer.lifetime_money);
|
2017-06-08 06:57:40 +02:00
|
|
|
}
|
2017-06-17 09:21:42 +02:00
|
|
|
if (ver != CONSTANTS.Version) {
|
|
|
|
createNewUpdateText();
|
|
|
|
}
|
2017-06-08 06:57:40 +02:00
|
|
|
} catch(e) {
|
|
|
|
createNewUpdateText();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
createNewUpdateText();
|
|
|
|
}
|
|
|
|
} catch(e) {
|
|
|
|
dialogBoxCreate("Error importing game");
|
|
|
|
return false;
|
|
|
|
}
|
2017-07-25 16:39:56 +02:00
|
|
|
|
2017-06-08 06:57:40 +02:00
|
|
|
saveObj = tempSaveObj;
|
|
|
|
Player = tempPlayer;
|
|
|
|
AllServers = tempAllServers;
|
|
|
|
Companies = tempCompanies;
|
|
|
|
Factions = tempFactions;
|
|
|
|
SpecialServerIps = tempSpecialServerIps;
|
|
|
|
Augmentations = tempAugmentations;
|
|
|
|
if (tempAliases) {
|
|
|
|
Aliases = tempAliases;
|
|
|
|
}
|
2017-07-25 16:39:56 +02:00
|
|
|
|
2017-06-30 18:44:03 +02:00
|
|
|
if (tempGlobalAliases) {
|
|
|
|
GlobalAliases = tempGlobalAliases;
|
|
|
|
}
|
2017-07-25 16:39:56 +02:00
|
|
|
|
2017-06-08 06:57:40 +02:00
|
|
|
if (tempMessages) {
|
|
|
|
Messages = tempMessages;
|
|
|
|
}
|
2017-07-25 16:39:56 +02:00
|
|
|
|
2017-07-03 21:42:11 +02:00
|
|
|
if (tempStockMarket) {
|
|
|
|
StockMarket = tempStockMarket;
|
|
|
|
}
|
2017-07-25 16:39:56 +02:00
|
|
|
|
2017-06-08 06:57:40 +02:00
|
|
|
dialogBoxCreate("Imported game");
|
2017-06-08 07:08:53 +02:00
|
|
|
gameOptionsBoxClose();
|
2017-07-25 16:39:56 +02:00
|
|
|
|
2017-06-08 17:59:22 +02:00
|
|
|
//Re-start game
|
|
|
|
console.log("Importing game");
|
|
|
|
Engine.setDisplayElements(); //Sets variables for important DOM elements
|
|
|
|
Engine.init(); //Initialize buttons, work, etc.
|
|
|
|
CompanyPositions.init();
|
|
|
|
|
|
|
|
//Calculate the number of cycles have elapsed while offline
|
|
|
|
Engine._lastUpdate = new Date().getTime();
|
|
|
|
var lastUpdate = Player.lastUpdate;
|
|
|
|
var numCyclesOffline = Math.floor((Engine._lastUpdate - lastUpdate) / Engine._idleSpeed);
|
2017-07-25 16:39:56 +02:00
|
|
|
|
2017-06-08 17:59:22 +02:00
|
|
|
/* Process offline progress */
|
|
|
|
var offlineProductionFromScripts = loadAllRunningScripts(); //This also takes care of offline production for those scripts
|
|
|
|
if (Player.isWorking) {
|
|
|
|
console.log("work() called in load() for " + numCyclesOffline * Engine._idleSpeed + " milliseconds");
|
|
|
|
if (Player.workType == CONSTANTS.WorkTypeFaction) {
|
|
|
|
Player.workForFaction(numCyclesOffline);
|
|
|
|
} else if (Player.workType == CONSTANTS.WorkTypeCreateProgram) {
|
|
|
|
Player.createProgramWork(numCyclesOffline);
|
|
|
|
} else if (Player.workType == CONSTANTS.WorkTypeStudyClass) {
|
|
|
|
Player.takeClass(numCyclesOffline);
|
|
|
|
} else if (Player.workType == CONSTANTS.WorkTypeCrime) {
|
|
|
|
Player.commitCrime(numCyclesOffline);
|
|
|
|
} else if (Player.workType == CONSTANTS.WorkTypeCompanyPartTime) {
|
|
|
|
Player.workPartTime(numCyclesOffline);
|
|
|
|
} else {
|
|
|
|
Player.work(numCyclesOffline);
|
|
|
|
}
|
|
|
|
}
|
2017-07-25 16:39:56 +02:00
|
|
|
|
2017-06-08 17:59:22 +02:00
|
|
|
//Hacknet Nodes offline progress
|
|
|
|
var offlineProductionFromHacknetNodes = processAllHacknetNodeEarnings(numCyclesOffline);
|
2017-07-25 16:39:56 +02:00
|
|
|
|
2017-06-08 17:59:22 +02:00
|
|
|
//Passive faction rep gain offline
|
|
|
|
processPassiveFactionRepGain(numCyclesOffline);
|
2017-07-25 16:39:56 +02:00
|
|
|
|
2017-06-08 17:59:22 +02:00
|
|
|
//Update total playtime
|
|
|
|
var time = numCyclesOffline * Engine._idleSpeed;
|
|
|
|
if (Player.totalPlaytime == null) {Player.totalPlaytime = 0;}
|
2017-06-17 19:47:04 +02:00
|
|
|
if (Player.playtimeSinceLastAug == null) {Player.playtimeSinceLastAug = 0;}
|
2017-06-08 17:59:22 +02:00
|
|
|
Player.totalPlaytime += time;
|
2017-06-17 19:47:04 +02:00
|
|
|
Player.playtimeSinceLastAug += time;
|
2017-07-25 16:39:56 +02:00
|
|
|
|
2017-06-08 17:59:22 +02:00
|
|
|
//Re-apply augmentations
|
|
|
|
Player.reapplyAllAugmentations();
|
2017-07-25 16:39:56 +02:00
|
|
|
|
2017-06-08 20:32:38 +02:00
|
|
|
//Clear terminal
|
|
|
|
$("#terminal tr:not(:last)").remove();
|
2017-07-25 16:39:56 +02:00
|
|
|
|
2017-06-08 17:59:22 +02:00
|
|
|
Player.lastUpdate = Engine._lastUpdate;
|
|
|
|
Engine.start(); //Run main game loop and Scripts loop
|
2017-07-25 16:39:56 +02:00
|
|
|
dialogBoxCreate("While you were offline, your scripts generated $" +
|
|
|
|
formatNumber(offlineProductionFromScripts, 2) + " and your Hacknet Nodes generated $" +
|
2017-06-08 17:59:22 +02:00
|
|
|
formatNumber(offlineProductionFromHacknetNodes, 2));
|
2017-06-08 06:57:40 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-06-08 01:35:56 +02:00
|
|
|
BitburnerSaveObject.prototype.exportGame = function() {
|
2017-06-08 06:57:40 +02:00
|
|
|
this.PlayerSave = JSON.stringify(Player);
|
|
|
|
this.AllServersSave = JSON.stringify(AllServers);
|
|
|
|
this.CompaniesSave = JSON.stringify(Companies);
|
|
|
|
this.FactionsSave = JSON.stringify(Factions);
|
|
|
|
this.SpecialServerIpsSave = JSON.stringify(SpecialServerIps);
|
|
|
|
this.AugmentationsSave = JSON.stringify(Augmentations);
|
|
|
|
this.AliasesSave = JSON.stringify(Aliases);
|
2017-07-07 04:24:59 +02:00
|
|
|
this.GlobalAliasesSave = JSON.stringify(GlobalAliases);
|
2017-06-08 06:57:40 +02:00
|
|
|
this.MessagesSave = JSON.stringify(Messages);
|
|
|
|
this.VersionSave = JSON.stringify(CONSTANTS.Version);
|
2017-07-25 16:39:56 +02:00
|
|
|
|
2017-06-08 06:57:40 +02:00
|
|
|
var saveString = btoa(unescape(encodeURIComponent(JSON.stringify(this))));
|
2017-07-25 16:39:56 +02:00
|
|
|
|
2017-06-08 06:57:40 +02:00
|
|
|
var file = new Blob([saveString], {type: 'text/plain'});
|
|
|
|
if (window.navigator.msSaveOrOpenBlob) {// IE10+
|
2017-07-25 16:39:56 +02:00
|
|
|
window.navigator.msSaveOrOpenBlob(file, filename);
|
2017-06-08 06:57:40 +02:00
|
|
|
} else { // Others
|
|
|
|
var a = document.createElement("a"),
|
|
|
|
url = URL.createObjectURL(file);
|
|
|
|
a.href = url;
|
|
|
|
a.download = "bitburnerSave.json";
|
|
|
|
document.body.appendChild(a);
|
|
|
|
a.click();
|
|
|
|
setTimeout(function() {
|
|
|
|
document.body.removeChild(a);
|
2017-07-25 16:39:56 +02:00
|
|
|
window.URL.revokeObjectURL(url);
|
|
|
|
}, 0);
|
2017-06-08 06:57:40 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
BitburnerSaveObject.prototype.importGame = function() {
|
|
|
|
if (window.File && window.FileReader && window.FileList && window.Blob) {
|
|
|
|
var fileSelector = clearEventListeners("import-game-file-selector");
|
|
|
|
fileSelector.addEventListener("change", openImportFileHandler, false);
|
|
|
|
$("#import-game-file-selector").click();
|
|
|
|
} else {
|
|
|
|
dialogBoxCreate("ERR: Your browser does not support HTML5 File API. Cannot import.");
|
|
|
|
}
|
2017-07-25 16:39:56 +02:00
|
|
|
|
2017-06-08 01:35:56 +02:00
|
|
|
}
|
|
|
|
|
2017-05-05 03:08:44 +02:00
|
|
|
BitburnerSaveObject.prototype.deleteGame = function() {
|
|
|
|
if (window.localStorage.getItem("bitburnerSave")) {
|
|
|
|
window.localStorage.removeItem("bitburnerSave");
|
|
|
|
}
|
2017-05-15 18:54:23 +02:00
|
|
|
Engine.createStatusText("Game deleted!");
|
2017-05-05 03:08:44 +02:00
|
|
|
}
|
|
|
|
|
2017-06-07 02:28:20 +02:00
|
|
|
createNewUpdateText = function() {
|
2017-07-25 16:39:56 +02:00
|
|
|
dialogBoxCreate("New update!<br>" +
|
|
|
|
"Please report any bugs/issues through the github repository " +
|
|
|
|
"or the Bitburner subreddit (reddit.com/r/bitburner).<br><br>" +
|
2017-06-07 02:28:20 +02:00
|
|
|
CONSTANTS.LatestUpdate);
|
|
|
|
}
|
|
|
|
|
2017-05-05 03:08:44 +02:00
|
|
|
|
|
|
|
BitburnerSaveObject.prototype.toJSON = function() {
|
|
|
|
return Generic_toJSON("BitburnerSaveObject", this);
|
|
|
|
}
|
|
|
|
|
|
|
|
BitburnerSaveObject.fromJSON = function(value) {
|
|
|
|
return Generic_fromJSON(BitburnerSaveObject, value.data);
|
|
|
|
}
|
|
|
|
|
2017-06-08 06:57:40 +02:00
|
|
|
Reviver.constructors.BitburnerSaveObject = BitburnerSaveObject;
|
|
|
|
|
2017-07-25 16:39:56 +02:00
|
|
|
//Import game
|
2017-06-08 06:57:40 +02:00
|
|
|
|
|
|
|
function openImportFileHandler(evt) {
|
|
|
|
var file = evt.target.files[0];
|
|
|
|
if (!file) {
|
|
|
|
dialogBoxCreate("Invalid file selected");
|
|
|
|
return;
|
|
|
|
}
|
2017-07-25 16:39:56 +02:00
|
|
|
|
2017-06-08 06:57:40 +02:00
|
|
|
var reader = new FileReader();
|
|
|
|
reader.onload = function(e) {
|
|
|
|
var contents = e.target.result;
|
|
|
|
loadImportedGame(saveObject, contents);
|
|
|
|
};
|
|
|
|
reader.readAsText(file);
|
2017-07-25 16:39:56 +02:00
|
|
|
}
|