bitburner-src/src/DevMenu/ui/General.tsx

180 lines
6.4 KiB
TypeScript
Raw Normal View History

import React, { useEffect, useState } from "react";
2023-06-26 04:53:35 +02:00
import {
Accordion,
AccordionSummary,
AccordionDetails,
Button,
MenuItem,
Select,
SelectChangeEvent,
TextField,
Typography,
} from "@mui/material";
2021-09-17 01:23:03 +02:00
import ExpandMoreIcon from "@mui/icons-material/ExpandMore";
2023-06-26 04:53:35 +02:00
import { Player } from "@player";
2023-06-26 04:53:35 +02:00
import { FactionName } from "@enums";
import { Money } from "../../ui/React/Money";
2022-09-06 15:07:12 +02:00
import { Router } from "../../ui/GameRoot";
import { Bladeburner } from "../../Bladeburner/Bladeburner";
import { GangConstants } from "../../Gang/data/Constants";
import { checkForMessagesToSend } from "../../Message/MessageHelpers";
import { ThemeEvents } from "../../Themes/ui/Theme";
2023-06-26 04:53:35 +02:00
import { getEnumHelper } from "../../utils/EnumHelper";
2021-09-14 02:37:35 +02:00
2022-09-06 15:07:12 +02:00
export function General(): React.ReactElement {
const [error, setError] = useState(false);
const [corporationName, setCorporationName] = useState("");
2023-06-26 04:53:35 +02:00
const [gangFaction, setGangFaction] = useState(FactionName.SlumSnakes);
const [devMoney, setDevMoney] = useState(0);
2021-09-14 02:37:35 +02:00
// Money functions
const addCustomMoney = () => !Number.isNaN(devMoney) && Player.gainMoney(devMoney, "other");
const addMoney = (n: number) => () => Player.gainMoney(n, "other");
const setMoney = (n: number) => () => (Player.money = Number(n));
2021-09-14 02:37:35 +02:00
// Ram functions
const upgradeRam = () => (Player.getHomeComputer().maxRam *= 2);
2021-09-14 02:37:35 +02:00
// Node-clearing functions
const quickB1tFlum3 = () => Router.toBitVerse(true, true);
const b1tflum3 = () => Router.toBitVerse(true, false);
const quickHackW0r1dD43m0n = () => Router.toBitVerse(false, true);
const hackW0r1dD43m0n = () => Router.toBitVerse(false, false);
2021-09-14 02:37:35 +02:00
// Corp functions
const createCorporation = () => {
Player.startCorporation(corporationName, false);
// Rerender so the corp menu option will show up immediately on the devmenu page selection
ThemeEvents.emit();
};
const destroyCorporation = () => {
Player.corporation = null;
// Rerender so the corp menu option will be removed immediately on the devmenu page selection
ThemeEvents.emit();
};
// Blade functions
const joinBladeburner = () => {
2022-09-06 15:07:12 +02:00
Player.bladeburner = new Bladeburner();
// Rerender so the blade menu option will show up immediately on the devmenu page selection
ThemeEvents.emit();
};
const leaveBladeburner = () => {
Player.bladeburner = null;
// Rerender so the blade menu option will be removed immediately on the devmenu page selection
ThemeEvents.emit();
};
// Gang functions
const startGang = () => {
const isHacking = gangFaction === FactionName.NiteSec || gangFaction === FactionName.TheBlackHand;
2022-09-06 15:07:12 +02:00
Player.startGang(gangFaction, isHacking);
// Rerender so the gang menu option will show up immediately on the devmenu page selection
ThemeEvents.emit();
};
const stopGang = () => {
Player.gang = null;
// Rerender so the gang menu option will be removed immediately on the devmenu page selection
ThemeEvents.emit();
};
2023-06-26 04:53:35 +02:00
const setGangFactionDropdown = (event: SelectChangeEvent) => {
// Todo: Make this a more specific check when a GangName enumlike is added
if (!getEnumHelper("FactionName").isMember(event.target.value)) return;
setGangFaction(event.target.value);
};
// Misc functions
const checkMessages = () => checkForMessagesToSend();
useEffect(() => {
if (error) throw new ReferenceError("Manually thrown error");
}, [error]);
2021-09-14 02:37:35 +02:00
return (
2021-09-18 03:30:02 +02:00
<Accordion TransitionProps={{ unmountOnExit: true }}>
2021-09-14 02:37:35 +02:00
<AccordionSummary expandIcon={<ExpandMoreIcon />}>
2021-10-01 22:22:33 +02:00
<Typography>General</Typography>
2021-09-14 02:37:35 +02:00
</AccordionSummary>
<AccordionDetails>
<Button
onClick={setMoney(0)}
title="This sets your money to $0, this means the money you had will just vanish without being accounted for where it went and may offset some metrics."
>
<pre>
= <Money money={0} />
</pre>
</Button>
2021-10-01 19:08:37 +02:00
<Button onClick={addMoney(1e6)}>
<pre>
+ <Money money={1e6} />
</pre>
</Button>
<Button onClick={addMoney(1e9)}>
<pre>
+ <Money money={1e9} />
</pre>
</Button>
<Button onClick={addMoney(1e12)}>
<pre>
+ <Money money={1e12} />
</pre>
</Button>
<Button onClick={addMoney(1e15)}>
<pre>
+ <Money money={1000e12} />
</pre>
</Button>
<Button onClick={addMoney(Infinity)}>
<pre>
+ <Money money={Infinity} />
</pre>
</Button>
<Button onClick={upgradeRam}>+ RAM</Button>
<br />
<Typography>Add Custom Money</Typography>
<TextField onChange={(x) => setDevMoney(parseFloat(x.target.value))} />
<Button onClick={addCustomMoney}>Give Money</Button>
<br />
{Player.corporation ? (
<Button onClick={destroyCorporation}>Destroy Corporation</Button>
) : (
<>
<Typography>Corporation Name:</Typography>
<TextField value={corporationName} onChange={(x) => setCorporationName(x.target.value)} />
<Button onClick={createCorporation}>Create Corporation</Button>
</>
)}
<br />
{Player.gang ? (
<Button onClick={stopGang}>Stop Gang</Button>
) : (
<>
<Typography>Gang Faction:</Typography>
<Select value={gangFaction} onChange={setGangFactionDropdown}>
{GangConstants.Names.map((factionName) => (
<MenuItem key={factionName} value={factionName}>
{factionName}
</MenuItem>
))}
</Select>
<Button onClick={startGang}>Start Gang</Button>
</>
)}
<br />
{Player.bladeburner ? (
<Button onClick={leaveBladeburner}>Leave BladeBurner</Button>
) : (
<Button onClick={joinBladeburner}>Join BladeBurner</Button>
)}
<br />
2021-10-01 19:08:37 +02:00
<Button onClick={quickB1tFlum3}>Quick b1t_flum3.exe</Button>
<Button onClick={b1tflum3}>Run b1t_flum3.exe</Button>
<Button onClick={quickHackW0r1dD43m0n}>Quick w0rld_d34m0n</Button>
<Button onClick={hackW0r1dD43m0n}>Hack w0rld_d34m0n</Button>
<Button onClick={() => setError(true)}>Throw Error</Button>
<Button onClick={checkMessages}>Check Messages</Button>
2021-09-14 02:37:35 +02:00
</AccordionDetails>
</Accordion>
);
}