2017-02-17 23:19:25 +01:00
|
|
|
/* Pop up Purchase Augmentation Box */
|
|
|
|
function purchaseAugmentationBoxInit() {
|
|
|
|
var cancelButton = document.getElementById("purchase-augmentation-box-cancel");
|
|
|
|
|
|
|
|
//Close Dialog box
|
|
|
|
cancelButton.addEventListener("click", function() {
|
|
|
|
purchaseAugmentationBoxClose();
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
document.addEventListener("DOMContentLoaded", purchaseAugmentationBoxInit, false);
|
|
|
|
|
|
|
|
purchaseAugmentationBoxClose = function() {
|
|
|
|
var purchaseAugmentationBox = document.getElementById("purchase-augmentation-box-container");
|
|
|
|
purchaseAugmentationBox.style.display = "none";
|
|
|
|
}
|
|
|
|
|
|
|
|
purchaseAugmentationBoxOpen = function() {
|
|
|
|
var purchaseAugmentationBox = document.getElementById("purchase-augmentation-box-container");
|
|
|
|
purchaseAugmentationBox.style.display = "block";
|
|
|
|
}
|
|
|
|
|
|
|
|
purchaseAugmentationBoxSetText = function(txt) {
|
|
|
|
var purchaseAugmentationBox = document.getElementById("purchase-augmentation-box-text");
|
|
|
|
purchaseAugmentationBox.innerHTML = txt;
|
|
|
|
}
|
|
|
|
|
|
|
|
//ram argument is in GB
|
|
|
|
purchaseAugmentationBoxCreate = function(aug, fac) {
|
2017-05-05 16:21:08 +02:00
|
|
|
document.getElementById("purchase-augmentation-box-aug-name").innerHTML = aug.name;
|
|
|
|
document.getElementById("purchase-augmentation-box-aug-info").innerHTML = aug.info;
|
2017-05-06 21:12:45 +02:00
|
|
|
purchaseAugmentationBoxSetText("<br>Would you like to purchase the " + aug.name + " Augmentation for $" +
|
2017-05-05 16:21:08 +02:00
|
|
|
formatNumber(aug.baseCost * fac.augmentationPriceMult, 2) + "?");
|
2017-02-17 23:19:25 +01:00
|
|
|
|
|
|
|
//Clear old event listeners from Confirm button
|
2017-05-05 23:27:35 +02:00
|
|
|
var newConfirmButton = clearEventListeners("purchase-augmentation-box-confirm");
|
2017-02-17 23:19:25 +01:00
|
|
|
|
|
|
|
newConfirmButton.addEventListener("click", function() {
|
2017-02-20 23:06:16 +01:00
|
|
|
|
|
|
|
//TODO Requirements for specific augmentations (e.g Embedded Netburner Module b4 its upgrades)
|
|
|
|
if (aug.name == "Augmented Targeting II") {
|
|
|
|
var targeting1 = Augmentations["Augmented Targeting I"];
|
|
|
|
if (targeting1 == null) {
|
|
|
|
console.log("ERROR: Could not find Augmented Targeting I");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (targeting1.owned == false) {
|
|
|
|
dialogBoxCreate("You must first install Augmented Targeting I before you can upgrade it to Augmented Targeting II");
|
|
|
|
}
|
|
|
|
} else if (aug.name == "Augmented Targeting III") {
|
|
|
|
var targeting2 = Augmentations["Augmented Targeting II"];
|
|
|
|
if (targeting2 == null) {
|
|
|
|
console.log("ERROR: Could not find Augmented Targeting II");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (targeting2.owned == false) {
|
|
|
|
dialogBoxCreate("You must first install Augmented Targeting II before you can upgrade it to Augmented Targeting III");
|
|
|
|
}
|
|
|
|
} else if (aug.name == "Combat Rib II") {
|
|
|
|
var combatRib1 = Augmentations["Combat Rib I"];
|
|
|
|
if (combatRib1 == null) {
|
|
|
|
console.log("ERROR: Could not find Combat Rib I");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (combatRib1.owned == false) {
|
|
|
|
dialogBoxCreate("You must first install Combat Rib I before you can upgrade it to Combat Rib II");
|
|
|
|
}
|
|
|
|
} else if (aug.name == "Combat Rib III") {
|
|
|
|
var combatRib2 = Augmentations["Combat Rib II"];
|
|
|
|
if (combatRib2 == null) {
|
|
|
|
console.log("ERROR: Could not find Combat Rib II");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (combatRib2.owned == false) {
|
|
|
|
dialogBoxCreate("You must first install Combat Rib II before you can upgrade it to Combat Rib III");
|
|
|
|
}
|
2017-02-22 23:07:55 +01:00
|
|
|
} else if (aug.name == "Graphene Bionic Spine Upgrade") {
|
|
|
|
var bionicSpine = Augmentations["Bionic Spine"];
|
|
|
|
if (bionicSpine == null) {
|
|
|
|
console.log("ERROR: Could not find Bionic Spine");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (bionicSpine.owned == false) {
|
|
|
|
dialogBoxCreate("You must first install a Bionic Spine before you can upgrade it to a Graphene Bionic Spine");
|
|
|
|
}
|
|
|
|
} else if (aug.name == "Graphene Bionic Legs Upgrade") {
|
|
|
|
var bionicLegs = Augmentations["Bionic Legs"];
|
|
|
|
if (bionicLegs == null) {
|
|
|
|
console.log("ERROR: Could not find Bionic Legs");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (bionicLegs.owned == false ) {
|
|
|
|
dialogBoxCreate("You must first install Bionic Legs before you can upgrade it to Graphene Bionic Legs");
|
|
|
|
}
|
2017-02-20 23:06:16 +01:00
|
|
|
} else if (aug.name == "Embedded Netburner Module Core V2 Upgrade") {
|
|
|
|
var coreImplant = Augmentations["Embedded Netburner Module Core Implant"];
|
|
|
|
if (coreImplant == null) {
|
|
|
|
console.log("ERROR: Could not find ENM Core Implant");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (coreImplant.owned == false) {
|
|
|
|
dialogBoxCreate("You must first install Embedded Netburner Module Core Implant before you can upgrade it to V2");
|
|
|
|
}
|
|
|
|
} else if (aug.name == "Embedded Netburner Module Core V3 Upgrade") {
|
|
|
|
var v2Upgrade = Augmentations["Embedded Netburner Module Core V2 Upgrade"];
|
|
|
|
if (v2Upgrade == null) {
|
|
|
|
console.log("ERROR: Could not find ENM Core V2 upgrade");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (v2Upgrade.owned == false) {
|
2017-02-23 22:41:20 +01:00
|
|
|
dialogBoxCreate("You must first install Embedded Netburner Module Core V2 Upgrade before you can upgrade it to V3");
|
2017-02-20 23:06:16 +01:00
|
|
|
}
|
|
|
|
} else if (aug.name == "Embedded Netburner Module Core Implant" ||
|
|
|
|
aug.name == "Embedded Netburner Module Analyze Engine" ||
|
|
|
|
aug.name == "Embedded Netburner Module Direct Memory Access Upgrade") {
|
|
|
|
var enm = Augmentations["Embedded Netburner Module"];
|
|
|
|
if (enm == null) {
|
|
|
|
console.log("ERROR: Could not find ENM");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (enm.owned == false) {
|
|
|
|
dialogBoxCreate("You must first install the Embedded Netburner Module before installing any upgrades to it");
|
|
|
|
}
|
|
|
|
|
2017-02-23 22:41:20 +01:00
|
|
|
} else if (aug.name == "PC Direct-Neural Interface Optimization Submodule" ||
|
|
|
|
aug.name == "PC Direct-Neural Interface NeuroNet Injector") {
|
|
|
|
var pcdni = Augmentations["PC Direct-Neural Interface"];
|
|
|
|
if (pcdni == null) {
|
|
|
|
console.log("ERROR: Could not find PC Direct Neural Interface");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (pcdni.owned == false) {
|
|
|
|
dialogBoxCreate("You must first install the PD Direct-Neural Interface before installing this upgrade");
|
|
|
|
}
|
|
|
|
|
2017-02-20 23:06:16 +01:00
|
|
|
} else if (Player.money >= (aug.baseCost * fac.augmentationPriceMult)) {
|
2017-02-17 23:19:25 +01:00
|
|
|
applyAugmentation(aug, fac);
|
|
|
|
//TODO Make this text better
|
2017-05-05 03:08:44 +02:00
|
|
|
dialogBoxCreate("You slowly drift to sleep as " + fac.name + "'s scientists put you under " +
|
|
|
|
" in order to install the " + aug.name + " Augmentation. <br><br>" +
|
2017-02-17 23:19:25 +01:00
|
|
|
"You wake up in your home...you feel different...");
|
|
|
|
|
2017-02-23 22:41:20 +01:00
|
|
|
prestigeAugmentation();
|
2017-02-17 23:19:25 +01:00
|
|
|
} else {
|
|
|
|
dialogBoxCreate("You don't have enough money to purchase this Augmentation!");
|
|
|
|
}
|
|
|
|
purchaseAugmentationBoxClose();
|
|
|
|
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
|
|
|
purchaseAugmentationBoxOpen();
|
|
|
|
}
|