2022-03-09 06:35:20 +00:00
|
|
|
import { WorkerPool } from "./WorkerPool";
|
|
|
|
import store from "./store";
|
|
|
|
import { clearPlugins, setPending } from "../slices/plugins";
|
|
|
|
|
|
|
|
export const excludedPlugins = [
|
|
|
|
"Skyrim.esm",
|
|
|
|
"Update.esm",
|
|
|
|
"Dawnguard.esm",
|
|
|
|
"HearthFires.esm",
|
|
|
|
"Dragonborn.esm",
|
|
|
|
];
|
|
|
|
|
|
|
|
export const isPluginPath = (path: string) => {
|
|
|
|
if (
|
2022-03-19 21:42:24 +00:00
|
|
|
/^.*\.es[mpl]$/i.test(path)
|
2022-03-09 06:35:20 +00:00
|
|
|
) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
export const isPlugin = (file: File) => {
|
2022-03-16 02:33:44 +00:00
|
|
|
return isPluginPath(file.webkitRelativePath ?? file.name);
|
2022-03-09 06:35:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export const parsePluginFiles = (pluginFiles: File[], workerPool: WorkerPool) => {
|
2022-03-10 05:40:34 +00:00
|
|
|
if (pluginFiles.length === 0) {
|
|
|
|
alert("Found no plugins in the folder. Please select the Data folder underneath the Skyrim installation folder.");
|
|
|
|
return;
|
|
|
|
}
|
2022-03-09 06:35:20 +00:00
|
|
|
store.dispatch(clearPlugins());
|
|
|
|
store.dispatch(setPending(pluginFiles.length));
|
|
|
|
|
|
|
|
pluginFiles.forEach(async (plugin) => {
|
|
|
|
const contents = new Uint8Array(await plugin.arrayBuffer());
|
|
|
|
workerPool.pushTask({
|
|
|
|
skipParsing: excludedPlugins.includes(plugin.name),
|
|
|
|
filename: plugin.name,
|
|
|
|
lastModified: plugin.lastModified,
|
|
|
|
contents,
|
|
|
|
});
|
|
|
|
});
|
2022-03-12 19:00:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// From: https://stackoverflow.com/a/18650828
|
|
|
|
export const formatBytes = (bytes: number, decimals = 2): string => {
|
|
|
|
if (bytes === 0) return '0 Bytes';
|
|
|
|
|
|
|
|
const k = 1024;
|
|
|
|
const dm = decimals < 0 ? 0 : decimals;
|
|
|
|
const sizes = ['Bytes', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'];
|
|
|
|
|
|
|
|
const i = Math.floor(Math.log(bytes) / Math.log(k));
|
|
|
|
|
|
|
|
return parseFloat((bytes / Math.pow(k, i)).toFixed(dm)) + ' ' + sizes[i];
|
2022-03-09 06:35:20 +00:00
|
|
|
}
|