Merge pull request #1603 from danielyxie/dev

Formulas.exe was added.
This commit is contained in:
hydroflame 2021-10-27 23:43:05 -04:00 committed by GitHub
commit f2c53bc556
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
18 changed files with 4879 additions and 5654 deletions

26
dist/vendor.bundle.js vendored

File diff suppressed because one or more lines are too long

@ -31,7 +31,7 @@ List of all Source-Files
| | * Each level of this Source-File opens up more of the Singularity Functions to use. | | | * Each level of this Source-File opens up more of the Singularity Functions to use. |
+------------------------------------+-------------------------------------------------------------------------------------+ +------------------------------------+-------------------------------------------------------------------------------------+
| BitNode-5: Artificial Intelligence | * Unlocks :ref:`gameplay_intelligence`. | | BitNode-5: Artificial Intelligence | * Unlocks :ref:`gameplay_intelligence`. |
| | * Unlocks :js:func:`getBitNodeMultipliers` and :js:func:`getServer` | | | * Unlocks :js:func:`getBitNodeMultipliers` and start with Formulas.exe |
| | Netscript functions, as well as :ref:`netscriptformulas`. | | | Netscript functions, as well as :ref:`netscriptformulas`. |
| | * Increases all of the player's hacking-related multipliers by 8%/12%/14%. | | | * Increases all of the player's hacking-related multipliers by 8%/12%/14%. |
+------------------------------------+-------------------------------------------------------------------------------------+ +------------------------------------+-------------------------------------------------------------------------------------+

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

1709
package-lock.json generated

File diff suppressed because it is too large Load Diff

@ -35,6 +35,7 @@
"monaco-editor": "^0.27.0", "monaco-editor": "^0.27.0",
"notistack": "^2.0.2", "notistack": "^2.0.2",
"numeral": "2.0.6", "numeral": "2.0.6",
"raw-loader": "^4.0.2",
"react": "^17.0.2", "react": "^17.0.2",
"react-dom": "^17.0.2", "react-dom": "^17.0.2",
"react-draggable": "^4.4.4", "react-draggable": "^4.4.4",

@ -63,6 +63,11 @@ export const GeneralActions: {
), ),
}, },
"Incite Violence": { "Incite Violence": {
desc: <>Purposefully stir trouble in the synthoid community in order to gain a political edge.</>, desc: (
<>
Purposefully stir trouble in the synthoid community in order to gain a political edge. This will generate
additional contracts and operations, at the cost of increased Chaos.
</>
),
}, },
}; };

