2016-07-10 14:17:53 +00:00
|
|
|
//
|
|
|
|
// G64.cpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 10/07/2016.
|
|
|
|
// Copyright © 2016 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "G64.hpp"
|
|
|
|
|
2016-07-10 22:36:52 +00:00
|
|
|
#include <vector>
|
|
|
|
#include "../PCMTrack.hpp"
|
2016-07-29 15:03:09 +00:00
|
|
|
#include "../Encodings/CommodoreGCR.hpp"
|
2016-07-10 22:36:52 +00:00
|
|
|
|
2016-08-27 21:18:12 +00:00
|
|
|
using namespace Storage::Disk;
|
2016-07-10 14:17:53 +00:00
|
|
|
|
|
|
|
G64::G64(const char *file_name)
|
|
|
|
{
|
|
|
|
_file = fopen(file_name, "rb");
|
|
|
|
|
|
|
|
if(!_file)
|
2016-08-01 10:04:55 +00:00
|
|
|
throw ErrorCantOpen;
|
2016-07-10 14:17:53 +00:00
|
|
|
|
|
|
|
// read and check the file signature
|
|
|
|
char signature[8];
|
2016-07-10 17:32:59 +00:00
|
|
|
if(fread(signature, 1, 8, _file) != 8)
|
2016-08-01 10:04:55 +00:00
|
|
|
throw ErrorNotG64;
|
2016-07-10 14:17:53 +00:00
|
|
|
|
|
|
|
if(memcmp(signature, "GCR-1541", 8))
|
2016-08-01 10:04:55 +00:00
|
|
|
throw ErrorNotG64;
|
2016-07-10 14:17:53 +00:00
|
|
|
|
|
|
|
// check the version number
|
|
|
|
int version = fgetc(_file);
|
|
|
|
if(version != 0)
|
|
|
|
{
|
|
|
|
throw ErrorUnknownVersion;
|
|
|
|
}
|
|
|
|
|
|
|
|
// get the number of tracks and track size
|
|
|
|
_number_of_tracks = (uint8_t)fgetc(_file);
|
|
|
|
_maximum_track_size = (uint16_t)fgetc(_file);
|
|
|
|
_maximum_track_size |= (uint16_t)fgetc(_file) << 8;
|
|
|
|
}
|
|
|
|
|
|
|
|
G64::~G64()
|
|
|
|
{
|
|
|
|
if(_file) fclose(_file);
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int G64::get_head_position_count()
|
|
|
|
{
|
|
|
|
// give at least 84 tracks, to yield the normal geometry but,
|
|
|
|
// if there are more, shove them in
|
|
|
|
return _number_of_tracks > 84 ? _number_of_tracks : 84;
|
|
|
|
}
|
|
|
|
|
2016-09-18 23:21:02 +00:00
|
|
|
std::shared_ptr<Track> G64::get_track_at_position(unsigned int head, unsigned int position)
|
2016-07-10 14:17:53 +00:00
|
|
|
{
|
|
|
|
std::shared_ptr<Track> resulting_track;
|
|
|
|
|
|
|
|
// if there's definitely no track here, return the empty track
|
|
|
|
// (TODO: should be supplying one with an index hole?)
|
|
|
|
if(position >= _number_of_tracks) return resulting_track;
|
2016-09-18 23:21:02 +00:00
|
|
|
if(head >= 1) return resulting_track;
|
2016-07-10 14:17:53 +00:00
|
|
|
|
|
|
|
// seek to this track's entry in the track table
|
2016-07-10 17:42:45 +00:00
|
|
|
fseek(_file, (long)((position * 4) + 0xc), SEEK_SET);
|
2016-07-10 14:17:53 +00:00
|
|
|
|
|
|
|
// read the track offset
|
|
|
|
uint32_t track_offset;
|
|
|
|
track_offset = (uint32_t)fgetc(_file);
|
|
|
|
track_offset |= (uint32_t)fgetc(_file) << 8;
|
|
|
|
track_offset |= (uint32_t)fgetc(_file) << 16;
|
|
|
|
track_offset |= (uint32_t)fgetc(_file) << 24;
|
|
|
|
|
|
|
|
// if the track offset is zero, this track doesn't exist, so...
|
|
|
|
if(!track_offset) return resulting_track;
|
|
|
|
|
|
|
|
// seek to the track start
|
2016-07-10 17:42:45 +00:00
|
|
|
fseek(_file, (int)track_offset, SEEK_SET);
|
2016-07-10 14:17:53 +00:00
|
|
|
|
|
|
|
// get the real track length
|
|
|
|
uint16_t track_length;
|
|
|
|
track_length = (uint16_t)fgetc(_file);
|
|
|
|
track_length |= (uint16_t)fgetc(_file) << 8;
|
|
|
|
|
|
|
|
// grab the byte contents of this track
|
2016-09-18 22:56:35 +00:00
|
|
|
std::vector<uint8_t> track_contents(track_length);
|
|
|
|
fread(&track_contents[0], 1, track_length, _file);
|
2016-07-10 14:17:53 +00:00
|
|
|
|
2016-07-10 17:42:45 +00:00
|
|
|
// seek to this track's entry in the speed zone table
|
|
|
|
fseek(_file, (long)((position * 4) + 0x15c), SEEK_SET);
|
2016-07-10 14:17:53 +00:00
|
|
|
|
2016-07-10 17:42:45 +00:00
|
|
|
// read the speed zone offsrt
|
|
|
|
uint32_t speed_zone_offset;
|
|
|
|
speed_zone_offset = (uint32_t)fgetc(_file);
|
|
|
|
speed_zone_offset |= (uint32_t)fgetc(_file) << 8;
|
|
|
|
speed_zone_offset |= (uint32_t)fgetc(_file) << 16;
|
|
|
|
speed_zone_offset |= (uint32_t)fgetc(_file) << 24;
|
|
|
|
|
|
|
|
// if the speed zone is not constant, create a track based on the whole table; otherwise create one that's constant
|
|
|
|
if(speed_zone_offset > 3)
|
|
|
|
{
|
|
|
|
// seek to start of speed zone
|
|
|
|
fseek(_file, (int)speed_zone_offset, SEEK_SET);
|
|
|
|
|
|
|
|
uint16_t speed_zone_length = (track_length + 3) >> 2;
|
|
|
|
|
|
|
|
// read the speed zone bytes
|
|
|
|
uint8_t speed_zone_contents[speed_zone_length];
|
|
|
|
fread(speed_zone_contents, 1, speed_zone_length, _file);
|
2016-07-10 20:10:05 +00:00
|
|
|
|
2016-07-10 22:07:53 +00:00
|
|
|
// divide track into appropriately timed PCMSegments
|
|
|
|
std::vector<PCMSegment> segments;
|
|
|
|
unsigned int current_speed = speed_zone_contents[0] >> 6;
|
|
|
|
unsigned int start_byte_in_current_speed = 0;
|
|
|
|
for(unsigned int byte = 0; byte < track_length; byte ++)
|
|
|
|
{
|
2016-07-29 15:03:09 +00:00
|
|
|
unsigned int byte_speed = speed_zone_contents[byte >> 2] >> (6 - (byte&3)*2);
|
2016-07-10 22:07:53 +00:00
|
|
|
if(byte_speed != current_speed || byte == (track_length-1))
|
|
|
|
{
|
|
|
|
unsigned int number_of_bytes = byte - start_byte_in_current_speed;
|
|
|
|
|
|
|
|
PCMSegment segment;
|
2016-07-15 10:51:11 +00:00
|
|
|
segment.number_of_bits = number_of_bytes * 8;
|
2016-07-29 15:03:09 +00:00
|
|
|
segment.length_of_a_bit = Encodings::CommodoreGCR::length_of_a_bit_in_time_zone(current_speed);
|
2016-09-18 22:56:35 +00:00
|
|
|
segment.data.resize(number_of_bytes);
|
|
|
|
memcpy(&segment.data[0], &track_contents[start_byte_in_current_speed], number_of_bytes);
|
2016-07-10 22:07:53 +00:00
|
|
|
segments.push_back(std::move(segment));
|
|
|
|
|
|
|
|
current_speed = byte_speed;
|
|
|
|
start_byte_in_current_speed = byte;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
resulting_track.reset(new PCMTrack(std::move(segments)));
|
2016-07-10 17:42:45 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-07-10 20:10:05 +00:00
|
|
|
PCMSegment segment;
|
2016-07-15 10:51:11 +00:00
|
|
|
segment.number_of_bits = track_length * 8;
|
2016-07-29 15:03:09 +00:00
|
|
|
segment.length_of_a_bit = Encodings::CommodoreGCR::length_of_a_bit_in_time_zone((unsigned int)speed_zone_offset);
|
2016-07-10 20:10:05 +00:00
|
|
|
segment.data = std::move(track_contents);
|
|
|
|
|
|
|
|
resulting_track.reset(new PCMTrack(std::move(segment)));
|
2016-07-10 17:42:45 +00:00
|
|
|
}
|
2016-07-10 14:17:53 +00:00
|
|
|
|
2016-07-10 22:24:12 +00:00
|
|
|
// TODO: find out whether it's possible for a G64 to supply only a partial track. I don't think it is, which would make the
|
|
|
|
// above correct but supposing I'm wrong, the above would produce some incorrectly clocked tracks
|
|
|
|
|
2016-07-10 14:17:53 +00:00
|
|
|
return resulting_track;
|
|
|
|
}
|