2016-09-18 19:21:02 -04:00
|
|
|
//
|
|
|
|
// SSD.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 18/09/2016.
|
2018-05-13 15:19:52 -04:00
|
|
|
// Copyright 2016 Thomas Harte. All rights reserved.
|
2016-09-18 19:21:02 -04:00
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef SSD_hpp
|
|
|
|
#define SSD_hpp
|
|
|
|
|
2017-09-30 20:30:15 -04:00
|
|
|
#include "MFMSectorDump.hpp"
|
2016-09-18 19:21:02 -04:00
|
|
|
|
|
|
|
namespace Storage {
|
|
|
|
namespace Disk {
|
|
|
|
|
|
|
|
/*!
|
2018-05-13 15:34:31 -04:00
|
|
|
Provides a @c Disk containing a DSD or SSD disk image: a decoded sector dump of an Acorn DFS disk.
|
2016-09-18 19:21:02 -04:00
|
|
|
*/
|
2017-09-30 20:30:15 -04:00
|
|
|
class SSD: public MFMSectorDump {
|
2016-09-18 19:21:02 -04:00
|
|
|
public:
|
|
|
|
/*!
|
2016-09-25 17:46:11 -04:00
|
|
|
Construct an @c SSD containing content from the file with name @c file_name.
|
2016-09-18 19:21:02 -04:00
|
|
|
|
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 a .SSD format image.
|
2016-09-18 19:21:02 -04:00
|
|
|
*/
|
2018-04-06 17:42:24 -04:00
|
|
|
SSD(const std::string &file_name);
|
2016-09-18 19:21:02 -04:00
|
|
|
|
2020-01-23 22:57:51 -05:00
|
|
|
HeadPosition get_maximum_head_position() final;
|
|
|
|
int get_head_count() final;
|
2016-09-18 19:21:02 -04:00
|
|
|
|
|
|
|
private:
|
2020-01-23 22:57:51 -05:00
|
|
|
long get_file_offset_for_position(Track::Address address) final;
|
2016-12-30 18:03:30 -05:00
|
|
|
|
2017-10-06 21:45:12 -04:00
|
|
|
int head_count_;
|
|
|
|
int track_count_;
|
2016-09-18 19:21:02 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* SSD_hpp */
|