mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 01:33:54 +01:00
Merge pull request #2231 from ErzengelLichtes/use-numeraljs-for-ram
Use numeral.js to format memory, allow use of GiB with an option
This commit is contained in:
commit
cd9fad06d0
@ -113,6 +113,11 @@ interface IDefaultSettings {
|
|||||||
* Theme colors
|
* Theme colors
|
||||||
*/
|
*/
|
||||||
theme: ITheme;
|
theme: ITheme;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Use GiB instead of GB
|
||||||
|
*/
|
||||||
|
UseIEC60027_2: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -160,6 +165,7 @@ export const defaultSettings: IDefaultSettings = {
|
|||||||
SuppressBladeburnerPopup: false,
|
SuppressBladeburnerPopup: false,
|
||||||
SuppressTIXPopup: false,
|
SuppressTIXPopup: false,
|
||||||
SuppressSavedGameToast: false,
|
SuppressSavedGameToast: false,
|
||||||
|
UseIEC60027_2: false,
|
||||||
|
|
||||||
theme: defaultTheme,
|
theme: defaultTheme,
|
||||||
};
|
};
|
||||||
@ -192,6 +198,7 @@ export const Settings: ISettings & ISelfInitializer & ISelfLoading = {
|
|||||||
SuppressBladeburnerPopup: defaultSettings.SuppressBladeburnerPopup,
|
SuppressBladeburnerPopup: defaultSettings.SuppressBladeburnerPopup,
|
||||||
SuppressTIXPopup: defaultSettings.SuppressTIXPopup,
|
SuppressTIXPopup: defaultSettings.SuppressTIXPopup,
|
||||||
SuppressSavedGameToast: defaultSettings.SuppressSavedGameToast,
|
SuppressSavedGameToast: defaultSettings.SuppressSavedGameToast,
|
||||||
|
UseIEC60027_2: defaultSettings.UseIEC60027_2,
|
||||||
MonacoTheme: "monokai",
|
MonacoTheme: "monokai",
|
||||||
MonacoInsertSpaces: false,
|
MonacoInsertSpaces: false,
|
||||||
MonacoFontSize: 20,
|
MonacoFontSize: 20,
|
||||||
|
@ -85,6 +85,7 @@ export function GameOptionsRoot(props: IProps): React.ReactElement {
|
|||||||
const [enableBashHotkeys, setEnableBashHotkeys] = useState(Settings.EnableBashHotkeys);
|
const [enableBashHotkeys, setEnableBashHotkeys] = useState(Settings.EnableBashHotkeys);
|
||||||
const [timestampFormat, setTimestampFormat] = useState(Settings.TimestampsFormat);
|
const [timestampFormat, setTimestampFormat] = useState(Settings.TimestampsFormat);
|
||||||
const [saveGameOnFileSave, setSaveGameOnFileSave] = useState(Settings.SaveGameOnFileSave);
|
const [saveGameOnFileSave, setSaveGameOnFileSave] = useState(Settings.SaveGameOnFileSave);
|
||||||
|
const [useIEC60027_2, setUseIEC60027_2] = useState(Settings.UseIEC60027_2);
|
||||||
|
|
||||||
const [locale, setLocale] = useState(Settings.Locale);
|
const [locale, setLocale] = useState(Settings.Locale);
|
||||||
const [diagnosticOpen, setDiagnosticOpen] = useState(false);
|
const [diagnosticOpen, setDiagnosticOpen] = useState(false);
|
||||||
@ -163,6 +164,10 @@ export function GameOptionsRoot(props: IProps): React.ReactElement {
|
|||||||
setDisableASCIIArt(event.target.checked);
|
setDisableASCIIArt(event.target.checked);
|
||||||
Settings.DisableASCIIArt = event.target.checked;
|
Settings.DisableASCIIArt = event.target.checked;
|
||||||
}
|
}
|
||||||
|
function handleUseIEC60027_2Change(event: React.ChangeEvent<HTMLInputElement>): void {
|
||||||
|
setUseIEC60027_2(event.target.checked);
|
||||||
|
Settings.UseIEC60027_2 = event.target.checked;
|
||||||
|
}
|
||||||
|
|
||||||
function handleDisableTextEffectsChange(event: React.ChangeEvent<HTMLInputElement>): void {
|
function handleDisableTextEffectsChange(event: React.ChangeEvent<HTMLInputElement>): void {
|
||||||
setDisableTextEffects(event.target.checked);
|
setDisableTextEffects(event.target.checked);
|
||||||
@ -578,6 +583,16 @@ export function GameOptionsRoot(props: IProps): React.ReactElement {
|
|||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
</ListItem>
|
</ListItem>
|
||||||
|
<ListItem>
|
||||||
|
<FormControlLabel
|
||||||
|
control={<Switch checked={useIEC60027_2} onChange={handleUseIEC60027_2Change} />}
|
||||||
|
label={
|
||||||
|
<Tooltip title={<Typography>If this is set all references to memory will use GiB instead of GB, in accordance with IEC 60027-2.</Typography>}>
|
||||||
|
<Typography>Use GiB instead of GB</Typography>
|
||||||
|
</Tooltip>
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
</ListItem>
|
||||||
<ListItem>
|
<ListItem>
|
||||||
<Tooltip
|
<Tooltip
|
||||||
title={
|
title={
|
||||||
|
@ -14,10 +14,13 @@ import "numeral/locales/no";
|
|||||||
import "numeral/locales/pl";
|
import "numeral/locales/pl";
|
||||||
import "numeral/locales/ru";
|
import "numeral/locales/ru";
|
||||||
|
|
||||||
|
import { Settings } from "../Settings/Settings";
|
||||||
|
|
||||||
/* eslint-disable class-methods-use-this */
|
/* eslint-disable class-methods-use-this */
|
||||||
|
|
||||||
const extraFormats = [1e15, 1e18, 1e21, 1e24, 1e27, 1e30];
|
const extraFormats = [1e15, 1e18, 1e21, 1e24, 1e27, 1e30];
|
||||||
const extraNotations = ["q", "Q", "s", "S", "o", "n"];
|
const extraNotations = ["q", "Q", "s", "S", "o", "n"];
|
||||||
|
const gigaMultiplier = { standard: 1e9, iec60027_2: 2 ** 30 };
|
||||||
|
|
||||||
class NumeralFormatter {
|
class NumeralFormatter {
|
||||||
// Default Locale
|
// Default Locale
|
||||||
@ -110,11 +113,11 @@ class NumeralFormatter {
|
|||||||
}
|
}
|
||||||
|
|
||||||
formatRAM(n: number): string {
|
formatRAM(n: number): string {
|
||||||
if (n < 1e3) return this.format(n, "0.00") + "GB";
|
if(Settings.UseIEC60027_2)
|
||||||
if (n < 1e6) return this.format(n / 1e3, "0.00") + "TB";
|
{
|
||||||
if (n < 1e9) return this.format(n / 1e6, "0.00") + "PB";
|
return this.format(n * gigaMultiplier.iec60027_2, "0.00ib");
|
||||||
if (n < 1e12) return this.format(n / 1e9, "0.00") + "EB";
|
}
|
||||||
return this.format(n, "0.00") + "GB";
|
return this.format(n * gigaMultiplier.standard, "0.00b");
|
||||||
}
|
}
|
||||||
|
|
||||||
formatPercentage(n: number, decimalPlaces = 2): string {
|
formatPercentage(n: number, decimalPlaces = 2): string {
|
||||||
|
Loading…
Reference in New Issue
Block a user