securityos/components/apps/V86/image.ts

27 lines
739 B
TypeScript
Raw Permalink Normal View History

2024-09-06 15:32:35 +00:00
type V86Image = {
async?: boolean;
size?: number;
url: string;
use_parts?: boolean;
};
type V86ImageType = "cdrom" | "fda" | "hda";
export type V86ImageConfig = Partial<Record<V86ImageType, V86Image>>;
// https://github.com/copy/v86/blob/master/src/floppy.js
const SUPPORTED_FLOPPY_TYPES = new Set([
160, 180, 200, 320, 360, 400, 720, 1200, 1440, 1722, 2880,
]);
const isFloppyImage = (size: number): boolean =>
// eslint-disable-next-line no-bitwise
(SUPPORTED_FLOPPY_TYPES.has(size >> 10) && (size & 0x3ff) === 0) ||
size === 512;
export const getImageType = (ext: string, size: number): string => {
if (ext === ".bin") return "bzimage";
return isFloppyImage(size) ? "fda" : "hda";
};