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

111 lines
3.3 KiB
TypeScript
Raw Normal View History

2021-09-14 02:37:35 +02:00
import React from "react";
2021-09-17 01:23:03 +02:00
import Accordion from "@mui/material/Accordion";
import AccordionSummary from "@mui/material/AccordionSummary";
import AccordionDetails from "@mui/material/AccordionDetails";
import ExpandMoreIcon from "@mui/icons-material/ExpandMore";
2021-09-14 02:37:35 +02:00
2021-10-01 02:06:40 +02:00
import Typography from "@mui/material/Typography";
2021-09-17 01:23:03 +02:00
import Button from "@mui/material/Button";
2021-09-14 02:37:35 +02:00
import { PlayerOwnedSourceFile } from "../../SourceFile/PlayerOwnedSourceFile";
2022-09-06 15:07:12 +02:00
import { Player } from "../../Player";
2021-09-17 01:23:03 +02:00
import ButtonGroup from "@mui/material/ButtonGroup";
2021-09-14 02:37:35 +02:00
// Update as additional BitNodes get implemented
2022-01-09 21:22:23 +01:00
const validSFN = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13];
2021-09-14 02:37:35 +02:00
2022-09-06 15:07:12 +02:00
export function SourceFiles(): React.ReactElement {
2021-09-14 02:37:35 +02:00
function setSF(sfN: number, sfLvl: number) {
return function () {
2022-01-16 00:13:35 +01:00
if (sfN === 9) {
2022-09-06 15:07:12 +02:00
Player.hacknetNodes = [];
2022-01-16 00:13:35 +01:00
}
2021-09-14 02:37:35 +02:00
if (sfLvl === 0) {
2022-09-06 15:07:12 +02:00
Player.sourceFiles = Player.sourceFiles.filter((sf) => sf.n !== sfN);
2021-09-14 02:37:35 +02:00
return;
}
2022-09-06 15:07:12 +02:00
if (!Player.sourceFiles.some((sf) => sf.n === sfN)) {
Player.sourceFiles.push(new PlayerOwnedSourceFile(sfN, sfLvl));
2021-09-14 02:37:35 +02:00
return;
}
2022-09-06 15:07:12 +02:00
for (let i = 0; i < Player.sourceFiles.length; i++) {
if (Player.sourceFiles[i].n === sfN) {
Player.sourceFiles[i].lvl = sfLvl;
2021-09-14 02:37:35 +02:00
}
}
};
}
function setAllSF(sfLvl: number) {
return () => {
for (let i = 0; i < validSFN.length; i++) {
setSF(validSFN[i], sfLvl)();
}
};
}
function clearExploits(): void {
2022-09-06 15:07:12 +02:00
Player.exploits = [];
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>Source-Files</Typography>
2021-09-14 02:37:35 +02:00
</AccordionSummary>
<AccordionDetails>
<table>
<tbody>
<tr>
<td>
2021-10-01 02:06:40 +02:00
<Typography>Exploits:</Typography>
2021-09-14 02:37:35 +02:00
</td>
<td>
<Button onClick={clearExploits}>Clear</Button>
</td>
</tr>
<tr key={"sf-all"}>
<td>
2021-10-01 02:06:40 +02:00
<Typography>All:</Typography>
2021-09-14 02:37:35 +02:00
</td>
<td>
<ButtonGroup>
2021-09-20 23:10:44 +02:00
<Button aria-label="all-sf-0" onClick={setAllSF(0)}>
0
</Button>
<Button aria-label="all-sf-1" onClick={setAllSF(1)}>
1
</Button>
<Button aria-label="all-sf-2" onClick={setAllSF(2)}>
2
</Button>
<Button aria-label="all-sf-3" onClick={setAllSF(3)}>
3
</Button>
2021-09-14 02:37:35 +02:00
</ButtonGroup>
</td>
</tr>
{validSFN.map((i) => (
<tr key={"sf-" + i}>
<td>
2021-10-01 02:06:40 +02:00
<Typography>SF-{i}:</Typography>
2021-09-14 02:37:35 +02:00
</td>
<td>
<ButtonGroup>
<Button onClick={setSF(i, 0)}>0</Button>
<Button onClick={setSF(i, 1)}>1</Button>
<Button onClick={setSF(i, 2)}>2</Button>
<Button onClick={setSF(i, 3)}>3</Button>
</ButtonGroup>
</td>
</tr>
))}
</tbody>
</table>
</AccordionDetails>
</Accordion>
);
}