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
|
|
|
|
|
|
|
|
#include "../Disk.hpp"
|
|
|
|
|
|
|
|
namespace Storage {
|
|
|
|
namespace Disk {
|
|
|
|
|
|
|
|
/*!
|
|
|
|
Provies a @c Disk containing a DSD or SSD disk image — a decoded sector dump of an Acorn DFS disk.
|
|
|
|
*/
|
|
|
|
class SSD: public Disk {
|
|
|
|
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);
|
|
|
|
~SSD();
|
|
|
|
|
|
|
|
enum {
|
|
|
|
ErrorCantOpen,
|
|
|
|
ErrorNotSSD,
|
|
|
|
};
|
|
|
|
|
|
|
|
// implemented to satisfy @c Disk
|
|
|
|
unsigned int get_head_position_count();
|
|
|
|
unsigned int get_head_count();
|
|
|
|
std::shared_ptr<Track> get_track_at_position(unsigned int head, unsigned int position);
|
|
|
|
|
|
|
|
private:
|
|
|
|
FILE *_file;
|
2016-09-18 23:32:08 +00:00
|
|
|
unsigned int _head_count;
|
|
|
|
unsigned int _track_count;
|
2016-09-18 23:21:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* SSD_hpp */
|