2017-08-05 10:02:10 -04:00
|
|
|
//
|
|
|
|
// CPCDSK.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 05/08/2017.
|
2018-05-13 15:19:52 -04:00
|
|
|
// Copyright 2017 Thomas Harte. All rights reserved.
|
2017-08-05 10:02:10 -04:00
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef CPCDSK_hpp
|
|
|
|
#define CPCDSK_hpp
|
|
|
|
|
2017-09-22 20:28:11 -04:00
|
|
|
#include "../DiskImage.hpp"
|
2017-09-22 22:39:23 -04:00
|
|
|
#include "../../../FileHolder.hpp"
|
2017-10-31 21:32:28 -04:00
|
|
|
#include "../../Encodings/MFM/Sector.hpp"
|
2017-08-05 10:02:10 -04:00
|
|
|
|
2018-04-06 17:42:24 -04:00
|
|
|
#include <string>
|
2017-08-05 11:44:53 -04:00
|
|
|
#include <vector>
|
|
|
|
|
2017-08-05 10:02:10 -04:00
|
|
|
namespace Storage {
|
|
|
|
namespace Disk {
|
|
|
|
|
|
|
|
/*!
|
2018-05-13 15:34:31 -04:00
|
|
|
Provides a @c Disk containing an Amstrad CPC-type disk image: some arrangement of sectors with status bits.
|
2017-08-05 10:02:10 -04:00
|
|
|
*/
|
2017-11-02 22:32:00 -04:00
|
|
|
class CPCDSK: public DiskImage {
|
2017-08-05 10:02:10 -04:00
|
|
|
public:
|
|
|
|
/*!
|
|
|
|
Construct an @c AcornADF containing content from the file with name @c file_name.
|
|
|
|
|
2018-04-27 23:18:45 -04:00
|
|
|
@throws Storage::FileHolder::Error::CantOpen if this file can't be opened.
|
|
|
|
@throws Error::InvalidFormat if the file doesn't appear to contain an Acorn .ADF format image.
|
2017-08-05 10:02:10 -04:00
|
|
|
*/
|
2018-04-06 17:42:24 -04:00
|
|
|
CPCDSK(const std::string &file_name);
|
2017-08-05 10:02:10 -04:00
|
|
|
|
|
|
|
// implemented to satisfy @c Disk
|
2018-05-06 23:17:36 -04:00
|
|
|
HeadPosition get_maximum_head_position() override;
|
2017-10-07 19:37:36 -04:00
|
|
|
int get_head_count() override;
|
2017-11-02 22:32:00 -04:00
|
|
|
bool get_is_read_only() override;
|
|
|
|
|
|
|
|
void set_tracks(const std::map<Track::Address, std::shared_ptr<Track>> &tracks) override;
|
2017-10-31 19:41:16 -04:00
|
|
|
std::shared_ptr<::Storage::Disk::Track> get_track_at_position(::Storage::Disk::Track::Address address) override;
|
2017-08-05 10:02:10 -04:00
|
|
|
|
|
|
|
private:
|
2017-10-31 19:41:16 -04:00
|
|
|
struct Track {
|
|
|
|
uint8_t track;
|
|
|
|
uint8_t side;
|
|
|
|
enum class DataRate {
|
|
|
|
Unknown, SingleOrDoubleDensity, HighDensity, ExtendedDensity
|
|
|
|
} data_rate;
|
|
|
|
enum class DataEncoding {
|
|
|
|
Unknown, FM, MFM
|
|
|
|
} data_encoding;
|
|
|
|
uint8_t sector_length;
|
|
|
|
uint8_t gap3_length;
|
|
|
|
uint8_t filler_byte;
|
|
|
|
|
2017-10-31 21:32:28 -04:00
|
|
|
struct Sector: public ::Storage::Encodings::MFM::Sector {
|
2017-10-31 19:41:16 -04:00
|
|
|
uint8_t fdc_status1;
|
|
|
|
uint8_t fdc_status2;
|
|
|
|
};
|
|
|
|
|
|
|
|
std::vector<Sector> sectors;
|
|
|
|
};
|
2017-11-03 21:10:22 -04:00
|
|
|
std::string file_name_;
|
2017-10-31 19:41:16 -04:00
|
|
|
std::vector<std::unique_ptr<Track>> tracks_;
|
2017-11-11 15:28:40 -05:00
|
|
|
std::size_t index_for_track(::Storage::Disk::Track::Address address);
|
2017-10-31 19:41:16 -04:00
|
|
|
|
2017-10-06 21:45:12 -04:00
|
|
|
int head_count_;
|
|
|
|
int head_position_count_;
|
2017-08-05 10:02:10 -04:00
|
|
|
bool is_extended_;
|
2017-11-02 22:32:00 -04:00
|
|
|
bool is_read_only_;
|
2017-08-05 10:02:10 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* CPCDSK_hpp */
|