@ -23,7 +23,7 @@ export function listAllDarkwebItems(): void {
const item = DarkWebItems[key]; const item = DarkWebItems[key];
Terminal.printRaw( Terminal.printRaw(
<> <>
{item.program} - <Money money={item.price} /> - {item.description}` {item.program} - <Money money={item.price} /> - {item.description}
</>, </>,
); );
} }

@ -3,17 +3,18 @@ import { IMap } from "../types";
import { Programs } from "../Programs/Programs"; import { Programs } from "../Programs/Programs";
export const DarkWebItems: IMap<DarkWebItem> = { export const DarkWebItems: IMap<DarkWebItem> = {
BruteSSHProgram: new DarkWebItem(Programs.BruteSSHProgram.name, 500e3, "Opens up SSH Ports"), BruteSSHProgram: new DarkWebItem(Programs.BruteSSHProgram.name, 500e3, "Opens up SSH Ports."),
FTPCrackProgram: new DarkWebItem(Programs.FTPCrackProgram.name, 1500e3, "Opens up FTP Ports"), FTPCrackProgram: new DarkWebItem(Programs.FTPCrackProgram.name, 1500e3, "Opens up FTP Ports."),
RelaySMTPProgram: new DarkWebItem(Programs.RelaySMTPProgram.name, 5e6, "Opens up SMTP Ports"), RelaySMTPProgram: new DarkWebItem(Programs.RelaySMTPProgram.name, 5e6, "Opens up SMTP Ports."),
HTTPWormProgram: new DarkWebItem(Programs.HTTPWormProgram.name, 30e6, "Opens up HTTP Ports"), HTTPWormProgram: new DarkWebItem(Programs.HTTPWormProgram.name, 30e6, "Opens up HTTP Ports."),
SQLInjectProgram: new DarkWebItem(Programs.SQLInjectProgram.name, 250e6, "Opens up SQL Ports"), SQLInjectProgram: new DarkWebItem(Programs.SQLInjectProgram.name, 250e6, "Opens up SQL Ports."),
DeepscanV1: new DarkWebItem(Programs.DeepscanV1.name, 500000, "Enables 'scan-analyze' with a depth up to 5"), DeepscanV1: new DarkWebItem(Programs.DeepscanV1.name, 500000, "Enables 'scan-analyze' with a depth up to 5."),
DeepscanV2: new DarkWebItem(Programs.DeepscanV2.name, 25e6, "Enables 'scan-analyze' with a depth up to 10"), DeepscanV2: new DarkWebItem(Programs.DeepscanV2.name, 25e6, "Enables 'scan-analyze' with a depth up to 10."),
AutolinkProgram: new DarkWebItem(Programs.AutoLink.name, 1e6, "Enables direct connect via 'scan-analyze'"), AutolinkProgram: new DarkWebItem(Programs.AutoLink.name, 1e6, "Enables direct connect via 'scan-analyze."),
ServerProfilerProgram: new DarkWebItem( ServerProfilerProgram: new DarkWebItem(
Programs.ServerProfiler.name, Programs.ServerProfiler.name,
1e6, 1e6,
"Displays hacking and Netscript-related information about a server", "Displays hacking and Netscript-related information about a server.",
), ),
FormulasProgram: new DarkWebItem(Programs.Formulas.name, 5e9, "Unlock access to the formulas API."),
}; };

@ -30,7 +30,7 @@ export function Augmentations(props: IProps): React.ReactElement {
} }
function queueAllAugs(): void { function queueAllAugs(): void {
for (const augName of Object.keys(AugmentationNames)) { for (const augName of Object.values(AugmentationNames)) {
props.player.queueAugmentation(augName); props.player.queueAugmentation(augName);
} }
} }

@ -27,6 +27,7 @@ import {
calculateGrowTime, calculateGrowTime,
calculateWeakenTime, calculateWeakenTime,
} from "../Hacking"; } from "../Hacking";
import { Programs } from "../Programs/Programs";
export interface INetscriptFormulas { export interface INetscriptFormulas {
basic: { basic: {
@ -65,106 +66,99 @@ export function NetscriptFormulas(
workerScript: WorkerScript, workerScript: WorkerScript,
helper: INetscriptHelper, helper: INetscriptHelper,
): INetscriptFormulas { ): INetscriptFormulas {
const checkFormulasAccess = function (func: any, n: any): void { const checkFormulasAccess = function (func: string): void {
if ( if (!player.hasProgram(Programs.Formulas.name)) {
(player.sourceFileLvl(5) < 1 && player.bitNodeN !== 5) || throw helper.makeRuntimeErrorMsg(`formulas.${func}`, `Requires Formulas.exe to run.`);
(player.sourceFileLvl(n) < 1 && player.bitNodeN !== n)
) {
let extra = "";
if (n !== 5) {
extra = ` and Source-File ${n}-1`;
}
throw helper.makeRuntimeErrorMsg(`formulas.${func}`, `Requires Source-File 5-1${extra} to run.`);
} }
}; };
return { return {
basic: { basic: {
calculateSkill: function (exp: any, mult: any = 1): any { calculateSkill: function (exp: any, mult: any = 1): any {
checkFormulasAccess("basic.calculateSkill", 5); checkFormulasAccess("basic.calculateSkill");
return calculateSkill(exp, mult); return calculateSkill(exp, mult);
}, },
calculateExp: function (skill: any, mult: any = 1): any { calculateExp: function (skill: any, mult: any = 1): any {
checkFormulasAccess("basic.calculateExp", 5); checkFormulasAccess("basic.calculateExp");
return calculateExp(skill, mult); return calculateExp(skill, mult);
}, },
hackChance: function (server: any, player: any): any { hackChance: function (server: any, player: any): any {
checkFormulasAccess("basic.hackChance", 5); checkFormulasAccess("basic.hackChance");
return calculateHackingChance(server, player); return calculateHackingChance(server, player);
}, },
hackExp: function (server: any, player: any): any { hackExp: function (server: any, player: any): any {
checkFormulasAccess("basic.hackExp", 5); checkFormulasAccess("basic.hackExp");
return calculateHackingExpGain(server, player); return calculateHackingExpGain(server, player);
}, },
hackPercent: function (server: any, player: any): any { hackPercent: function (server: any, player: any): any {
checkFormulasAccess("basic.hackPercent", 5); checkFormulasAccess("basic.hackPercent");
return calculatePercentMoneyHacked(server, player); return calculatePercentMoneyHacked(server, player);
}, },
growPercent: function (server: any, threads: any, player: any, cores: any = 1): any { growPercent: function (server: any, threads: any, player: any, cores: any = 1): any {
checkFormulasAccess("basic.growPercent", 5); checkFormulasAccess("basic.growPercent");
return calculateServerGrowth(server, threads, player, cores); return calculateServerGrowth(server, threads, player, cores);
}, },
hackTime: function (server: any, player: any): any { hackTime: function (server: any, player: any): any {
checkFormulasAccess("basic.hackTime", 5); checkFormulasAccess("basic.hackTime");
return calculateHackingTime(server, player); return calculateHackingTime(server, player);
}, },
growTime: function (server: any, player: any): any { growTime: function (server: any, player: any): any {
checkFormulasAccess("basic.growTime", 5); checkFormulasAccess("basic.growTime");
return calculateGrowTime(server, player); return calculateGrowTime(server, player);
}, },
weakenTime: function (server: any, player: any): any { weakenTime: function (server: any, player: any): any {
checkFormulasAccess("basic.weakenTime", 5); checkFormulasAccess("basic.weakenTime");
return calculateWeakenTime(server, player); return calculateWeakenTime(server, player);
}, },
}, },
hacknetNodes: { hacknetNodes: {
moneyGainRate: function (level: any, ram: any, cores: any, mult: any = 1): any { moneyGainRate: function (level: any, ram: any, cores: any, mult: any = 1): any {
checkFormulasAccess("hacknetNodes.moneyGainRate", 5); checkFormulasAccess("hacknetNodes.moneyGainRate");
return calculateMoneyGainRate(level, ram, cores, mult); return calculateMoneyGainRate(level, ram, cores, mult);
}, },
levelUpgradeCost: function (startingLevel: any, extraLevels: any = 1, costMult: any = 1): any { levelUpgradeCost: function (startingLevel: any, extraLevels: any = 1, costMult: any = 1): any {
checkFormulasAccess("hacknetNodes.levelUpgradeCost", 5); checkFormulasAccess("hacknetNodes.levelUpgradeCost");
return calculateLevelUpgradeCost(startingLevel, extraLevels, costMult); return calculateLevelUpgradeCost(startingLevel, extraLevels, costMult);
}, },
ramUpgradeCost: function (startingRam: any, extraLevels: any = 1, costMult: any = 1): any { ramUpgradeCost: function (startingRam: any, extraLevels: any = 1, costMult: any = 1): any {
checkFormulasAccess("hacknetNodes.ramUpgradeCost", 5); checkFormulasAccess("hacknetNodes.ramUpgradeCost");
return calculateRamUpgradeCost(startingRam, extraLevels, costMult); return calculateRamUpgradeCost(startingRam, extraLevels, costMult);
}, },
coreUpgradeCost: function (startingCore: any, extraCores: any = 1, costMult: any = 1): any { coreUpgradeCost: function (startingCore: any, extraCores: any = 1, costMult: any = 1): any {
checkFormulasAccess("hacknetNodes.coreUpgradeCost", 5); checkFormulasAccess("hacknetNodes.coreUpgradeCost");
return calculateCoreUpgradeCost(startingCore, extraCores, costMult); return calculateCoreUpgradeCost(startingCore, extraCores, costMult);
}, },
hacknetNodeCost: function (n: any, mult: any): any { hacknetNodeCost: function (n: any, mult: any): any {
checkFormulasAccess("hacknetNodes.hacknetNodeCost", 5); checkFormulasAccess("hacknetNodes.hacknetNodeCost");
return calculateNodeCost(n, mult); return calculateNodeCost(n, mult);
}, },
constants: function (): any { constants: function (): any {
checkFormulasAccess("hacknetNodes.constants", 5); checkFormulasAccess("hacknetNodes.constants");
return Object.assign({}, HacknetNodeConstants); return Object.assign({}, HacknetNodeConstants);
}, },
}, },
hacknetServers: { hacknetServers: {
hashGainRate: function (level: any, ramUsed: any, maxRam: any, cores: any, mult: any = 1): any { hashGainRate: function (level: any, ramUsed: any, maxRam: any, cores: any, mult: any = 1): any {
checkFormulasAccess("hacknetServers.hashGainRate", 9); checkFormulasAccess("hacknetServers.hashGainRate");
return HScalculateHashGainRate(level, ramUsed, maxRam, cores, mult); return HScalculateHashGainRate(level, ramUsed, maxRam, cores, mult);
}, },
levelUpgradeCost: function (startingLevel: any, extraLevels: any = 1, costMult: any = 1): any { levelUpgradeCost: function (startingLevel: any, extraLevels: any = 1, costMult: any = 1): any {
checkFormulasAccess("hacknetServers.levelUpgradeCost", 9); checkFormulasAccess("hacknetServers.levelUpgradeCost");
return HScalculateLevelUpgradeCost(startingLevel, extraLevels, costMult); return HScalculateLevelUpgradeCost(startingLevel, extraLevels, costMult);
}, },
ramUpgradeCost: function (startingRam: any, extraLevels: any = 1, costMult: any = 1): any { ramUpgradeCost: function (startingRam: any, extraLevels: any = 1, costMult: any = 1): any {
checkFormulasAccess("hacknetServers.ramUpgradeCost", 9); checkFormulasAccess("hacknetServers.ramUpgradeCost");
return HScalculateRamUpgradeCost(startingRam, extraLevels, costMult); return HScalculateRamUpgradeCost(startingRam, extraLevels, costMult);
}, },
coreUpgradeCost: function (startingCore: any, extraCores: any = 1, costMult: any = 1): any { coreUpgradeCost: function (startingCore: any, extraCores: any = 1, costMult: any = 1): any {
checkFormulasAccess("hacknetServers.coreUpgradeCost", 9); checkFormulasAccess("hacknetServers.coreUpgradeCost");
return HScalculateCoreUpgradeCost(startingCore, extraCores, costMult); return HScalculateCoreUpgradeCost(startingCore, extraCores, costMult);
}, },
cacheUpgradeCost: function (startingCache: any, extraCache: any = 1): any { cacheUpgradeCost: function (startingCache: any, extraCache: any = 1): any {
checkFormulasAccess("hacknetServers.cacheUpgradeCost", 9); checkFormulasAccess("hacknetServers.cacheUpgradeCost");
return HScalculateCacheUpgradeCost(startingCache, extraCache); return HScalculateCacheUpgradeCost(startingCache, extraCache);
}, },
hashUpgradeCost: function (upgName: any, level: any): any { hashUpgradeCost: function (upgName: any, level: any): any {
checkFormulasAccess("hacknetServers.hashUpgradeCost", 9); checkFormulasAccess("hacknetServers.hashUpgradeCost");
const upg = player.hashManager.getUpgrade(upgName); const upg = player.hashManager.getUpgrade(upgName);
if (!upg) { if (!upg) {
throw helper.makeRuntimeErrorMsg( throw helper.makeRuntimeErrorMsg(
@ -175,11 +169,11 @@ export function NetscriptFormulas(
return upg.getCost(level); return upg.getCost(level);
}, },
hacknetServerCost: function (n: any, mult: any): any { hacknetServerCost: function (n: any, mult: any): any {
checkFormulasAccess("hacknetServers.hacknetServerCost", 9); checkFormulasAccess("hacknetServers.hacknetServerCost");
return HScalculateServerCost(n, mult); return HScalculateServerCost(n, mult);
}, },
constants: function (): any { constants: function (): any {
checkFormulasAccess("hacknetServers.constants", 9); checkFormulasAccess("hacknetServers.constants");
return Object.assign({}, HacknetServerConstants); return Object.assign({}, HacknetServerConstants);
}, },
}, },

@ -65,6 +65,10 @@ export function prestigeAugmentation(): void {
homeComp.programs.push(Programs.AutoLink.name); homeComp.programs.push(Programs.AutoLink.name);
} }
if (Player.sourceFileLvl(5) > 0) {
homeComp.programs.push(Programs.Formulas.name);
}
// Re-create foreign servers // Re-create foreign servers
initForeignServers(Player.getHomeComputer()); initForeignServers(Player.getHomeComputer());
@ -216,6 +220,10 @@ export function prestigeSourceFile(flume: boolean): void {
// Messages // Messages
initMessages(); initMessages();
if (Player.sourceFileLvl(5) > 0) {
homeComp.programs.push(Programs.Formulas.name);
}
// BitNode 3: Corporatocracy // BitNode 3: Corporatocracy
if (Player.bitNodeN === 3) { if (Player.bitNodeN === 3) {
homeComp.messages.push(LiteratureNames.CorporationManagementHandbook); homeComp.messages.push(LiteratureNames.CorporationManagementHandbook);

@ -190,7 +190,7 @@ export const programsMetadata: IProgramCreationParams[] = [
time: CONSTANTS.MillisecondsPerQuarterHour, time: CONSTANTS.MillisecondsPerQuarterHour,
}, },
run: (router: IRouter, terminal: ITerminal): void => { run: (router: IRouter, terminal: ITerminal): void => {
terminal.error("This executable cannot be run."); terminal.print("This executable cannot be run.");
terminal.print("DeepscanV1.exe lets you run 'scan-analyze' with a depth up to 5."); terminal.print("DeepscanV1.exe lets you run 'scan-analyze' with a depth up to 5.");
}, },
}, },
@ -204,7 +204,7 @@ export const programsMetadata: IProgramCreationParams[] = [
time: CONSTANTS.MillisecondsPer2Hours, time: CONSTANTS.MillisecondsPer2Hours,
}, },
run: (router: IRouter, terminal: ITerminal): void => { run: (router: IRouter, terminal: ITerminal): void => {
terminal.error("This executable cannot be run."); terminal.print("This executable cannot be run.");
terminal.print("DeepscanV2.exe lets you run 'scan-analyze' with a depth up to 10."); terminal.print("DeepscanV2.exe lets you run 'scan-analyze' with a depth up to 10.");
}, },
}, },
@ -268,11 +268,25 @@ export const programsMetadata: IProgramCreationParams[] = [
time: CONSTANTS.MillisecondsPerQuarterHour, time: CONSTANTS.MillisecondsPerQuarterHour,
}, },
run: (router: IRouter, terminal: ITerminal): void => { run: (router: IRouter, terminal: ITerminal): void => {
terminal.error("This executable cannot be run."); terminal.print("This executable cannot be run.");
terminal.print("AutoLink.exe lets you automatically connect to other servers when using 'scan-analyze'."); terminal.print("AutoLink.exe lets you automatically connect to other servers when using 'scan-analyze'.");
terminal.print("When using scan-analyze, click on a server's hostname to connect to it."); terminal.print("When using scan-analyze, click on a server's hostname to connect to it.");
}, },
}, },
{
key: "Formulas",
name: "Formulas.exe",
create: {
level: 1000,
tooltip: "This program allows you to use the formulas API",
req: requireHackingLevel(1000),
time: CONSTANTS.MillisecondsPer4Hours,
},
run: (router: IRouter, terminal: ITerminal): void => {
terminal.print("This executable cannot be run.");
terminal.print("Formulas.exe lets you use the formulas API.");
},
},
{ {
key: "BitFlume", key: "BitFlume",
name: "b1t_flum3.exe", name: "b1t_flum3.exe",

@ -1,5 +1,3 @@
export const libSource = `
type Host = string; type Host = string;
type Script = string; type Script = string;
type StockSymbol = type StockSymbol =
@ -38,10 +36,7 @@ type StockSymbol =
| "TITN"; | "TITN";
type OrderType = "limitbuy" | "limitsell" | "stopbuy" | "stopsell"; type OrderType = "limitbuy" | "limitsell" | "stopbuy" | "stopsell";
type OrderPos = "long" | "short"; type OrderPos = "long" | "short";
type University = type University = "Summit University" | "Rothman University" | "ZB Institute Of Technology";
| "Summit University"
| "Rothman University"
| "ZB Institute Of Technology";
type UniversityCourse = type UniversityCourse =
| "Study Computer Science" | "Study Computer Science"
| "Data Strucures" | "Data Strucures"
@ -49,20 +44,9 @@ type UniversityCourse =
| "Algorithms" | "Algorithms"
| "Management" | "Management"
| "Leadership"; | "Leadership";
type Gym = type Gym = "Crush Fitness Gym" | "Snap Fitness Gym" | "Iron Gym" | "Powerhouse Gym" | "Millenium Fitness Gym";
| "Crush Fitness Gym"
| "Snap Fitness Gym"
| "Iron Gym"
| "Powerhouse Gym"
| "Millenium Fitness Gym";
type GymStat = "str" | "def" | "dex" | "agi"; type GymStat = "str" | "def" | "dex" | "agi";
type City = type City = "Aevum" | "Chongqing" | "Sector-12" | "New Tokyo" | "Ishima" | "Volhaven";
| "Aevum"
| "Chongqing"
| "Sector-12"
| "New Tokyo"
| "Ishima"
| "Volhaven";
type PurchaseableProgram = type PurchaseableProgram =
| "brutessh.exe" | "brutessh.exe"
| "ftpcrack.exe" | "ftpcrack.exe"
@ -470,6 +454,49 @@ interface HacknetMultipliers {
levelCost: number; levelCost: number;
} }
interface Server {
// How many CPU cores this server has. Maximum of 8.
// Currently, this only affects hacking missions
cpuCores: number;
// Flag indicating whether the FTP port is open
ftpPortOpen: boolean;
// Flag indicating whether player has admin/root access to this server
hasAdminRights: boolean;
// Hostname. Must be unique
hostname: string;
// Flag indicating whether HTTP Port is open
httpPortOpen: boolean;
// IP Address. Must be unique
ip: string;
// Flag indicating whether player is curently connected to this server
isConnectedTo: boolean;
// RAM (GB) available on this server
maxRam: number;
// Name of company/faction/etc. that this server belongs to.
// Optional, not applicable to all Servers
organizationName: string;
// RAM (GB) used. i.e. unavailable RAM
ramUsed: number;
// Flag indicating whether SMTP Port is open
smtpPortOpen: boolean;
// Flag indicating whether SQL Port is open
sqlPortOpen: boolean;
// Flag indicating whether the SSH Port is open
sshPortOpen: boolean;
}
interface BitNodeMultipliers { interface BitNodeMultipliers {
/** Influences how quickly the player's agility level (not exp) scales */ /** Influences how quickly the player's agility level (not exp) scales */
AgilityLevelMultiplier: number; AgilityLevelMultiplier: number;
@ -707,10 +734,7 @@ interface SourceFileLvl {
lvl: number; lvl: number;
} }
type BladeburnerContracts = type BladeburnerContracts = "Tracking" | "Bounty Hunter" | "Retirement";
| "Tracking"
| "Bounty Hunter"
| "Retirement";
type BladeburnerOperations = type BladeburnerOperations =
| "Investigation" | "Investigation"
@ -766,11 +790,7 @@ type BladeburnerSkills =
| "Hands of Midas" | "Hands of Midas"
| "Hyperdrive"; | "Hyperdrive";
type BladeburnerActTypes = type BladeburnerActTypes = "contracts" | "operations" | "black ops" | "general";
| "contracts"
| "operations"
| "black ops"
| "general";
interface BladeburnerCurAction { interface BladeburnerCurAction {
/** Type of Action */ /** Type of Action */
@ -854,12 +874,7 @@ type GangEquipment =
| "Hmap Node" | "Hmap Node"
| "Jack the Ripper"; | "Jack the Ripper";
type GangEquipmentType = type GangEquipmentType = "Weapon" | "Armor" | "Vehicle" | "Rootkit" | "Augmentation";
| "Weapon"
| "Armor"
| "Vehicle"
| "Rootkit"
| "Augmentation";
type GangAugmentations = type GangAugmentations =
| "Bionic Arms" | "Bionic Arms"
@ -1021,19 +1036,211 @@ interface GangMemberAscension {
interface SleeveStats { interface SleeveStats {
/** current shock of the sleeve [0-100] */ /** current shock of the sleeve [0-100] */
shock: 0|1|2|3|4|5|6|7|8|9|10|11|12|13|14|15|16|17|18|19|20 shock:
|21|22|23|24|25|26|27|28|29|30|31|32|33|34|35|36|37 | 0
|38|39|40|41|42|43|44|45|46|47|48|49|50|51|52|53|54 | 1
|55|56|57|58|59|60|61|62|63|64|65|66|67|68|69|70|71 | 2
|72|73|74|75|76|77|78|79|80|81|82|83|84|85|86|87|88 | 3
|89|90|91|92|93|94|95|96|97|98|99|100; | 4
| 5
| 6
| 7
| 8
| 9
| 10
| 11
| 12
| 13
| 14
| 15
| 16
| 17
| 18
| 19
| 20
| 21
| 22
| 23
| 24
| 25
| 26
| 27
| 28
| 29
| 30
| 31
| 32
| 33
| 34
| 35
| 36
| 37
| 38
| 39
| 40
| 41
| 42
| 43
| 44
| 45
| 46
| 47
| 48
| 49
| 50
| 51
| 52
| 53
| 54
| 55
| 56
| 57
| 58
| 59
| 60
| 61
| 62
| 63
| 64
| 65
| 66
| 67
| 68
| 69
| 70
| 71
| 72
| 73
| 74
| 75
| 76
| 77
| 78
| 79
| 80
| 81
| 82
| 83
| 84
| 85
| 86
| 87
| 88
| 89
| 90
| 91
| 92
| 93
| 94
| 95
| 96
| 97
| 98
| 99
| 100;
/** current sync of the sleeve [0-100] */ /** current sync of the sleeve [0-100] */
sync: 0|1|2|3|4|5|6|7|8|9|10|11|12|13|14|15|16|17|18|19|20 sync:
|21|22|23|24|25|26|27|28|29|30|31|32|33|34|35|36|37 | 0
|38|39|40|41|42|43|44|45|46|47|48|49|50|51|52|53|54 | 1
|55|56|57|58|59|60|61|62|63|64|65|66|67|68|69|70|71 | 2
|72|73|74|75|76|77|78|79|80|81|82|83|84|85|86|87|88 | 3
|89|90|91|92|93|94|95|96|97|98|99|100; | 4
| 5
| 6
| 7
| 8
| 9
| 10
| 11
| 12
| 13
| 14
| 15
| 16
| 17
| 18
| 19
| 20
| 21
| 22
| 23
| 24
| 25
| 26
| 27
| 28
| 29
| 30
| 31
| 32
| 33
| 34
| 35
| 36
| 37
| 38
| 39
| 40
| 41
| 42
| 43
| 44
| 45
| 46
| 47
| 48
| 49
| 50
| 51
| 52
| 53
| 54
| 55
| 56
| 57
| 58
| 59
| 60
| 61
| 62
| 63
| 64
| 65
| 66
| 67
| 68
| 69
| 70
| 71
| 72
| 73
| 74
| 75
| 76
| 77
| 78
| 79
| 80
| 81
| 82
| 83
| 84
| 85
| 86
| 87
| 88
| 89
| 90
| 91
| 92
| 93
| 94
| 95
| 96
| 97
| 98
| 99
| 100;
/** current hacking skill of the sleeve */ /** current hacking skill of the sleeve */
hacking_skill: number; hacking_skill: number;
/** current strength of the sleeve */ /** current strength of the sleeve */
@ -1089,7 +1296,6 @@ interface SleeveTask {
} }
interface TIX { interface TIX {
/** /**
* Returns an array of the symbols of the tradable stocks * Returns an array of the symbols of the tradable stocks
* *
@ -1182,7 +1388,7 @@ interface TIX {
* @param {string} posType Specifies whether the order is a Long or Short position. * @param {string} posType Specifies whether the order is a Long or Short position.
* @returns {number} Cost to buy a given number of shares of a stock. * @returns {number} Cost to buy a given number of shares of a stock.
*/ */
getPurchaseCost (sym: StockSymbol, shares: Number, posType: OrderPos): number; getPurchaseCost(sym: StockSymbol, shares: number, posType: OrderPos): number;
/** /**
* Calculates and returns how much you would gain from selling a given number of shares of a stock. * Calculates and returns how much you would gain from selling a given number of shares of a stock.
@ -1194,8 +1400,7 @@ interface TIX {
* @param {string} posType Specifies whether the order is a Long or Short position. * @param {string} posType Specifies whether the order is a Long or Short position.
* @returns {number} Gain from selling a given number of shares of a stock. * @returns {number} Gain from selling a given number of shares of a stock.
*/ */
getSaleGain (sym: StockSymbol, shares: Number, posType: OrderPos): number; getSaleGain(sym: StockSymbol, shares: number, posType: OrderPos): number;
/** /**
* Attempts to purchase shares of a stock using a Market Order. * Attempts to purchase shares of a stock using a Market Order.
@ -1292,13 +1497,7 @@ interface TIX {
* @param {string} pos Specifies whether the order is a Long or Short position. * @param {string} pos Specifies whether the order is a Long or Short position.
* @returns {boolean} True if the order is successfully placed, and false otherwise. * @returns {boolean} True if the order is successfully placed, and false otherwise.
*/ */
placeOrder ( placeOrder(sym: StockSymbol, shares: number, price: number, type: OrderType, pos: OrderPos): boolean;
sym: StockSymbol,
shares: number,
price: number,
type: OrderType,
pos: OrderPos,
): boolean;
/** /**
* Cancels an oustanding Limit or Stop order on the stock market. * Cancels an oustanding Limit or Stop order on the stock market.
@ -1313,13 +1512,7 @@ interface TIX {
* @param {string} type Type of order. * @param {string} type Type of order.
* @param {string} pos Specifies whether the order is a Long or Short position. * @param {string} pos Specifies whether the order is a Long or Short position.
*/ */
cancelOrder ( cancelOrder(sym: StockSymbol, shares: number, price: number, type: OrderType, pos: OrderPos): void;
sym: StockSymbol,
shares: number,
price: number,
type: OrderType,
pos: OrderPos,
): void;
/** /**
* Returns your order book for the stock market. * Returns your order book for the stock market.
@ -1458,10 +1651,7 @@ interface Singularity {
* @param {string} courseName Name of course. * @param {string} courseName Name of course.
* @returns {boolean} True if actions is successfully started, false otherwise. * @returns {boolean} True if actions is successfully started, false otherwise.
*/ */
universityCourse ( universityCourse(universityName: University, courseName: UniversityCourse): boolean;
universityName: University,
courseName: UniversityCourse,
): boolean;
/** /**
* If you are not in BitNode-4, then you must have Level 1 of Source-File 4 in order to use this function and the RAM cost is doubled. * If you are not in BitNode-4, then you must have Level 1 of Source-File 4 in order to use this function and the RAM cost is doubled.
@ -2288,7 +2478,7 @@ interface BladeBurner {
*/ */
startAction( startAction(
type: BladeburnerActTypes, type: BladeburnerActTypes,
name: BladeburnerGenActions | BladeburnerContracts | BladeburnerOperations | BladeburnerBlackOps name: BladeburnerGenActions | BladeburnerContracts | BladeburnerOperations | BladeburnerBlackOps,
): boolean; ): boolean;
/** /**
@ -2326,7 +2516,7 @@ interface BladeBurner {
*/ */
getActionTime( getActionTime(
type: BladeburnerActTypes, type: BladeburnerActTypes,
name: BladeburnerGenActions | BladeburnerContracts | BladeburnerOperations | BladeburnerBlackOps name: BladeburnerGenActions | BladeburnerContracts | BladeburnerOperations | BladeburnerBlackOps,
): number; ): number;
/** /**
@ -2344,7 +2534,7 @@ interface BladeBurner {
*/ */
getActionEstimatedSuccessChance( getActionEstimatedSuccessChance(
type: BladeburnerActTypes, type: BladeburnerActTypes,
name: BladeburnerGenActions | BladeburnerContracts | BladeburnerOperations | BladeburnerBlackOps name: BladeburnerGenActions | BladeburnerContracts | BladeburnerOperations | BladeburnerBlackOps,
): number; ): number;
/** /**
@ -2364,7 +2554,7 @@ interface BladeBurner {
getActionRepGain( getActionRepGain(
type: BladeburnerActTypes, type: BladeburnerActTypes,
name: BladeburnerGenActions | BladeburnerContracts | BladeburnerOperations | BladeburnerBlackOps, name: BladeburnerGenActions | BladeburnerContracts | BladeburnerOperations | BladeburnerBlackOps,
level: number level: number,
): number; ): number;
/** /**
@ -2385,7 +2575,7 @@ interface BladeBurner {
*/ */
getActionCountRemaining( getActionCountRemaining(
type: BladeburnerActTypes, type: BladeburnerActTypes,
name: BladeburnerGenActions | BladeburnerContracts | BladeburnerOperations | BladeburnerBlackOps name: BladeburnerGenActions | BladeburnerContracts | BladeburnerOperations | BladeburnerBlackOps,
): number; ): number;
/** /**
@ -2403,7 +2593,7 @@ interface BladeBurner {
*/ */
getActionMaxLevel( getActionMaxLevel(
type: BladeburnerActTypes, type: BladeburnerActTypes,
name: BladeburnerGenActions | BladeburnerContracts | BladeburnerOperations | BladeburnerBlackOps name: BladeburnerGenActions | BladeburnerContracts | BladeburnerOperations | BladeburnerBlackOps,
): number; ): number;
/** /**
@ -2421,7 +2611,7 @@ interface BladeBurner {
*/ */
getActionCurrentLevel( getActionCurrentLevel(
type: BladeburnerActTypes, type: BladeburnerActTypes,
name: BladeburnerGenActions | BladeburnerContracts | BladeburnerOperations | BladeburnerBlackOps name: BladeburnerGenActions | BladeburnerContracts | BladeburnerOperations | BladeburnerBlackOps,
): number; ): number;
/** /**
@ -2439,7 +2629,7 @@ interface BladeBurner {
*/ */
getActionAutolevel( getActionAutolevel(
type: BladeburnerActTypes, type: BladeburnerActTypes,
name: BladeburnerGenActions | BladeburnerContracts | BladeburnerOperations | BladeburnerBlackOps name: BladeburnerGenActions | BladeburnerContracts | BladeburnerOperations | BladeburnerBlackOps,
): boolean; ): boolean;
/** /**
@ -2456,7 +2646,7 @@ interface BladeBurner {
setActionAutolevel( setActionAutolevel(
type: BladeburnerActTypes, type: BladeburnerActTypes,
name: BladeburnerGenActions | BladeburnerContracts | BladeburnerOperations | BladeburnerBlackOps, name: BladeburnerGenActions | BladeburnerContracts | BladeburnerOperations | BladeburnerBlackOps,
autoLevel: boolean autoLevel: boolean,
): void; ): void;
/** /**
@ -2473,7 +2663,7 @@ interface BladeBurner {
setActionLevel( setActionLevel(
type: BladeburnerActTypes, type: BladeburnerActTypes,
name: BladeburnerGenActions | BladeburnerContracts | BladeburnerOperations | BladeburnerBlackOps, name: BladeburnerGenActions | BladeburnerContracts | BladeburnerOperations | BladeburnerBlackOps,
level: number level: number,
): void; ): void;
/** /**
@ -2569,7 +2759,7 @@ interface BladeBurner {
*/ */
getTeamSize( getTeamSize(
type: BladeburnerActTypes, type: BladeburnerActTypes,
name: BladeburnerGenActions | BladeburnerContracts | BladeburnerOperations | BladeburnerBlackOps name: BladeburnerGenActions | BladeburnerContracts | BladeburnerOperations | BladeburnerBlackOps,
): number; ): number;
/** /**
@ -2589,7 +2779,7 @@ interface BladeBurner {
setTeamSize( setTeamSize(
type: BladeburnerActTypes, type: BladeburnerActTypes,
name: BladeburnerGenActions | BladeburnerContracts | BladeburnerOperations | BladeburnerBlackOps, name: BladeburnerGenActions | BladeburnerContracts | BladeburnerOperations | BladeburnerBlackOps,
size: number size: number,
): number; ): number;
/** /**
@ -2732,11 +2922,7 @@ interface CodingContract {
* @param {string} [host] Host or IP of the server containing the contract. Optional. Defaults to current server if not provided. * @param {string} [host] Host or IP of the server containing the contract. Optional. Defaults to current server if not provided.
* @returns {boolean} True if the solution was correct, false otherwise. * @returns {boolean} True if the solution was correct, false otherwise.
*/ */
attempt ( attempt(answer: string | string[] | number, fn: string, host?: Host): boolean;
answer: string | string[] | number,
fn: string,
host?: Host
): boolean;
/** /**
* Attempts to solve the Coding Contract with the provided solution. * Attempts to solve the Coding Contract with the provided solution.
@ -2748,12 +2934,7 @@ interface CodingContract {
* @param {object} [opts] Optional parameters for configuring function behavior. * @param {object} [opts] Optional parameters for configuring function behavior.
* @returns {boolean} True if the solution was correct, false otherwise. If the returnReward option is configured, then the function will instead return a string. If the contract is successfully solved, the string will contain a description of the contracts reward. Otherwise, it will be an empty string. * @returns {boolean} True if the solution was correct, false otherwise. If the returnReward option is configured, then the function will instead return a string. If the contract is successfully solved, the string will contain a description of the contracts reward. Otherwise, it will be an empty string.
*/ */
attempt ( attempt(answer: string | string[] | number, fn: string, host?: Host, opts?: CodingAttemptOptions): boolean | string;
answer: string | string[] | number,
fn: string,
host?: Host,
opts?: CodingAttemptOptions
): boolean | string;
/** /**
* Returns a name describing the type of problem posed by the Coding Contract. * Returns a name describing the type of problem posed by the Coding Contract.
@ -2800,7 +2981,6 @@ interface CodingContract {
} }
interface Gang { interface Gang {
/** /**
* If you are not in BitNode-2, then you must have Source-File 2 in order to use this function. * If you are not in BitNode-2, then you must have Source-File 2 in order to use this function.
* *
@ -2933,9 +3113,7 @@ interface Gang {
* @param {string} equipName Name of equipment. * @param {string} equipName Name of equipment.
* @returns {number} Type of the equipment. * @returns {number} Type of the equipment.
*/ */
getEquipmentType ( getEquipmentType(equipName: GangEquipment | GangAugmentations): GangEquipmentType;
equipName: GangEquipment | GangAugmentations
): GangEquipmentType;
/** /**
* If you are not in BitNode-2, then you must have Source-File 2 in order to use this function. * If you are not in BitNode-2, then you must have Source-File 2 in order to use this function.
@ -2946,9 +3124,7 @@ interface Gang {
* @param {string} equipName Name of equipment. * @param {string} equipName Name of equipment.
* @returns {object} A dictionary containing the stats of the equipment. * @returns {object} A dictionary containing the stats of the equipment.
*/ */
getEquipmentStats ( getEquipmentStats(equipName: GangEquipment | GangAugmentations): GangEquipmentStats;
equipName: GangEquipment | GangAugmentations
): GangEquipmentStats;
/** /**
* If you are not in BitNode-2, then you must have Source-File 2 in order to use this function. * If you are not in BitNode-2, then you must have Source-File 2 in order to use this function.
@ -3187,8 +3363,7 @@ interface Sleeve {
purchaseSleeveAug(sleeveNumber: number, augName: AugmentName): boolean; purchaseSleeveAug(sleeveNumber: number, augName: AugmentName): boolean;
} }
interface NS extends Singularity { export interface NS extends Singularity {
/** /**
* Not all functions in the Hacknet Node API are immediately available. * Not all functions in the Hacknet Node API are immediately available.
* *
@ -3393,7 +3568,6 @@ interface NS extends Singularity {
*/ */
growthAnalyze(host: Host, growthAmount: number): number; growthAnalyze(host: Host, growthAmount: number): number;
/** /**
* Returns the security increase that would occur if a grow with this many threads happened. * Returns the security increase that would occur if a grow with this many threads happened.
* *
@ -3650,11 +3824,7 @@ interface NS extends Singularity {
* @param {...string} [args] Additional arguments to pass into the new script that is being run. Note that if any arguments are being passed into the new script, then the second argument numThreads must be filled in with a value. * @param {...string} [args] Additional arguments to pass into the new script that is being run. Note that if any arguments are being passed into the new script, then the second argument numThreads must be filled in with a value.
* @returns {number} Returns the PID of a successfully started script, and 0 otherwise. * @returns {number} Returns the PID of a successfully started script, and 0 otherwise.
*/ */
run ( run(script: Script, numThreads?: number, ...args: string[]): number;
script: Script,
numThreads?: number,
...args: string[]
): number;
/** /**
* Run a script as a separate process on a specified server. This is similar to the run function * Run a script as a separate process on a specified server. This is similar to the run function
@ -3691,12 +3861,7 @@ interface NS extends Singularity {
* @param {...string} [args] Additional arguments to pass into the new script that is being run. Note that if any arguments are being passed into the new script, then the third argument numThreads must be filled in with a value. * @param {...string} [args] Additional arguments to pass into the new script that is being run. Note that if any arguments are being passed into the new script, then the third argument numThreads must be filled in with a value.
* @returns {number} Returns the PID of a successfully started script, and 0 otherwise. * @returns {number} Returns the PID of a successfully started script, and 0 otherwise.
*/ */
exec ( exec(script: Script, host: Host, numThreads?: number, ...args: string[]): number;
script: Script,
host: Host,
numThreads?: number,
...args: string[]
): number;
/** /**
* Terminates the current script, and then after a delay of about 10 seconds it will execute the * Terminates the current script, and then after a delay of about 10 seconds it will execute the
@ -3823,9 +3988,9 @@ interface NS extends Singularity {
*/ */
scp( scp(
files: string | ReadonlyArray<string>, files: string | ReadonlyArray<string>,
source: | Host, source: Host,
// tslint:disable-next-line:unified-signatures // tslint:disable-next-line:unified-signatures
destination: Host destination: Host,
): boolean; ): boolean;
/** /**
@ -3933,7 +4098,6 @@ interface NS extends Singularity {
*/ */
getServer(host?: Host): Server; getServer(host?: Host): Server;
/** /**
* Returns the amount of money available on a server. * Returns the amount of money available on a server.
* Running this function on the home computer will return the players money. * Running this function on the home computer will return the players money.
@ -4537,5 +4701,3 @@ interface NS extends Singularity {
*/ */
getBitNodeMultipliers(url: string, target: string, host: string): BitNodeMultipliers; getBitNodeMultipliers(url: string, target: string, host: string): BitNodeMultipliers;
} }
`;

4
src/ScriptEditor/raw-loader.d.ts vendored Normal file

@ -0,0 +1,4 @@
declare module "!!raw-loader!*" {
const contents: { default: string };
export = contents;
}

@ -15,7 +15,7 @@ import { calculateRamUsage } from "../../Script/RamCalculations";
import { RamCalculationErrorCode } from "../../Script/RamCalculationErrorCodes"; import { RamCalculationErrorCode } from "../../Script/RamCalculationErrorCodes";
import { numeralWrapper } from "../../ui/numeralFormat"; import { numeralWrapper } from "../../ui/numeralFormat";
import { CursorPositions } from "../CursorPositions"; import { CursorPositions } from "../CursorPositions";
import { libSource } from "../NetscriptDefinitions";
import { NetscriptFunctions } from "../../NetscriptFunctions"; import { NetscriptFunctions } from "../../NetscriptFunctions";
import { WorkerScript } from "../../Netscript/WorkerScript"; import { WorkerScript } from "../../Netscript/WorkerScript";
import { Settings } from "../../Settings/Settings"; import { Settings } from "../../Settings/Settings";
@ -32,6 +32,8 @@ import TextField from "@mui/material/TextField";
import IconButton from "@mui/material/IconButton"; import IconButton from "@mui/material/IconButton";
import SettingsIcon from "@mui/icons-material/Settings"; import SettingsIcon from "@mui/icons-material/Settings";
import libSource from "!!raw-loader!../NetscriptDefinitions";
let symbolsLoaded = false; let symbolsLoaded = false;
let symbols: string[] = []; let symbols: string[] = [];
export function SetupTextEditor(): void { export function SetupTextEditor(): void {
@ -327,8 +329,9 @@ export function Root(props: IProps): React.ReactElement {
l.language.tokenizer.root.unshift(["this", { token: "this" }]); l.language.tokenizer.root.unshift(["this", { token: "this" }]);
})(); })();
monaco.languages.typescript.javascriptDefaults.addExtraLib(libSource, "netscript.d.ts"); const source = (libSource + "").replace(/export /g, "");
monaco.languages.typescript.typescriptDefaults.addExtraLib(libSource, "netscript.d.ts"); monaco.languages.typescript.javascriptDefaults.addExtraLib(source, "netscript.d.ts");
monaco.languages.typescript.typescriptDefaults.addExtraLib(source, "netscript.d.ts");
loadThemes(monaco); loadThemes(monaco);
} }
// 370px 71%, 725px 85.1%, 1085px 90%, 1300px 91.7% // 370px 71%, 725px 85.1%, 1085px 90%, 1300px 91.7%

@ -68,8 +68,8 @@ SourceFiles["SourceFile5"] = new SourceFile(
persistent (it never gets reset back to 1). However, gaining Intelligence experience is much slower than other persistent (it never gets reset back to 1). However, gaining Intelligence experience is much slower than other
stats, and it is also hidden (you won't know when you gain experience and how much). Higher Intelligence levels stats, and it is also hidden (you won't know when you gain experience and how much). Higher Intelligence levels
will boost your production for many actions in the game. In addition, this Source-File will unlock the will boost your production for many actions in the game. In addition, this Source-File will unlock the
getBitNodeMultipliers() and getServer() Netscript functions, as well as the formulas API, and will raise all of getBitNodeMultipliers() and let you start with Formulas.exe, and will raise all of your hacking-related
your hacking-related multipliers by: multipliers by:
<br /> <br />
<br /> <br />
Level 1: 8% Level 1: 8%

@ -9,7 +9,7 @@
"target": "es6", "target": "es6",
"sourceMap": true, "sourceMap": true,
"strict": true, "strict": true,
"types": ["cypress", "@testing-library/cypress", "node"] "types": ["cypress", "@testing-library/cypress", "node", "raw-loader.d.ts"]
}, },
"exclude": ["node_modules"] "exclude": ["node_modules"]
} }