2018-10-27 21:26:22 +02:00
|
|
|
import {CodingContract,
|
|
|
|
CodingContractRewardType,
|
|
|
|
CodingContractTypes} from "./CodingContracts";
|
|
|
|
import {Factions} from "./Faction";
|
|
|
|
import {Player} from "./Player";
|
2018-10-27 22:48:33 +02:00
|
|
|
import {GetServerByHostname,
|
|
|
|
AllServers} from "./Server";
|
2018-10-27 21:26:22 +02:00
|
|
|
|
|
|
|
import {getRandomInt} from "../utils/helpers/getRandomInt";
|
|
|
|
|
|
|
|
export function generateRandomContract() {
|
|
|
|
// First select a random problem type
|
|
|
|
const problemTypes = Object.keys(CodingContractTypes);
|
|
|
|
let randIndex = getRandomInt(0, problemTypes.length - 1);
|
|
|
|
let problemType = problemTypes[randIndex];
|
|
|
|
|
|
|
|
// Then select a random reward type. 'Money' will always be the last reward type
|
2018-10-27 22:48:33 +02:00
|
|
|
const reward = getRandomReward();
|
|
|
|
|
|
|
|
// Choose random server
|
|
|
|
const randServer = getRandomServer();
|
|
|
|
|
|
|
|
let contractFn = getRandomFilename(randServer, reward);
|
|
|
|
let contract = new CodingContract(contractFn, problemType, reward);
|
|
|
|
|
|
|
|
randServer.addContract(contract);
|
|
|
|
}
|
|
|
|
|
|
|
|
export function generateContract(params) {
|
|
|
|
// Problem Type
|
|
|
|
let problemType;
|
|
|
|
const problemTypes = Object.keys(CodingContractTypes);
|
|
|
|
if (params.problemType != null && problemTypes.includes(params.problemType)) {
|
|
|
|
problemType = params.problemType;
|
|
|
|
} else {
|
|
|
|
let randIndex = getRandomInt(0, problemTypes.length - 1);
|
|
|
|
problemType = problemTypes[randIndex];
|
|
|
|
}
|
2018-10-27 21:26:22 +02:00
|
|
|
|
2018-10-27 22:48:33 +02:00
|
|
|
// Reward Type - This is always random for now
|
|
|
|
const reward = getRandomReward();
|
|
|
|
|
|
|
|
// Server
|
|
|
|
let server;
|
|
|
|
if (params.server != null) {
|
|
|
|
server = GetServerByHostname(params.server);
|
|
|
|
if (server == null) {
|
|
|
|
server = AllServers[param.server];
|
|
|
|
}
|
|
|
|
if (server == null) {
|
|
|
|
server = getRandomServer();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
server = getRandomServer();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Filename
|
|
|
|
let fn;
|
|
|
|
if (params.fn != null) {
|
|
|
|
fn = params.fn;
|
|
|
|
} else {
|
|
|
|
fn = getRandomFilename(server, reward);
|
|
|
|
}
|
|
|
|
|
|
|
|
let contract = new CodingContract(fn, problemType, reward);
|
|
|
|
server.addContract(contract);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ensures that a contract's reward type is valid
|
|
|
|
function sanitizeRewardType(rewardType) {
|
|
|
|
let type = rewardType; // Create copy
|
|
|
|
|
|
|
|
const factionsThatAllowHacking = Player.factions.filter((fac) => {
|
2018-10-27 21:26:22 +02:00
|
|
|
try {
|
|
|
|
return Factions[fac].getInfo().offerHackingWork;
|
|
|
|
} catch (e) {
|
|
|
|
console.error(`Error when trying to filter Hacking Factions for Coding Contract Generation: ${e}`);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
});
|
2018-10-27 22:48:33 +02:00
|
|
|
if (type === CodingContractRewardType.FactionReputation && factionsThatAllowHacking.length === 0) {
|
|
|
|
type = CodingContractRewardType.CompanyReputation;
|
2018-10-27 21:26:22 +02:00
|
|
|
}
|
2018-10-27 22:48:33 +02:00
|
|
|
if (type === CodingContractRewardType.FactionReputationAll && factionsThatAllowHacking.length === 0) {
|
|
|
|
type = CodingContractRewardType.CompanyReputation;
|
2018-10-27 21:26:22 +02:00
|
|
|
}
|
2018-10-27 22:48:33 +02:00
|
|
|
if (type === CodingContractRewardType.CompanyReputation && Player.companyName === "") {
|
|
|
|
type = CodingContractRewardType.Money;
|
2018-10-27 21:26:22 +02:00
|
|
|
}
|
|
|
|
|
2018-10-27 22:48:33 +02:00
|
|
|
return type;
|
|
|
|
}
|
|
|
|
|
|
|
|
function getRandomReward() {
|
|
|
|
let reward = {};
|
|
|
|
reward.type = getRandomInt(0, CodingContractRewardType.Money);
|
|
|
|
reward.type = sanitizeRewardType(reward.type);
|
|
|
|
|
2018-10-27 21:26:22 +02:00
|
|
|
// Add additional information based on the reward type
|
2018-10-27 22:48:33 +02:00
|
|
|
const factionsThatAllowHacking = Player.factions.filter((fac) => {
|
|
|
|
try {
|
|
|
|
return Factions[fac].getInfo().offerHackingWork;
|
|
|
|
} catch (e) {
|
|
|
|
console.error(`Error when trying to filter Hacking Factions for Coding Contract Generation: ${e}`);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2018-10-27 21:26:22 +02:00
|
|
|
switch (reward.type) {
|
|
|
|
case CodingContractRewardType.FactionReputation:
|
|
|
|
// Get a random faction that player is a part of. That
|
|
|
|
// faction must allow hacking contracts
|
|
|
|
var numFactions = factionsThatAllowHacking.length;
|
|
|
|
var randFaction = factionsThatAllowHacking[getRandomInt(0, numFactions - 1)];
|
|
|
|
reward.name = randFaction;
|
|
|
|
break;
|
|
|
|
case CodingContractRewardType.CompanyReputation:
|
|
|
|
if (Player.companyName !== "") {
|
|
|
|
reward.name = Player.companyName;
|
|
|
|
} else {
|
|
|
|
reward.type = CodingContractRewardType.Money;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2018-10-27 22:48:33 +02:00
|
|
|
return reward;
|
|
|
|
}
|
|
|
|
|
|
|
|
function getRandomServer() {
|
2018-10-27 21:26:22 +02:00
|
|
|
const servers = Object.keys(AllServers);
|
2018-10-27 22:48:33 +02:00
|
|
|
let randIndex = getRandomInt(0, servers.length - 1);
|
|
|
|
let randServer = AllServers[servers[randIndex]];
|
|
|
|
|
|
|
|
// An infinite loop shouldn't ever happen, but to be safe we'll use
|
|
|
|
// a for loop with a limited number of tries
|
|
|
|
for (let i = 0; i < 200; ++i) {
|
|
|
|
if (randServer.purchasedByPlayer === false) { break; }
|
2018-10-27 21:26:22 +02:00
|
|
|
randIndex = getRandomInt(0, servers.length - 1);
|
|
|
|
randServer = AllServers[servers[randIndex]];
|
|
|
|
}
|
|
|
|
|
2018-10-27 22:48:33 +02:00
|
|
|
return randServer;
|
|
|
|
}
|
|
|
|
|
|
|
|
function getRandomFilename(server, reward) {
|
2018-10-27 21:26:22 +02:00
|
|
|
let contractFn = `contract-${getRandomInt(0, 1e6)}`;
|
2018-10-27 22:48:33 +02:00
|
|
|
|
|
|
|
for (let i = 0; i < 1000; ++i) {
|
|
|
|
if (server.contracts.filter((c) => {return c.fn === contractFn}).length <= 0) { break; }
|
2018-10-27 21:26:22 +02:00
|
|
|
contractFn = `contract-${getRandomInt(0, 1e6)}`;
|
|
|
|
}
|
2018-10-27 22:48:33 +02:00
|
|
|
|
2018-10-27 21:26:22 +02:00
|
|
|
if (reward.name) { contractFn += `-${reward.name.replace(/\s/g, "")}`; }
|
|
|
|
|
2018-10-27 22:48:33 +02:00
|
|
|
return contractFn;
|
2018-10-27 21:26:22 +02:00
|
|
|
}
|