2016-09-18 23:21:02 +00:00
|
|
|
//
|
|
|
|
// SSD.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 18/09/2016.
|
2018-05-13 19:19:52 +00:00
|
|
|
// Copyright 2016 Thomas Harte. All rights reserved.
|
2016-09-18 23:21:02 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef SSD_hpp
|
|
|
|
#define SSD_hpp
|
|
|
|
|
2017-10-01 00:30:15 +00:00
|
|
|
#include "MFMSectorDump.hpp"
|
2016-09-18 23:21:02 +00:00
|
|
|
|
|
|
|
namespace Storage {
|
|
|
|
namespace Disk {
|
|
|
|
|
|
|
|
/*!
|
2018-05-13 19:34:31 +00:00
|
|
|
Provides a @c Disk containing a DSD or SSD disk image: a decoded sector dump of an Acorn DFS disk.
|
2016-09-18 23:21:02 +00:00
|
|
|
*/
|
2017-10-01 00:30:15 +00:00
|
|
|
class SSD: public MFMSectorDump {
|
2016-09-18 23:21:02 +00:00
|
|
|
public:
|
|
|
|
/*!
|
2016-09-25 21:46:11 +00:00
|
|
|
Construct an @c SSD containing content from the file with name @c file_name.
|
2016-09-18 23:21:02 +00:00
|
|
|
|
2018-04-28 03:18:45 +00:00
|
|
|
@throws Storage::FileHolder::Error::CantOpen if this file can't be opened.
|
|
|
|
@throws Error::InvalidFormat if the file doesn't appear to contain a .SSD format image.
|
2016-09-18 23:21:02 +00:00
|
|
|
*/
|
2018-04-06 21:42:24 +00:00
|
|
|
SSD(const std::string &file_name);
|
2016-09-18 23:21:02 +00:00
|
|
|
|
2018-05-07 03:17:36 +00:00
|
|
|
HeadPosition get_maximum_head_position() override;
|
2017-10-07 23:37:36 +00:00
|
|
|
int get_head_count() override;
|
2016-09-18 23:21:02 +00:00
|
|
|
|
|
|
|
private:
|
2017-10-07 23:37:36 +00:00
|
|
|
long get_file_offset_for_position(Track::Address address) override;
|
2016-12-30 23:03:30 +00:00
|
|
|
|
2017-10-07 01:45:12 +00:00
|
|
|
int head_count_;
|
|
|
|
int track_count_;
|
2016-09-18 23:21:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* SSD_hpp */
|