2016-09-18 23:21:02 +00:00
|
|
|
//
|
|
|
|
// SSD.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 18/09/2016.
|
|
|
|
// Copyright © 2016 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#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 {
|
|
|
|
|
|
|
|
/*!
|
|
|
|
Provies a @c Disk containing a DSD or SSD disk image — a decoded sector dump of an Acorn DFS disk.
|
|
|
|
*/
|
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
|
|
|
|
|
|
|
@throws ErrorCantOpen if this file can't be opened.
|
2016-09-25 21:46:11 +00:00
|
|
|
@throws ErrorNotSSD if the file doesn't appear to contain a .SSD format image.
|
2016-09-18 23:21:02 +00:00
|
|
|
*/
|
|
|
|
SSD(const char *file_name);
|
|
|
|
|
|
|
|
enum {
|
|
|
|
ErrorNotSSD,
|
|
|
|
};
|
|
|
|
|
2017-10-07 01:45:12 +00:00
|
|
|
int get_head_position_count();
|
|
|
|
int get_head_count();
|
2016-09-18 23:21:02 +00:00
|
|
|
|
|
|
|
private:
|
2017-10-07 01:45:12 +00:00
|
|
|
long get_file_offset_for_position(Track::Address address);
|
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 */
|