2019-10-02 02:56:10 +00:00
|
|
|
/* Copyright 2010-2019 Will Scullin <scullin@scullinsteel.com>
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, distribute, and sell this software and its
|
|
|
|
* documentation for any purpose is hereby granted without fee, provided that
|
|
|
|
* the above copyright notice appear in all copies and that both that
|
|
|
|
* copyright notice and this permission notice appear in supporting
|
|
|
|
* documentation. No representations are made about the suitability of this
|
|
|
|
* software for any purpose. It is provided "as is" without express or
|
|
|
|
* implied warranty.
|
|
|
|
*/
|
|
|
|
|
2021-01-03 23:01:30 +00:00
|
|
|
import { explodeSector13, D13O } from './format_utils';
|
2019-10-02 02:56:10 +00:00
|
|
|
|
2021-01-03 23:01:30 +00:00
|
|
|
/**
|
|
|
|
* Returns a `Disk` object from DOS 3.2-ordered image data.
|
|
|
|
* @param {*} options the disk image and options
|
|
|
|
* @returns {import('./format_utils').Disk}
|
|
|
|
*/
|
|
|
|
export default function DOS13(options) {
|
2019-10-02 02:56:10 +00:00
|
|
|
var { data, name, rawData, volume, readOnly } = options;
|
|
|
|
var disk = {
|
|
|
|
format: 'd13',
|
|
|
|
name,
|
|
|
|
volume,
|
|
|
|
readOnly,
|
|
|
|
tracks: [],
|
|
|
|
trackMap: null,
|
|
|
|
rawTracks: null
|
|
|
|
};
|
|
|
|
|
2021-01-03 23:01:30 +00:00
|
|
|
/*
|
|
|
|
* DOS 13-sector disks have the physical sectors skewed on the track. The skew
|
|
|
|
* between physical sectors is 10 (A), resulting in the following physical order:
|
|
|
|
*
|
|
|
|
* 0 A 7 4 1 B 8 5 2 C 9 6 3
|
|
|
|
*
|
|
|
|
* Note that because physical sector == logical sector, this works slightly
|
|
|
|
* differently from the DOS and ProDOS nibblizers.
|
|
|
|
*/
|
|
|
|
|
2019-10-02 02:56:10 +00:00
|
|
|
for (var t = 0; t < 35; t++) {
|
|
|
|
var track = [];
|
2021-01-03 23:01:30 +00:00
|
|
|
for (var disk_sector = 0; disk_sector < 13; disk_sector++) {
|
|
|
|
var physical_sector = D13O[disk_sector];
|
2019-10-02 02:56:10 +00:00
|
|
|
var sector;
|
|
|
|
if (rawData) {
|
2021-01-03 23:01:30 +00:00
|
|
|
var off = (13 * t + physical_sector) * 256;
|
2019-10-02 02:56:10 +00:00
|
|
|
sector = new Uint8Array(rawData.slice(off, off + 256));
|
|
|
|
} else {
|
2021-01-03 23:01:30 +00:00
|
|
|
sector = data[t][physical_sector];
|
2019-10-02 02:56:10 +00:00
|
|
|
}
|
|
|
|
track = track.concat(
|
2021-01-03 23:01:30 +00:00
|
|
|
explodeSector13(volume, t, physical_sector, sector)
|
2019-10-02 02:56:10 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
disk.tracks.push(track);
|
|
|
|
}
|
|
|
|
|
|
|
|
return disk;
|
|
|
|
}
|