2017-09-30 20:30:15 -04:00
|
|
|
//
|
|
|
|
// MFMSectorDump.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 30/09/2017.
|
|
|
|
// Copyright © 2017 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef SectorDump_hpp
|
|
|
|
#define SectorDump_hpp
|
|
|
|
|
|
|
|
#include "../DiskImage.hpp"
|
|
|
|
#include "../../../FileHolder.hpp"
|
|
|
|
|
|
|
|
namespace Storage {
|
|
|
|
namespace Disk {
|
|
|
|
|
|
|
|
/*!
|
|
|
|
Provies the base for writeable [M]FM disk images that just contain contiguous sector content dumps.
|
|
|
|
*/
|
|
|
|
class MFMSectorDump: public DiskImage, public Storage::FileHolder {
|
|
|
|
public:
|
|
|
|
MFMSectorDump(const char *file_name);
|
|
|
|
void set_geometry(int sectors_per_track, uint8_t sector_size, bool is_double_density);
|
|
|
|
|
2017-10-03 19:36:06 -04:00
|
|
|
using Storage::FileHolder::get_is_read_only;
|
2017-10-07 19:37:36 -04:00
|
|
|
void set_tracks(const std::map<Track::Address, std::shared_ptr<Track>> &tracks) override;
|
|
|
|
std::shared_ptr<Track> get_track_at_position(Track::Address address) override;
|
2017-09-30 20:30:15 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
std::mutex file_access_mutex_;
|
2017-10-06 21:45:12 -04:00
|
|
|
virtual long get_file_offset_for_position(Track::Address address) = 0;
|
2017-09-30 20:30:15 -04:00
|
|
|
|
|
|
|
int sectors_per_track_ = 0;
|
|
|
|
uint8_t sector_size_ = 0;
|
|
|
|
bool is_double_density_ = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* SectorDump_hpp */
|