bitburner-src/src/CotMG/ui/FragmentInspector.tsx

81 lines
2.0 KiB
TypeScript
Raw Normal View History

2021-10-04 02:34:36 +02:00
import React, { useState, useEffect } from "react";
2021-09-25 23:21:50 +02:00
import { ActiveFragment } from "../ActiveFragment";
import { FragmentType } from "../FragmentType";
import { numeralWrapper } from "../../ui/numeralFormat";
import { CalculateEffect } from "../formulas/effect";
2021-10-04 02:34:36 +02:00
import Paper from "@mui/material/Paper";
import Typography from "@mui/material/Typography";
2021-09-25 23:21:50 +02:00
type IProps = {
2021-10-04 02:34:36 +02:00
fragment: ActiveFragment | null;
2021-10-04 18:28:57 +02:00
x: number;
y: number;
2021-10-04 02:34:36 +02:00
};
2021-09-25 23:21:50 +02:00
2021-10-04 18:28:57 +02:00
export function FragmentInspector(props: IProps): React.ReactElement {
2021-10-04 02:34:36 +02:00
const [, setC] = useState(new Date());
useEffect(() => {
const id = setInterval(() => setC(new Date()), 250);
return () => clearInterval(id);
}, []);
if (props.fragment === null) {
return (
<Paper>
<Typography>
ID: N/A
<br />
Type: N/A
<br />
Magnitude: N/A
<br />
Charge: N/A
<br />
Heat: N/A
<br />
Effect: N/A
<br />
[X, Y] N/A
<br />
2021-10-04 18:28:57 +02:00
[X, Y] {props.x}, {props.y}
2021-10-04 02:34:36 +02:00
</Typography>
</Paper>
);
}
const f = props.fragment.fragment();
let charge = numeralWrapper.formatStaneksGiftCharge(props.fragment.charge);
let heat = numeralWrapper.formatStaneksGiftHeat(props.fragment.heat);
// Boosters and cooling don't deal with heat.
if (f.type === FragmentType.Booster || f.type === FragmentType.Cooling) {
charge = "N/A";
heat = "N/A";
}
const effect = numeralWrapper.format(CalculateEffect(props.fragment.charge, f.power) - 1, "+0.00%");
return (
<Paper>
<Typography>
ID: {props.fragment.id}
<br />
Type: {FragmentType[f.type]}
<br />
Power: {numeralWrapper.formatStaneksGiftPower(f.power)}
<br />
Charge: {charge}
<br />
Heat: {heat}
<br />
Effect: {effect}
<br />
2021-10-04 18:28:57 +02:00
root [X, Y] {props.fragment.x}, {props.fragment.y}
2021-10-04 02:34:36 +02:00
<br />
2021-10-04 18:28:57 +02:00
[X, Y] {props.x}, {props.y}
2021-10-04 02:34:36 +02:00
</Typography>
</Paper>
);
}