2016-09-18 17:35:54 +00:00
|
|
|
//
|
|
|
|
// MFM.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 18/09/2016.
|
|
|
|
// Copyright © 2016 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef Storage_Disk_Encodings_MFM_hpp
|
|
|
|
#define Storage_Disk_Encodings_MFM_hpp
|
|
|
|
|
|
|
|
#include <cstdint>
|
2016-09-18 20:53:21 +00:00
|
|
|
#include <vector>
|
2016-09-19 12:16:06 +00:00
|
|
|
#include "../Disk.hpp"
|
2016-12-26 01:00:57 +00:00
|
|
|
#include "../DiskController.hpp"
|
|
|
|
#include "../../../NumberTheory/CRC.hpp"
|
2016-09-18 17:35:54 +00:00
|
|
|
|
|
|
|
namespace Storage {
|
|
|
|
namespace Encodings {
|
2016-09-18 20:53:21 +00:00
|
|
|
namespace MFM {
|
2016-09-18 17:35:54 +00:00
|
|
|
|
2016-12-31 20:25:11 +00:00
|
|
|
const uint8_t IndexAddressByte = 0xfc;
|
|
|
|
const uint8_t IDAddressByte = 0xfe;
|
|
|
|
const uint8_t DataAddressByte = 0xfb;
|
|
|
|
const uint8_t DeletedDataAddressByte = 0xf8;
|
|
|
|
|
2016-09-19 02:03:06 +00:00
|
|
|
const uint16_t FMIndexAddressMark = 0xf77a; // data 0xfc, with clock 0xd7 => 1111 1100 with clock 1101 0111 => 1111 0111 0111 1010
|
|
|
|
const uint16_t FMIDAddressMark = 0xf57e; // data 0xfe, with clock 0xc7 => 1111 1110 with clock 1100 0111 => 1111 0101 0111 1110
|
|
|
|
const uint16_t FMDataAddressMark = 0xf56f; // data 0xfb, with clock 0xc7 => 1111 1011 with clock 1100 0111 => 1111 0101 0110 1111
|
|
|
|
const uint16_t FMDeletedDataAddressMark = 0xf56a; // data 0xf8, with clock 0xc7 => 1111 1000 with clock 1100 0111 => 1111 0101 0110 1010
|
|
|
|
|
2016-12-31 20:25:11 +00:00
|
|
|
const uint16_t MFMIndexSync = 0x5224; // data 0xc2, with a missing clock at 0x0080 => 0101 0010 1010 0100 without 1000 0000
|
|
|
|
const uint16_t MFMSync = 0x4489; // data 0xa1, with a missing clock at 0x0020 => 0100 0100 1010 1001 without 0010 0000
|
|
|
|
const uint16_t MFMPostSyncCRCValue = 0xcdb4; // the value the CRC generator should have after encountering three 0xa1s
|
2016-09-25 21:46:11 +00:00
|
|
|
|
2017-01-02 01:39:19 +00:00
|
|
|
const uint8_t MFMIndexSyncByteValue = 0xc2;
|
|
|
|
const uint8_t MFMSyncByteValue = 0xa1;
|
|
|
|
|
2016-09-18 20:53:21 +00:00
|
|
|
struct Sector {
|
|
|
|
uint8_t track, side, sector;
|
|
|
|
std::vector<uint8_t> data;
|
|
|
|
};
|
|
|
|
|
|
|
|
std::shared_ptr<Storage::Disk::Track> GetMFMTrackWithSectors(const std::vector<Sector> §ors);
|
|
|
|
std::shared_ptr<Storage::Disk::Track> GetFMTrackWithSectors(const std::vector<Sector> §ors);
|
|
|
|
|
2016-11-26 05:39:20 +00:00
|
|
|
class Encoder {
|
|
|
|
public:
|
|
|
|
Encoder(std::vector<uint8_t> &target);
|
|
|
|
virtual void add_byte(uint8_t input) = 0;
|
|
|
|
virtual void add_index_address_mark() = 0;
|
|
|
|
virtual void add_ID_address_mark() = 0;
|
|
|
|
virtual void add_data_address_mark() = 0;
|
|
|
|
virtual void add_deleted_data_address_mark() = 0;
|
2016-12-28 23:50:28 +00:00
|
|
|
virtual void output_short(uint16_t value);
|
2016-12-28 23:29:37 +00:00
|
|
|
void add_crc();
|
2016-11-26 05:39:20 +00:00
|
|
|
|
|
|
|
protected:
|
2016-12-28 23:29:37 +00:00
|
|
|
NumberTheory::CRC16 crc_generator_;
|
2016-11-26 05:39:20 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
std::vector<uint8_t> &target_;
|
|
|
|
};
|
|
|
|
|
|
|
|
std::unique_ptr<Encoder> GetMFMEncoder(std::vector<uint8_t> &target);
|
|
|
|
std::unique_ptr<Encoder> GetFMEncoder(std::vector<uint8_t> &target);
|
|
|
|
|
2016-12-26 01:00:57 +00:00
|
|
|
class Parser: public Storage::Disk::Controller {
|
|
|
|
public:
|
|
|
|
Parser(bool is_mfm, const std::shared_ptr<Storage::Disk::Disk> &disk);
|
2016-12-26 19:24:33 +00:00
|
|
|
Parser(bool is_mfm, const std::shared_ptr<Storage::Disk::Track> &track);
|
2016-12-26 01:00:57 +00:00
|
|
|
|
|
|
|
/*!
|
|
|
|
Attempts to read the sector located at @c track and @c sector.
|
|
|
|
|
|
|
|
@returns a sector if one was found; @c nullptr otherwise.
|
|
|
|
*/
|
2017-08-11 14:29:13 +00:00
|
|
|
std::shared_ptr<Storage::Encodings::MFM::Sector> get_sector(uint8_t head, uint8_t track, uint8_t sector);
|
2016-12-26 01:00:57 +00:00
|
|
|
|
2016-12-31 00:59:23 +00:00
|
|
|
/*!
|
|
|
|
Attempts to read the track at @c track, starting from the index hole.
|
|
|
|
|
2016-12-31 04:10:52 +00:00
|
|
|
Decodes data bits only; clocks are omitted. Synchronisation values begin a new
|
|
|
|
byte. If a synchronisation value begins partway through a byte then
|
|
|
|
synchronisation-contributing bits will appear both in the preceding byte and
|
|
|
|
in the next.
|
2016-12-31 00:59:23 +00:00
|
|
|
|
2016-12-31 04:10:52 +00:00
|
|
|
@returns a vector of data found.
|
2016-12-31 00:59:23 +00:00
|
|
|
*/
|
2016-12-31 04:10:52 +00:00
|
|
|
std::vector<uint8_t> get_track(uint8_t track);
|
2016-12-31 00:59:23 +00:00
|
|
|
|
2016-12-26 01:00:57 +00:00
|
|
|
private:
|
2016-12-26 19:24:33 +00:00
|
|
|
Parser(bool is_mfm);
|
|
|
|
|
2017-08-11 14:29:13 +00:00
|
|
|
std::shared_ptr<Storage::Disk::Drive> drive_;
|
2016-12-26 01:00:57 +00:00
|
|
|
unsigned int shift_register_;
|
|
|
|
int index_count_;
|
2017-08-11 14:29:13 +00:00
|
|
|
uint8_t track_, head_;
|
2016-12-26 01:00:57 +00:00
|
|
|
int bit_count_;
|
|
|
|
NumberTheory::CRC16 crc_generator_;
|
|
|
|
bool is_mfm_;
|
|
|
|
|
2016-12-31 00:59:23 +00:00
|
|
|
void seek_to_track(uint8_t track);
|
2016-12-26 01:00:57 +00:00
|
|
|
void process_input_bit(int value, unsigned int cycles_since_index_hole);
|
|
|
|
void process_index_hole();
|
|
|
|
uint8_t get_next_byte();
|
2016-12-31 00:59:23 +00:00
|
|
|
|
2016-12-31 05:11:31 +00:00
|
|
|
uint8_t get_byte_for_shift_value(uint16_t value);
|
|
|
|
|
2016-12-26 01:00:57 +00:00
|
|
|
std::shared_ptr<Storage::Encodings::MFM::Sector> get_next_sector();
|
|
|
|
std::shared_ptr<Storage::Encodings::MFM::Sector> get_sector(uint8_t sector);
|
2016-12-31 04:10:52 +00:00
|
|
|
std::vector<uint8_t> get_track();
|
2017-08-11 14:29:13 +00:00
|
|
|
|
|
|
|
std::map<int, std::shared_ptr<Storage::Encodings::MFM::Sector>> sectors_by_index_;
|
|
|
|
int get_index(uint8_t head, uint8_t track, uint8_t sector);
|
2016-12-26 01:00:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2016-09-18 20:53:21 +00:00
|
|
|
}
|
2016-09-18 17:35:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* MFM_hpp */
|