// // G64.hpp // Clock Signal // // Created by Thomas Harte on 10/07/2016. // Copyright © 2016 Thomas Harte. All rights reserved. // #ifndef G64_hpp #define G64_hpp #include "../Disk.hpp" namespace Storage { namespace Disk { /*! Provies a @c Disk containing a G64 disk image — a raw but perfectly-clocked GCR stream. */ class G64: public Disk { public: /*! Construct a @c G64 containing content from the file with name @c file_name. @throws ErrorCantOpen if this file can't be opened. @throws ErrorNotG64 if the file doesn't appear to contain a .G64 format image. @throws ErrorUnknownVersion if this file appears to be a .G64 but has an unrecognised version number. */ G64(const char *file_name); ~G64(); enum { ErrorCantOpen, ErrorNotG64, ErrorUnknownVersion }; // implemented to satisfy @c Disk unsigned int get_head_position_count(); std::shared_ptr get_track_at_position(unsigned int position); private: FILE *_file; uint8_t _number_of_tracks; uint16_t _maximum_track_size; }; } } #endif /* G64_hpp */