2020-01-08 04:21:32 +00:00
|
|
|
//
|
|
|
|
// STX.cpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 13/11/2019.
|
|
|
|
// Copyright © 2019 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "STX.hpp"
|
|
|
|
|
|
|
|
#include "../../Encodings/MFM/Constants.hpp"
|
|
|
|
#include "../../Encodings/MFM/Shifter.hpp"
|
|
|
|
#include "../../Encodings/MFM/Encoder.hpp"
|
|
|
|
#include "../../Track/PCMTrack.hpp"
|
|
|
|
|
|
|
|
#include "Utility/ImplicitSectors.hpp"
|
|
|
|
|
|
|
|
#include <array>
|
|
|
|
#include <cstdlib>
|
2020-01-12 22:56:04 +00:00
|
|
|
#include <cstring>
|
2020-01-08 04:21:32 +00:00
|
|
|
|
|
|
|
using namespace Storage::Disk;
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
class TrackConstructor {
|
|
|
|
public:
|
2020-01-10 02:03:01 +00:00
|
|
|
constexpr static uint16_t NoFirstOffset = std::numeric_limits<uint16_t>::max();
|
|
|
|
|
|
|
|
struct Sector {
|
|
|
|
// Records explicitly present in the sector table.
|
|
|
|
uint32_t data_offset = 0;
|
|
|
|
size_t bit_position = 0;
|
|
|
|
uint16_t data_duration = 0;
|
2020-01-10 04:28:07 +00:00
|
|
|
std::array<uint8_t, 6> address = {0, 0, 0, 0, 0, 0};
|
2020-01-10 02:03:01 +00:00
|
|
|
uint8_t status = 0;
|
|
|
|
|
|
|
|
// Other facts that will either be supplied by the STX or which
|
|
|
|
// will be empty.
|
|
|
|
std::vector<uint8_t> fuzzy_mask;
|
|
|
|
std::vector<uint8_t> contents;
|
|
|
|
std::vector<uint16_t> timing;
|
|
|
|
|
|
|
|
// Accessors.
|
2020-01-13 03:18:31 +00:00
|
|
|
|
|
|
|
/// @returns The byte size of this sector, according to its address mark.
|
2020-01-10 04:28:07 +00:00
|
|
|
uint32_t data_size() const {
|
2020-01-10 02:03:01 +00:00
|
|
|
return uint32_t(128 << address[3]);
|
|
|
|
}
|
2020-01-13 03:18:31 +00:00
|
|
|
|
|
|
|
/// @returns The byte stream this sector address would produce if a WD read track command were to observe it.
|
2020-01-10 04:28:07 +00:00
|
|
|
std::vector<uint8_t> get_track_address_image() const {
|
2020-01-13 03:18:31 +00:00
|
|
|
return track_encoding(address.begin(), address.begin() + 4, {0xa1, 0xa1, 0xfe});
|
2020-01-10 04:28:07 +00:00
|
|
|
}
|
2020-01-13 03:18:31 +00:00
|
|
|
|
|
|
|
/// @returns The byte stream this sector data would produce if a WD read track command were to observe it.
|
2020-01-10 04:28:07 +00:00
|
|
|
std::vector<uint8_t> get_track_data_image() const {
|
2020-01-13 03:18:31 +00:00
|
|
|
return track_encoding(contents.begin(), contents.end(), {0xa1, 0xa1, 0xfb});
|
2020-01-10 04:28:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2020-01-13 03:18:31 +00:00
|
|
|
/// @returns The effect of encoding @c prefix followed by the bytes from @c begin to @c end as MFM data and then decoding them as if
|
|
|
|
/// observed by a WD read track command.
|
2020-01-10 04:28:07 +00:00
|
|
|
template <typename T> static std::vector<uint8_t> track_encoding(T begin, T end, std::initializer_list<uint8_t> prefix) {
|
|
|
|
std::vector<uint8_t> result;
|
|
|
|
result.reserve(size_t(end - begin) + prefix.size());
|
|
|
|
|
|
|
|
PCMSegment segment;
|
|
|
|
std::unique_ptr<Storage::Encodings::MFM::Encoder> encoder = Storage::Encodings::MFM::GetMFMEncoder(segment.data);
|
2020-01-12 03:10:41 +00:00
|
|
|
|
|
|
|
// Encode prefix.
|
|
|
|
for(auto c: prefix) {
|
|
|
|
encoder->add_byte(c);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Encode body.
|
2020-01-10 04:28:07 +00:00
|
|
|
while(begin != end) {
|
|
|
|
encoder->add_byte(*begin);
|
|
|
|
++begin;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Decode, obeying false syncs.
|
|
|
|
using Shifter = Storage::Encodings::MFM::Shifter;
|
|
|
|
Shifter shifter;
|
|
|
|
shifter.set_should_obey_syncs(true);
|
|
|
|
|
|
|
|
// Add whatever comes from the track.
|
|
|
|
for(auto bit: segment.data) {
|
|
|
|
shifter.add_input_bit(int(bit));
|
|
|
|
|
|
|
|
if(shifter.get_token() != Shifter::None) {
|
|
|
|
result.push_back(shifter.get_byte());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
2020-01-10 02:03:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
TrackConstructor(const std::vector<uint8_t> &track_data, const std::vector<Sector> §ors, size_t track_size, uint16_t first_sync) :
|
|
|
|
track_data_(track_data), sectors_(sectors), track_size_(track_size), first_sync_(first_sync) {
|
|
|
|
}
|
|
|
|
|
|
|
|
std::shared_ptr<PCMTrack> get_track() {
|
2020-01-10 02:50:32 +00:00
|
|
|
// If no contents are supplied, return an unformatted track.
|
|
|
|
if(sectors_.empty() && track_data_.empty()) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If no sectors are on this track, just encode the track data. STX allows speed
|
|
|
|
// changes and fuzzy bits in sectors only.
|
|
|
|
if(sectors_.empty()) {
|
|
|
|
PCMSegment segment;
|
|
|
|
std::unique_ptr<Storage::Encodings::MFM::Encoder> encoder = Storage::Encodings::MFM::GetMFMEncoder(segment.data);
|
|
|
|
for(auto c: track_data_) {
|
|
|
|
encoder->add_byte(c);
|
|
|
|
}
|
|
|
|
return std::make_shared<PCMTrack>(segment);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise, seek to encode the sectors, using the track data to
|
|
|
|
// fill in the gaps (if provided).
|
2020-01-10 02:03:01 +00:00
|
|
|
std::unique_ptr<Storage::Encodings::MFM::Encoder> encoder;
|
|
|
|
std::unique_ptr<PCMSegment> segment;
|
|
|
|
|
|
|
|
// To reconcile the list of sectors with the WD get track-style track image,
|
|
|
|
// use sector bodies as definitive and refer to the track image for in-fill.
|
2020-01-10 04:28:07 +00:00
|
|
|
auto track_position = track_data_.begin();
|
2020-01-13 03:18:31 +00:00
|
|
|
const auto address_mark = {0xa1, 0xa1, 0xfe};
|
|
|
|
const auto track_mark = {0xa1, 0xa1, 0xfb};
|
|
|
|
struct Location {
|
|
|
|
enum Type {
|
|
|
|
Address, Data
|
|
|
|
} type;
|
|
|
|
std::vector<uint8_t>::const_iterator position;
|
|
|
|
const Sector §or;
|
|
|
|
|
|
|
|
Location(Type type, std::vector<uint8_t>::const_iterator position, const Sector §or) : type(type), position(position), sector(sector) {}
|
|
|
|
};
|
|
|
|
std::vector<Location> locations;
|
2020-01-10 02:03:01 +00:00
|
|
|
for(const auto §or: sectors_) {
|
2020-01-13 03:18:31 +00:00
|
|
|
{
|
|
|
|
// Find out what the address would look like, if found in a read track.
|
|
|
|
const auto track_address = sector.get_track_address_image();
|
|
|
|
|
|
|
|
// Try to locate the header within the track image; if it can't be found then settle for
|
|
|
|
// the next thing that looks like a header of any sort.
|
|
|
|
auto address_position = std::search(track_position, track_data_.end(), track_address.begin(), track_address.end());
|
|
|
|
if(address_position == track_data_.end()) {
|
|
|
|
address_position = std::search(track_position, track_data_.end(), address_mark.begin(), address_mark.end());
|
|
|
|
}
|
2020-01-10 04:28:07 +00:00
|
|
|
|
2020-01-13 03:18:31 +00:00
|
|
|
// Stop now if there's nowhere obvious to put this sector.
|
|
|
|
if(address_position == track_data_.end()) break;
|
|
|
|
locations.emplace_back(Location::Address, address_position, sector);
|
2020-01-10 04:28:07 +00:00
|
|
|
|
2020-01-13 03:18:31 +00:00
|
|
|
// Advance the track position.
|
|
|
|
track_position = address_position;
|
2020-01-10 04:28:07 +00:00
|
|
|
}
|
|
|
|
|
2020-01-13 03:18:31 +00:00
|
|
|
// Do much the same thing for the data, if it exists.
|
|
|
|
if(!(sector.status & 0x10)) {
|
|
|
|
const auto track_data = sector.get_track_data_image();
|
2020-01-10 04:28:07 +00:00
|
|
|
|
2020-01-13 03:18:31 +00:00
|
|
|
auto data_position = std::search(track_position, track_data_.end(), track_data.begin(), track_data.end());
|
|
|
|
if(data_position == track_data_.end()) {
|
|
|
|
data_position = std::search(track_position, track_data_.end(), track_mark.begin(), track_mark.end());
|
|
|
|
}
|
|
|
|
if(data_position == track_data_.end()) break;
|
2020-01-10 02:03:01 +00:00
|
|
|
|
2020-01-13 03:18:31 +00:00
|
|
|
locations.emplace_back(Location::Data, data_position, sector);
|
|
|
|
track_position = data_position;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Write out, being wary of potential overlapping sectors, and copying from track_data_ to fill in gaps.
|
|
|
|
auto location = locations.begin();
|
|
|
|
track_position = track_data_.begin();
|
|
|
|
while(location != locations.end()) {
|
|
|
|
// Just create an encoder if one doesn't exist. TODO: factor in data rate.
|
2020-01-10 02:03:01 +00:00
|
|
|
if(!encoder) {
|
|
|
|
segment.reset(new PCMSegment);
|
|
|
|
encoder = Storage::Encodings::MFM::GetMFMEncoder(segment->data);
|
|
|
|
}
|
|
|
|
|
2020-01-13 03:18:31 +00:00
|
|
|
// Advance to location.position.
|
|
|
|
while(track_position != location->position) {
|
|
|
|
encoder->add_byte(*track_position);
|
|
|
|
++track_position;
|
|
|
|
}
|
2020-01-10 02:03:01 +00:00
|
|
|
|
2020-01-13 03:18:31 +00:00
|
|
|
// Write the relevant mark and fill in a default number of bytes to write.
|
|
|
|
size_t bytes_to_write;
|
|
|
|
switch(location->type) {
|
|
|
|
default:
|
|
|
|
case Location::Address:
|
|
|
|
encoder->add_ID_address_mark();
|
|
|
|
bytes_to_write = 6;
|
|
|
|
break;
|
|
|
|
case Location::Data:
|
|
|
|
if(location->sector.status & 0x20)
|
|
|
|
encoder->add_deleted_data_address_mark();
|
|
|
|
else
|
|
|
|
encoder->add_data_address_mark();
|
|
|
|
bytes_to_write = location->sector.data_size() + 2;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
track_position += 3;
|
2020-01-10 02:03:01 +00:00
|
|
|
|
2020-01-13 03:18:31 +00:00
|
|
|
// Decide how much data to write for real; this [partially] allows for overlapping sectors.
|
|
|
|
auto next_location = location + 1;
|
|
|
|
if(next_location != locations.end()) {
|
|
|
|
bytes_to_write = std::min(bytes_to_write, size_t(next_location->position - track_position));
|
2020-01-10 02:03:01 +00:00
|
|
|
}
|
|
|
|
|
2020-01-13 03:18:31 +00:00
|
|
|
// Skip that many bytes from the underlying track image.
|
|
|
|
track_position += ssize_t(bytes_to_write);
|
|
|
|
|
|
|
|
// Write bytes.
|
|
|
|
switch(location->type) {
|
|
|
|
default:
|
|
|
|
case Location::Address:
|
|
|
|
for(size_t c = 0; c < bytes_to_write; ++c)
|
|
|
|
encoder->add_byte(location->sector.address[c]);
|
|
|
|
break;
|
|
|
|
case Location::Data: {
|
|
|
|
const auto body_bytes = std::min(bytes_to_write, size_t(location->sector.data_size()));
|
|
|
|
for(size_t c = 0; c < body_bytes; ++c)
|
|
|
|
encoder->add_byte(location->sector.contents[c]);
|
|
|
|
|
|
|
|
// Add a CRC only if it fits (TODO: crop if necessary?).
|
|
|
|
if(bytes_to_write & 127) {
|
|
|
|
encoder->add_crc((location->sector.status & 0x18) == 0x10);
|
|
|
|
}
|
|
|
|
} break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Advance location.
|
|
|
|
++location;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Write anything remaining from the track image.
|
|
|
|
while(track_position < track_data_.end()) {
|
|
|
|
encoder->add_byte(*track_position);
|
|
|
|
++track_position;
|
2020-01-10 02:03:01 +00:00
|
|
|
}
|
|
|
|
|
2020-01-13 03:18:31 +00:00
|
|
|
// Write generic padding up until the specified track size.
|
|
|
|
while(segment->data.size() < track_size_ * 16) {
|
|
|
|
encoder->add_byte(0x4e);
|
|
|
|
}
|
2020-01-10 02:50:32 +00:00
|
|
|
|
2020-01-13 03:18:31 +00:00
|
|
|
// Pad out to the minimum size a WD can actually make sense of.
|
|
|
|
// I've no idea why it's valid for tracks to be shorter than this,
|
|
|
|
// so likely I'm suffering a comprehansion deficiency.
|
|
|
|
// TODO: determine why this isn't correct (or, possibly, is).
|
|
|
|
while(segment->data.size() < 5750 * 16) {
|
2020-01-10 02:50:32 +00:00
|
|
|
encoder->add_byte(0x4e);
|
|
|
|
}
|
|
|
|
|
2020-01-10 02:03:01 +00:00
|
|
|
return std::make_shared<PCMTrack>(*segment);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
const std::vector<uint8_t> &track_data_;
|
|
|
|
const std::vector<Sector> §ors_;
|
|
|
|
const size_t track_size_;
|
|
|
|
const uint16_t first_sync_;
|
2020-01-08 04:21:32 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
STX::STX(const std::string &file_name) : file_(file_name) {
|
|
|
|
// Require that this be a version 3 Pasti.
|
|
|
|
if(!file_.check_signature("RSY", 4)) throw Error::InvalidFormat;
|
|
|
|
if(file_.get16le() != 3) throw Error::InvalidFormat;
|
|
|
|
|
|
|
|
// Skip: tool used, 2 reserved bytes.
|
|
|
|
file_.seek(4, SEEK_CUR);
|
|
|
|
|
2020-01-13 03:23:34 +00:00
|
|
|
// Skip the track count, test for a new-style encoding, skip a reserved area.
|
|
|
|
file_.seek(1, SEEK_CUR);
|
2020-01-08 04:21:32 +00:00
|
|
|
is_new_format_ = file_.get8() == 2;
|
|
|
|
file_.seek(4, SEEK_CUR);
|
|
|
|
|
|
|
|
// Set all tracks absent.
|
|
|
|
memset(offset_by_track_, 0, sizeof(offset_by_track_));
|
|
|
|
|
|
|
|
// Parse the tracks table to fill in offset_by_track_. The only available documentation
|
|
|
|
// for STX is unofficial and makes no promise about track order. Hence the bucket sort,
|
|
|
|
// effectively putting them into track order.
|
|
|
|
//
|
|
|
|
// Track descriptor layout:
|
|
|
|
//
|
|
|
|
// 0 4 Record size.
|
|
|
|
// 4 4 Number of bytes in fuzzy mask record.
|
|
|
|
// 8 2 Number of sectors on track.
|
|
|
|
// 10 2 Track flags.
|
|
|
|
// 12 2 Total number of bytes on track.
|
|
|
|
// 14 1 Track number (b7 = side, b0-b6 = track).
|
|
|
|
// 15 1 Track type.
|
2020-01-13 03:23:34 +00:00
|
|
|
track_count_ = 0;
|
|
|
|
head_count_ = 1;
|
2020-01-08 04:21:32 +00:00
|
|
|
while(true) {
|
|
|
|
const long offset = file_.tell();
|
|
|
|
const uint32_t size = file_.get32le();
|
|
|
|
if(file_.eof()) break;
|
|
|
|
|
|
|
|
// Skip fields other than track position, then fill in table position and advance.
|
|
|
|
file_.seek(10, SEEK_CUR);
|
|
|
|
|
|
|
|
const uint8_t track_position = file_.get8();
|
|
|
|
offset_by_track_[track_position] = offset;
|
|
|
|
|
2020-01-13 03:23:34 +00:00
|
|
|
// Update the maximum surface dimensions.
|
|
|
|
track_count_ = std::max(track_count_, track_position & 0x7f);
|
|
|
|
head_count_ = std::max(head_count_, ((track_position & 0x80) >> 6));
|
|
|
|
|
2020-01-08 04:21:32 +00:00
|
|
|
// Seek next track start.
|
|
|
|
file_.seek(offset + size, SEEK_SET);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
HeadPosition STX::get_maximum_head_position() {
|
2020-01-13 03:23:34 +00:00
|
|
|
return HeadPosition(track_count_ + 1); // Same issue as MSA; must fix!
|
2020-01-08 04:21:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int STX::get_head_count() {
|
2020-01-13 03:23:34 +00:00
|
|
|
return head_count_;
|
2020-01-08 04:21:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::shared_ptr<::Storage::Disk::Track> STX::get_track_at_position(::Storage::Disk::Track::Address address) {
|
|
|
|
// These images have two sides, at most.
|
|
|
|
if(address.head > 1) return nullptr;
|
|
|
|
|
|
|
|
// If no track was found, there's nothing to do here.
|
|
|
|
const int track_index = (address.head * 0x80) + address.position.as_int();
|
|
|
|
if(!offset_by_track_[track_index]) return nullptr;
|
|
|
|
|
|
|
|
// Seek to the track (skipping the record size field).
|
|
|
|
file_.seek(offset_by_track_[track_index] + 4, SEEK_SET);
|
|
|
|
|
|
|
|
// Grab the track description.
|
|
|
|
const uint32_t fuzzy_size = file_.get32le();
|
|
|
|
const uint16_t sector_count = file_.get16le();
|
|
|
|
const uint16_t flags = file_.get16le();
|
2020-01-13 03:18:31 +00:00
|
|
|
const size_t track_length = file_.get16le();
|
2020-01-08 04:21:32 +00:00
|
|
|
file_.seek(2, SEEK_CUR); // Skip track type; despite being named, it's apparently unused.
|
|
|
|
|
|
|
|
// If this is a trivial .ST-style sector dump, life is easy.
|
|
|
|
if(!(flags & 1)) {
|
|
|
|
const auto sector_contents = file_.read(sector_count * 512);
|
|
|
|
return track_for_sectors(sector_contents.data(), sector_count, uint8_t(address.position.as_int()), uint8_t(address.head), 1, 2, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Grab sector records, if provided.
|
2020-01-10 02:03:01 +00:00
|
|
|
std::vector<TrackConstructor::Sector> sectors;
|
|
|
|
std::vector<uint8_t> track_data;
|
|
|
|
uint16_t first_sync = TrackConstructor::NoFirstOffset;
|
|
|
|
|
|
|
|
// Sector records come first.
|
|
|
|
for(uint16_t c = 0; c < sector_count; ++c) {
|
|
|
|
sectors.emplace_back();
|
|
|
|
sectors.back().data_offset = file_.get32le();
|
|
|
|
sectors.back().bit_position = file_.get16le();
|
|
|
|
sectors.back().data_duration = file_.get16le();
|
2020-01-10 04:28:07 +00:00
|
|
|
file_.read(sectors.back().address);
|
2020-01-10 02:03:01 +00:00
|
|
|
sectors.back().status = file_.get8();
|
|
|
|
file_.seek(1, SEEK_CUR);
|
|
|
|
}
|
2020-01-08 04:21:32 +00:00
|
|
|
|
2020-01-10 02:03:01 +00:00
|
|
|
// If fuzzy masks are specified, attach them to their corresponding sectors.
|
|
|
|
if(fuzzy_size) {
|
|
|
|
uint32_t fuzzy_bytes_read = 0;
|
|
|
|
for(auto §or: sectors) {
|
|
|
|
// Check for the fuzzy bit mask; if it's not set then
|
|
|
|
// there's nothing for this sector.
|
|
|
|
if(!(sector.status & 0x80)) continue;
|
|
|
|
|
|
|
|
// Make sure there are enough bytes left.
|
|
|
|
const uint32_t expected_bytes = sector.data_size();
|
|
|
|
if(fuzzy_bytes_read + expected_bytes > fuzzy_size) break;
|
2020-01-08 04:21:32 +00:00
|
|
|
|
2020-01-10 02:03:01 +00:00
|
|
|
// Okay, there are, so read them.
|
|
|
|
sector.fuzzy_mask = file_.read(expected_bytes);
|
|
|
|
fuzzy_bytes_read += expected_bytes;
|
2020-01-08 04:21:32 +00:00
|
|
|
}
|
2020-01-10 02:03:01 +00:00
|
|
|
|
|
|
|
// It should be true that the number of fuzzy masks caused
|
|
|
|
// exactly the correct number of fuzzy bytes to be read.
|
|
|
|
// But, just in case, check and possibly skip some.
|
|
|
|
file_.seek(long(fuzzy_size) - fuzzy_bytes_read, SEEK_CUR);
|
2020-01-08 04:21:32 +00:00
|
|
|
}
|
|
|
|
|
2020-01-10 02:03:01 +00:00
|
|
|
// There may or may not be a track image. Grab it if so.
|
2020-01-08 04:21:32 +00:00
|
|
|
|
|
|
|
// Grab the read-track-esque track contents, if available.
|
|
|
|
long sector_start = file_.tell();
|
|
|
|
if(flags & 0x40) {
|
2020-01-10 02:03:01 +00:00
|
|
|
// Bit 6 => there is a track to read;
|
|
|
|
// bit
|
2020-01-08 04:21:32 +00:00
|
|
|
if(flags & 0x80) {
|
2020-01-10 02:03:01 +00:00
|
|
|
first_sync = file_.get16le();
|
2020-01-08 04:21:32 +00:00
|
|
|
const uint16_t image_size = file_.get16le();
|
|
|
|
track_data = file_.read(image_size);
|
|
|
|
} else {
|
|
|
|
const uint16_t image_size = file_.get16le();
|
|
|
|
track_data = file_.read(image_size);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-10 02:03:01 +00:00
|
|
|
// Grab sector contents.
|
|
|
|
long end_of_data = file_.tell();
|
|
|
|
for(auto §or: sectors) {
|
|
|
|
// If the FDC record-not-found flag is set, there's no sector body to find.
|
|
|
|
// Otherwise there's a sector body in the file somewhere.
|
|
|
|
if(!(sector.status & 0x10)) {
|
|
|
|
file_.seek(sector.data_offset + sector_start, SEEK_SET);
|
|
|
|
sector.contents = file_.read(sector.data_size());
|
|
|
|
end_of_data = std::max(end_of_data, file_.tell());
|
2020-01-08 04:21:32 +00:00
|
|
|
}
|
2020-01-10 02:03:01 +00:00
|
|
|
}
|
|
|
|
file_.seek(end_of_data, SEEK_SET);
|
|
|
|
|
|
|
|
// Grab timing info if available.
|
|
|
|
file_.seek(4, SEEK_CUR); // Skip the timing descriptor, as it includes no new information.
|
|
|
|
for(auto §or: sectors) {
|
|
|
|
// Skip any sector with no intra-sector bit width variation.
|
|
|
|
if(!(sector.status&1)) continue;
|
|
|
|
|
|
|
|
const auto timing_record_size = sector.data_size() >> 4; // Use one entry per 16 bytes.
|
|
|
|
sector.timing.resize(timing_record_size);
|
|
|
|
|
|
|
|
if(!is_new_format_) {
|
|
|
|
// Generate timing records for Macrodos/Speedlock.
|
|
|
|
// Timing is specified in quarters. Which might or might not be
|
|
|
|
// quantities of 128 bytes, who knows?
|
|
|
|
for(size_t c = 0; c < timing_record_size; ++c) {
|
|
|
|
if(c < (timing_record_size >> 2)) {
|
|
|
|
sector.timing[c] = 127;
|
|
|
|
} else if(c < ((timing_record_size*2) >> 2)) {
|
|
|
|
sector.timing[c] = 133;
|
|
|
|
} else if(c < ((timing_record_size*3) >> 2)) {
|
|
|
|
sector.timing[c] = 121;
|
|
|
|
} else {
|
|
|
|
sector.timing[c] = 127;
|
|
|
|
}
|
2020-01-08 04:21:32 +00:00
|
|
|
}
|
2020-01-10 02:03:01 +00:00
|
|
|
|
|
|
|
continue;
|
2020-01-08 04:21:32 +00:00
|
|
|
}
|
|
|
|
|
2020-01-10 02:03:01 +00:00
|
|
|
// This is going to be a new-format record.
|
|
|
|
for(size_t c = 0; c < timing_record_size; ++c) {
|
|
|
|
sector.timing[c] = file_.get16be(); // These values are big endian, unlike the rest of the file.
|
|
|
|
}
|
2020-01-08 04:21:32 +00:00
|
|
|
}
|
|
|
|
|
2020-01-10 02:03:01 +00:00
|
|
|
// Sort the sectors by starting position. It's perfectly possible that they're always
|
|
|
|
// sorted in STX but, again, the reverse-engineered documentation doesn't make the
|
|
|
|
// promise, so that's that.
|
|
|
|
std::sort(sectors.begin(), sectors.end(),
|
|
|
|
[] (TrackConstructor::Sector &lhs, TrackConstructor::Sector &rhs) {
|
|
|
|
return lhs.bit_position < rhs.bit_position;
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2020-01-08 04:21:32 +00:00
|
|
|
/*
|
2020-01-10 02:03:01 +00:00
|
|
|
Having reached here, the actual stuff of parsing the file structure should be done.
|
|
|
|
So hand off to the TrackConstructor.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
TrackConstructor constructor(track_data, sectors, track_length, first_sync);
|
|
|
|
return constructor.get_track();
|
2020-01-08 04:21:32 +00:00
|
|
|
}
|