UI: Better support for custom player React content (#513)

This commit is contained in:
Snarling
2023-05-22 05:28:24 -04:00
committed by GitHub
parent 0d55b957f1
commit 87f2ae459d
5 changed files with 53 additions and 17 deletions
-80
View File
@@ -1,80 +0,0 @@
import type React from "react";
import { Player } from "../Player";
import { Exploit } from "../Exploits/Exploit";
import * as bcrypt from "bcryptjs";
import { Apr1Events as devMenu } from "../ui/Apr1";
import { InternalAPI } from "../Netscript/APIWrapper";
import { helpers } from "../Netscript/NetscriptHelpers";
import { Terminal } from "../Terminal";
import { RamCostConstants } from "../Netscript/RamCostGenerator";
export interface INetscriptExtra {
heart: {
break(): number;
};
openDevMenu(): void;
exploit(): void;
bypass(doc: Document): void;
alterReality(): void;
rainbow(guess: string): void;
iKnowWhatImDoing(): void;
printRaw(value: React.ReactNode): void;
}
export function NetscriptExtra(): InternalAPI<INetscriptExtra> {
return {
heart: {
break: () => () => Player.karma,
},
openDevMenu: () => () => devMenu.emit(),
exploit: () => () => Player.giveExploit(Exploit.UndocumentedFunctionCall),
bypass: (ctx) => (doc) => {
// reset both fields first
interface temporary {
completely_unused_field: unknown;
}
const d = doc as temporary;
d.completely_unused_field = undefined;
const real_document = document as unknown as temporary;
real_document.completely_unused_field = undefined;
// set one to true and check that it affected the other.
real_document.completely_unused_field = true;
if (d.completely_unused_field && ctx.workerScript.scriptRef.ramUsage === RamCostConstants.Base) {
Player.giveExploit(Exploit.Bypass);
}
d.completely_unused_field = undefined;
real_document.completely_unused_field = undefined;
},
alterReality: () => () => {
// We need to trick webpack into not optimizing a variable that is guaranteed to be false (and doesn't use prototypes)
let x = false;
const recur = function (depth: number): void {
if (depth === 0) return;
x = !x;
recur(depth - 1);
};
recur(2);
console.warn("I am sure that this variable is false.");
if (x) {
console.warn("Reality has been altered!");
Player.giveExploit(Exploit.RealityAlteration);
}
},
rainbow: (ctx) => (_guess) => {
const guess = helpers.string(ctx, "guess", _guess);
const verified = bcrypt.compareSync(guess, "$2a$10$aertxDEkgor8baVtQDZsLuMwwGYmkRM/ohcA6FjmmzIHQeTCsrCcO");
if (!verified) return false;
Player.giveExploit(Exploit.INeedARainbow);
return true;
},
iKnowWhatImDoing: (ctx) => () => {
helpers.log(ctx, () => "Unlocking unsupported feature: window.tprintRaw");
// @ts-expect-error window has no tprintRaw property defined
window.tprintRaw = Terminal.printRaw.bind(Terminal);
},
printRaw: (ctx) => (value) => {
// Using this voids the warranty on your tail log
ctx.workerScript.print(value as React.ReactNode);
},
};
}