2016-09-18 17:35:54 +00:00
|
|
|
//
|
|
|
|
// MFM.cpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 18/09/2016.
|
|
|
|
// Copyright © 2016 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
2017-09-25 01:40:43 +00:00
|
|
|
#include "Encoder.hpp"
|
2016-09-18 17:35:54 +00:00
|
|
|
|
2017-09-25 01:40:43 +00:00
|
|
|
#include "Constants.hpp"
|
2017-09-25 00:07:56 +00:00
|
|
|
#include "../../Track/PCMTrack.hpp"
|
|
|
|
#include "../../../../NumberTheory/CRC.hpp"
|
2016-09-18 20:53:21 +00:00
|
|
|
|
2017-08-17 19:31:53 +00:00
|
|
|
#include <set>
|
|
|
|
|
2016-09-18 20:53:21 +00:00
|
|
|
using namespace Storage::Encodings::MFM;
|
|
|
|
|
2016-11-26 05:39:20 +00:00
|
|
|
class MFMEncoder: public Encoder {
|
2016-09-18 21:16:20 +00:00
|
|
|
public:
|
2016-11-26 05:39:20 +00:00
|
|
|
MFMEncoder(std::vector<uint8_t> &target) : Encoder(target) {}
|
2016-09-18 21:16:20 +00:00
|
|
|
|
|
|
|
void add_byte(uint8_t input) {
|
2016-12-28 23:29:37 +00:00
|
|
|
crc_generator_.add(input);
|
2016-09-18 21:16:20 +00:00
|
|
|
uint16_t spread_value =
|
2017-10-22 01:50:53 +00:00
|
|
|
static_cast<uint16_t>(
|
2016-09-18 21:16:20 +00:00
|
|
|
((input & 0x01) << 0) |
|
|
|
|
((input & 0x02) << 1) |
|
|
|
|
((input & 0x04) << 2) |
|
|
|
|
((input & 0x08) << 3) |
|
|
|
|
((input & 0x10) << 4) |
|
|
|
|
((input & 0x20) << 5) |
|
|
|
|
((input & 0x40) << 6) |
|
|
|
|
((input & 0x80) << 7)
|
|
|
|
);
|
2017-10-22 01:50:53 +00:00
|
|
|
uint16_t or_bits = static_cast<uint16_t>((spread_value << 1) | (spread_value >> 1) | (last_output_ << 15));
|
2016-12-28 23:29:37 +00:00
|
|
|
uint16_t output = spread_value | ((~or_bits) & 0xaaaa);
|
|
|
|
output_short(output);
|
2016-09-18 20:53:21 +00:00
|
|
|
}
|
|
|
|
|
2016-09-18 21:16:20 +00:00
|
|
|
void add_index_address_mark() {
|
2016-12-28 23:29:37 +00:00
|
|
|
for(int c = 0; c < 3; c++) output_short(MFMIndexSync);
|
2016-12-31 20:25:11 +00:00
|
|
|
add_byte(IndexAddressByte);
|
2016-09-18 21:16:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void add_ID_address_mark() {
|
2016-12-28 23:29:37 +00:00
|
|
|
output_sync();
|
2016-12-31 20:25:11 +00:00
|
|
|
add_byte(IDAddressByte);
|
2016-09-18 21:16:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void add_data_address_mark() {
|
2016-12-28 23:29:37 +00:00
|
|
|
output_sync();
|
2016-12-31 20:25:11 +00:00
|
|
|
add_byte(DataAddressByte);
|
2016-09-18 21:16:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void add_deleted_data_address_mark() {
|
2016-12-28 23:29:37 +00:00
|
|
|
output_sync();
|
2016-12-31 20:25:11 +00:00
|
|
|
add_byte(DeletedDataAddressByte);
|
2016-09-18 21:16:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2016-12-28 23:29:37 +00:00
|
|
|
uint16_t last_output_;
|
|
|
|
void output_short(uint16_t value) {
|
|
|
|
last_output_ = value;
|
|
|
|
Encoder::output_short(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
void output_sync() {
|
|
|
|
for(int c = 0; c < 3; c++) output_short(MFMSync);
|
|
|
|
crc_generator_.set_value(MFMPostSyncCRCValue);
|
|
|
|
}
|
2016-09-18 21:16:20 +00:00
|
|
|
};
|
|
|
|
|
2016-11-26 05:39:20 +00:00
|
|
|
class FMEncoder: public Encoder {
|
2016-09-18 22:46:58 +00:00
|
|
|
// encodes each 16-bit part as clock, data, clock, data [...]
|
2016-09-18 21:16:20 +00:00
|
|
|
public:
|
2016-11-26 05:39:20 +00:00
|
|
|
FMEncoder(std::vector<uint8_t> &target) : Encoder(target) {}
|
|
|
|
|
2016-09-18 21:16:20 +00:00
|
|
|
void add_byte(uint8_t input) {
|
2016-12-28 23:29:37 +00:00
|
|
|
crc_generator_.add(input);
|
2016-11-26 05:39:20 +00:00
|
|
|
output_short(
|
2017-10-22 01:50:53 +00:00
|
|
|
static_cast<uint16_t>(
|
2016-09-18 22:46:58 +00:00
|
|
|
((input & 0x01) << 0) |
|
|
|
|
((input & 0x02) << 1) |
|
|
|
|
((input & 0x04) << 2) |
|
|
|
|
((input & 0x08) << 3) |
|
|
|
|
((input & 0x10) << 4) |
|
|
|
|
((input & 0x20) << 5) |
|
|
|
|
((input & 0x40) << 6) |
|
|
|
|
((input & 0x80) << 7) |
|
|
|
|
0xaaaa
|
2016-09-18 21:16:20 +00:00
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2017-03-26 18:34:47 +00:00
|
|
|
void add_index_address_mark() {
|
2016-12-28 23:56:53 +00:00
|
|
|
crc_generator_.reset();
|
2016-12-31 20:25:11 +00:00
|
|
|
crc_generator_.add(IndexAddressByte);
|
2016-12-28 23:56:53 +00:00
|
|
|
output_short(FMIndexAddressMark);
|
|
|
|
}
|
|
|
|
|
2017-03-26 18:34:47 +00:00
|
|
|
void add_ID_address_mark() {
|
2016-12-28 23:56:53 +00:00
|
|
|
crc_generator_.reset();
|
2016-12-31 20:25:11 +00:00
|
|
|
crc_generator_.add(IDAddressByte);
|
2016-12-28 23:56:53 +00:00
|
|
|
output_short(FMIDAddressMark);
|
|
|
|
}
|
|
|
|
|
2017-03-26 18:34:47 +00:00
|
|
|
void add_data_address_mark() {
|
2016-12-28 23:56:53 +00:00
|
|
|
crc_generator_.reset();
|
2016-12-31 20:25:11 +00:00
|
|
|
crc_generator_.add(DataAddressByte);
|
2016-12-28 23:56:53 +00:00
|
|
|
output_short(FMDataAddressMark);
|
|
|
|
}
|
|
|
|
|
2017-03-26 18:34:47 +00:00
|
|
|
void add_deleted_data_address_mark() {
|
2016-12-28 23:56:53 +00:00
|
|
|
crc_generator_.reset();
|
2016-12-31 20:25:11 +00:00
|
|
|
crc_generator_.add(DeletedDataAddressByte);
|
2016-12-28 23:56:53 +00:00
|
|
|
output_short(FMDeletedDataAddressMark);
|
|
|
|
}
|
2016-09-18 21:16:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
template<class T> std::shared_ptr<Storage::Disk::Track>
|
2017-03-26 18:34:47 +00:00
|
|
|
GetTrackWithSectors(
|
2017-11-01 01:32:28 +00:00
|
|
|
const std::vector<const Sector *> §ors,
|
2017-03-26 18:34:47 +00:00
|
|
|
size_t post_index_address_mark_bytes, uint8_t post_index_address_mark_value,
|
2017-08-11 18:24:50 +00:00
|
|
|
size_t pre_address_mark_bytes,
|
|
|
|
size_t post_address_mark_bytes, uint8_t post_address_mark_value,
|
2017-08-14 01:52:48 +00:00
|
|
|
size_t pre_data_mark_bytes,
|
|
|
|
size_t post_data_bytes, uint8_t post_data_value,
|
2017-03-26 18:34:47 +00:00
|
|
|
size_t expected_track_bytes) {
|
2016-11-26 05:39:20 +00:00
|
|
|
Storage::Disk::PCMSegment segment;
|
|
|
|
segment.data.reserve(expected_track_bytes);
|
|
|
|
T shifter(segment.data);
|
2016-09-18 20:53:21 +00:00
|
|
|
|
|
|
|
// output the index mark
|
|
|
|
shifter.add_index_address_mark();
|
|
|
|
|
|
|
|
// add the post-index mark
|
2017-07-22 01:53:05 +00:00
|
|
|
for(size_t c = 0; c < post_index_address_mark_bytes; c++) shifter.add_byte(post_index_address_mark_value);
|
2016-09-18 20:53:21 +00:00
|
|
|
|
|
|
|
// add sectors
|
2017-11-01 01:32:28 +00:00
|
|
|
for(const Sector *sector : sectors) {
|
2016-09-18 22:33:26 +00:00
|
|
|
// gap
|
2017-07-22 01:53:05 +00:00
|
|
|
for(size_t c = 0; c < pre_address_mark_bytes; c++) shifter.add_byte(0x00);
|
2016-09-18 20:53:21 +00:00
|
|
|
|
2016-09-18 22:33:26 +00:00
|
|
|
// sector header
|
2016-09-18 20:53:21 +00:00
|
|
|
shifter.add_ID_address_mark();
|
2017-11-01 01:32:28 +00:00
|
|
|
shifter.add_byte(sector->address.track);
|
|
|
|
shifter.add_byte(sector->address.side);
|
|
|
|
shifter.add_byte(sector->address.sector);
|
|
|
|
shifter.add_byte(sector->size);
|
|
|
|
shifter.add_crc(sector->has_header_crc_error);
|
2016-09-18 22:33:26 +00:00
|
|
|
|
|
|
|
// gap
|
2017-08-11 18:24:50 +00:00
|
|
|
for(size_t c = 0; c < post_address_mark_bytes; c++) shifter.add_byte(post_address_mark_value);
|
2017-07-22 01:53:05 +00:00
|
|
|
for(size_t c = 0; c < pre_data_mark_bytes; c++) shifter.add_byte(0x00);
|
2016-09-18 20:53:21 +00:00
|
|
|
|
2017-08-11 18:24:50 +00:00
|
|
|
// data, if attached
|
2017-11-01 01:32:28 +00:00
|
|
|
// TODO: allow for weak/fuzzy data.
|
|
|
|
if(!sector->samples.empty()) {
|
|
|
|
if(sector->is_deleted)
|
2017-08-11 18:24:50 +00:00
|
|
|
shifter.add_deleted_data_address_mark();
|
|
|
|
else
|
|
|
|
shifter.add_data_address_mark();
|
|
|
|
|
|
|
|
size_t c = 0;
|
2017-11-01 01:32:28 +00:00
|
|
|
size_t declared_length = static_cast<size_t>(128 << sector->size);
|
|
|
|
for(c = 0; c < sector->samples[0].size() && c < declared_length; c++) {
|
|
|
|
shifter.add_byte(sector->samples[0][c]);
|
2017-08-11 18:24:50 +00:00
|
|
|
}
|
|
|
|
for(; c < declared_length; c++) {
|
|
|
|
shifter.add_byte(0x00);
|
|
|
|
}
|
2017-11-01 01:32:28 +00:00
|
|
|
shifter.add_crc(sector->has_data_crc_error);
|
2016-09-18 22:33:26 +00:00
|
|
|
}
|
2016-09-18 20:53:21 +00:00
|
|
|
|
2016-09-18 22:33:26 +00:00
|
|
|
// gap
|
2017-08-14 01:52:48 +00:00
|
|
|
for(size_t c = 0; c < post_data_bytes; c++) shifter.add_byte(post_data_value);
|
2016-09-18 20:53:21 +00:00
|
|
|
}
|
|
|
|
|
2016-11-26 05:39:20 +00:00
|
|
|
while(segment.data.size() < expected_track_bytes) shifter.add_byte(0x00);
|
2017-08-18 01:36:14 +00:00
|
|
|
|
|
|
|
// Allow the amount of data written to be up to 10% more than the expected size. Which is generous.
|
|
|
|
size_t max_size = expected_track_bytes + (expected_track_bytes / 10);
|
|
|
|
if(segment.data.size() > max_size) segment.data.resize(max_size);
|
2016-09-18 20:53:21 +00:00
|
|
|
|
2017-10-21 23:49:04 +00:00
|
|
|
segment.number_of_bits = static_cast<unsigned int>(segment.data.size() * 8);
|
2016-11-26 05:39:20 +00:00
|
|
|
return std::shared_ptr<Storage::Disk::Track>(new Storage::Disk::PCMTrack(std::move(segment)));
|
2016-09-18 20:53:21 +00:00
|
|
|
}
|
2016-09-18 21:16:20 +00:00
|
|
|
|
2016-11-26 05:39:20 +00:00
|
|
|
Encoder::Encoder(std::vector<uint8_t> &target) :
|
2016-12-28 23:29:37 +00:00
|
|
|
crc_generator_(0x1021, 0xffff),
|
2017-03-26 18:34:47 +00:00
|
|
|
target_(target) {}
|
2016-11-26 05:39:20 +00:00
|
|
|
|
2017-03-26 18:34:47 +00:00
|
|
|
void Encoder::output_short(uint16_t value) {
|
2016-11-26 05:39:20 +00:00
|
|
|
target_.push_back(value >> 8);
|
|
|
|
target_.push_back(value & 0xff);
|
|
|
|
}
|
2016-09-18 21:16:20 +00:00
|
|
|
|
2017-08-11 18:24:50 +00:00
|
|
|
void Encoder::add_crc(bool incorrectly) {
|
2016-12-29 00:48:46 +00:00
|
|
|
uint16_t crc_value = crc_generator_.get_value();
|
|
|
|
add_byte(crc_value >> 8);
|
2017-08-11 18:24:50 +00:00
|
|
|
add_byte((crc_value & 0xff) ^ (incorrectly ? 1 : 0));
|
2016-12-28 23:29:37 +00:00
|
|
|
}
|
|
|
|
|
2017-10-22 02:30:15 +00:00
|
|
|
const size_t Storage::Encodings::MFM::DefaultSectorGapLength = std::numeric_limits<size_t>::max();
|
2017-08-11 18:24:50 +00:00
|
|
|
|
2017-11-01 01:32:28 +00:00
|
|
|
static std::vector<const Sector *> sector_pointers(const std::vector<Sector> §ors) {
|
|
|
|
std::vector<const Sector *> pointers;
|
|
|
|
for(const Sector §or: sectors) {
|
|
|
|
pointers.push_back(§or);
|
|
|
|
}
|
|
|
|
return pointers;
|
|
|
|
}
|
|
|
|
|
2017-08-11 18:24:50 +00:00
|
|
|
std::shared_ptr<Storage::Disk::Track> Storage::Encodings::MFM::GetFMTrackWithSectors(const std::vector<Sector> §ors, size_t sector_gap_length, uint8_t sector_gap_filler_byte) {
|
2017-11-01 01:32:28 +00:00
|
|
|
return GetTrackWithSectors<FMEncoder>(
|
|
|
|
sector_pointers(sectors),
|
|
|
|
26, 0xff,
|
|
|
|
6,
|
|
|
|
11, 0xff,
|
|
|
|
6,
|
|
|
|
(sector_gap_length != DefaultSectorGapLength) ? sector_gap_length : 27, 0xff,
|
|
|
|
6250); // i.e. 250kbps (including clocks) * 60 = 15000kpm, at 300 rpm => 50 kbits/rotation => 6250 bytes/rotation
|
|
|
|
}
|
|
|
|
|
|
|
|
std::shared_ptr<Storage::Disk::Track> Storage::Encodings::MFM::GetFMTrackWithSectors(const std::vector<const Sector *> §ors, size_t sector_gap_length, uint8_t sector_gap_filler_byte) {
|
2016-11-26 05:39:20 +00:00
|
|
|
return GetTrackWithSectors<FMEncoder>(
|
2016-09-18 21:16:20 +00:00
|
|
|
sectors,
|
2017-08-14 01:52:48 +00:00
|
|
|
26, 0xff,
|
2017-08-11 18:24:50 +00:00
|
|
|
6,
|
2017-08-14 01:52:48 +00:00
|
|
|
11, 0xff,
|
|
|
|
6,
|
|
|
|
(sector_gap_length != DefaultSectorGapLength) ? sector_gap_length : 27, 0xff,
|
2016-09-20 02:06:56 +00:00
|
|
|
6250); // i.e. 250kbps (including clocks) * 60 = 15000kpm, at 300 rpm => 50 kbits/rotation => 6250 bytes/rotation
|
2016-09-18 21:16:20 +00:00
|
|
|
}
|
|
|
|
|
2017-08-11 18:24:50 +00:00
|
|
|
std::shared_ptr<Storage::Disk::Track> Storage::Encodings::MFM::GetMFMTrackWithSectors(const std::vector<Sector> §ors, size_t sector_gap_length, uint8_t sector_gap_filler_byte) {
|
2017-11-01 01:32:28 +00:00
|
|
|
return GetTrackWithSectors<MFMEncoder>(
|
|
|
|
sector_pointers(sectors),
|
|
|
|
50, 0x4e,
|
|
|
|
12,
|
|
|
|
22, 0x4e,
|
|
|
|
12,
|
|
|
|
(sector_gap_length != DefaultSectorGapLength) ? sector_gap_length : 54, 0xff,
|
|
|
|
12500); // unintelligently: double the single-density bytes/rotation (or: 500kbps @ 300 rpm)
|
|
|
|
}
|
|
|
|
|
|
|
|
std::shared_ptr<Storage::Disk::Track> Storage::Encodings::MFM::GetMFMTrackWithSectors(const std::vector<const Sector *> §ors, size_t sector_gap_length, uint8_t sector_gap_filler_byte) {
|
2016-11-26 05:39:20 +00:00
|
|
|
return GetTrackWithSectors<MFMEncoder>(
|
2016-09-18 21:16:20 +00:00
|
|
|
sectors,
|
|
|
|
50, 0x4e,
|
2017-08-11 18:24:50 +00:00
|
|
|
12,
|
2017-08-14 01:52:48 +00:00
|
|
|
22, 0x4e,
|
|
|
|
12,
|
|
|
|
(sector_gap_length != DefaultSectorGapLength) ? sector_gap_length : 54, 0xff,
|
2017-09-17 00:28:24 +00:00
|
|
|
12500); // unintelligently: double the single-density bytes/rotation (or: 500kbps @ 300 rpm)
|
2016-09-18 21:16:20 +00:00
|
|
|
}
|
2016-11-26 05:39:20 +00:00
|
|
|
|
2017-03-26 18:34:47 +00:00
|
|
|
std::unique_ptr<Encoder> Storage::Encodings::MFM::GetMFMEncoder(std::vector<uint8_t> &target) {
|
2016-11-26 05:39:20 +00:00
|
|
|
return std::unique_ptr<Encoder>(new MFMEncoder(target));
|
|
|
|
}
|
|
|
|
|
2017-03-26 18:34:47 +00:00
|
|
|
std::unique_ptr<Encoder> Storage::Encodings::MFM::GetFMEncoder(std::vector<uint8_t> &target) {
|
2016-11-26 05:39:20 +00:00
|
|
|
return std::unique_ptr<Encoder>(new FMEncoder(target));
|
|
|
|
}
|