2017-09-25 02:41:16 +00:00
|
|
|
//
|
|
|
|
// SegmentParser.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 24/09/2017.
|
2018-05-13 19:19:52 +00:00
|
|
|
// Copyright 2017 Thomas Harte. All rights reserved.
|
2017-09-25 02:41:16 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef SegmentParser_hpp
|
|
|
|
#define SegmentParser_hpp
|
|
|
|
|
|
|
|
#include "Sector.hpp"
|
|
|
|
#include "../../Track/PCMSegment.hpp"
|
|
|
|
#include <map>
|
|
|
|
|
|
|
|
namespace Storage {
|
|
|
|
namespace Encodings {
|
|
|
|
namespace MFM {
|
|
|
|
|
2017-09-25 23:57:11 +00:00
|
|
|
/*!
|
|
|
|
Scans @c segment for all included sectors, returning a set that maps from location within
|
2018-05-05 03:11:12 +00:00
|
|
|
the segment (counted in bits from the beginning and pointing to the location the disk
|
|
|
|
had reached upon detection of the ID mark) to sector.
|
2017-09-25 23:57:11 +00:00
|
|
|
*/
|
2017-11-11 20:28:40 +00:00
|
|
|
std::map<std::size_t, Sector> sectors_from_segment(const Disk::PCMSegment &&segment, bool is_double_density);
|
2017-09-25 02:41:16 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* SegmentParser_hpp */
|