2018-04-27 23:18:45 -04:00
|
|
|
//
|
|
|
|
// AppleDSK.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 27/04/2018.
|
2018-05-13 15:19:52 -04:00
|
|
|
// Copyright 2018 Thomas Harte. All rights reserved.
|
2018-04-27 23:18:45 -04:00
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef AppleDSK_hpp
|
|
|
|
#define AppleDSK_hpp
|
|
|
|
|
|
|
|
#include "../DiskImage.hpp"
|
|
|
|
#include "../../../FileHolder.hpp"
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace Storage {
|
|
|
|
namespace Disk {
|
|
|
|
|
|
|
|
/*!
|
2018-05-13 15:34:31 -04:00
|
|
|
Provides a @c DiskImage containing an Apple DSK disk image: a representation of sector contents,
|
2018-04-27 23:18:45 -04:00
|
|
|
implicitly numbered and located.
|
|
|
|
*/
|
|
|
|
class AppleDSK: public DiskImage {
|
|
|
|
public:
|
|
|
|
/*!
|
|
|
|
Construct an @c AppleDSK containing content from the file with name @c file_name.
|
|
|
|
|
|
|
|
@throws Storage::FileHolder::Error::CantOpen if this file can't be opened.
|
|
|
|
@throws Error::InvalidFormat if the file doesn't appear to contain a .G64 format image.
|
|
|
|
*/
|
|
|
|
AppleDSK(const std::string &file_name);
|
|
|
|
|
2018-05-25 18:31:20 -04:00
|
|
|
// Implemented to satisfy @c DiskImage.
|
2020-01-23 22:57:51 -05:00
|
|
|
HeadPosition get_maximum_head_position() final;
|
|
|
|
std::shared_ptr<Track> get_track_at_position(Track::Address address) final;
|
|
|
|
void set_tracks(const std::map<Track::Address, std::shared_ptr<Track>> &tracks) final;
|
|
|
|
bool get_is_read_only() final;
|
2018-05-17 21:39:11 -04:00
|
|
|
|
2018-04-27 23:18:45 -04:00
|
|
|
private:
|
|
|
|
Storage::FileHolder file_;
|
2018-04-29 16:18:14 -04:00
|
|
|
int sectors_per_track_ = 16;
|
|
|
|
bool is_prodos_ = false;
|
2018-05-19 22:30:52 -04:00
|
|
|
|
|
|
|
long file_offset(Track::Address address);
|
2018-05-19 22:59:59 -04:00
|
|
|
size_t logical_sector_for_physical_sector(size_t physical);
|
2018-04-27 23:18:45 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* AppleDSK_hpp */
|