2018-01-07 21:35:57 +00:00
|
|
|
//
|
|
|
|
// MSXDSK.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 07/01/2018.
|
|
|
|
// Copyright © 2018 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef MSXDSK_hpp
|
|
|
|
#define MSXDSK_hpp
|
|
|
|
|
|
|
|
#include "MFMSectorDump.hpp"
|
|
|
|
|
2018-04-06 21:42:24 +00:00
|
|
|
#include <string>
|
|
|
|
|
2018-01-07 21:35:57 +00:00
|
|
|
namespace Storage {
|
|
|
|
namespace Disk {
|
|
|
|
|
|
|
|
/*!
|
2018-04-22 04:21:57 +00:00
|
|
|
Provides a @c DiskImage descriging an MSX-style disk image:
|
2018-01-07 21:35:57 +00:00
|
|
|
a sector dump of appropriate proportions.
|
|
|
|
*/
|
|
|
|
class MSXDSK: public MFMSectorDump {
|
|
|
|
public:
|
2018-04-06 21:42:24 +00:00
|
|
|
MSXDSK(const std::string &file_name);
|
2018-01-07 21:35:57 +00:00
|
|
|
int get_head_position_count() override;
|
|
|
|
int get_head_count() override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
long get_file_offset_for_position(Track::Address address) override;
|
|
|
|
|
|
|
|
int head_count_;
|
|
|
|
int track_count_;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* MSXDSK_hpp */
|