bitburner-src/src/Server/formulas/grow.ts

25 lines
1.1 KiB
TypeScript
Raw Normal View History

import { CONSTANTS } from "../../Constants";
import { Server } from "../Server";
import { BitNodeMultipliers } from "../../BitNode/BitNodeMultipliers";
import { IPlayer } from "../../PersonObjects/IPlayer";
2021-09-09 05:47:34 +02:00
export function calculateServerGrowth(server: Server, threads: number, p: IPlayer, cores = 1): number {
2021-09-05 01:09:30 +02:00
const numServerGrowthCycles = Math.max(Math.floor(threads), 0);
2021-09-05 01:09:30 +02:00
//Get adjusted growth rate, which accounts for server security
const growthRate = CONSTANTS.ServerBaseGrowthRate;
let adjGrowthRate = 1 + (growthRate - 1) / server.hackDifficulty;
if (adjGrowthRate > CONSTANTS.ServerMaxGrowthRate) {
adjGrowthRate = CONSTANTS.ServerMaxGrowthRate;
}
2021-09-05 01:09:30 +02:00
//Calculate adjusted server growth rate based on parameters
const serverGrowthPercentage = server.serverGrowth / 100;
const numServerGrowthCyclesAdjusted =
2021-09-09 05:47:34 +02:00
numServerGrowthCycles * serverGrowthPercentage * BitNodeMultipliers.ServerGrowthRate;
2021-09-05 01:09:30 +02:00
//Apply serverGrowth for the calculated number of growth cycles
const coreBonus = 1 + (cores - 1) / 16;
2021-09-09 05:47:34 +02:00
return Math.pow(adjGrowthRate, numServerGrowthCyclesAdjusted * p.hacking_grow_mult * coreBonus);
2021-09-05 01:09:30 +02:00
}