2017-07-11 01:43:58 +00:00
|
|
|
//
|
|
|
|
// CSW.cpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 10/07/2017.
|
|
|
|
// Copyright © 2017 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "CSW.hpp"
|
|
|
|
|
|
|
|
using namespace Storage::Tape;
|
|
|
|
|
|
|
|
CSW::CSW(const char *file_name) :
|
2017-11-03 02:32:00 +00:00
|
|
|
file_(file_name),
|
2017-07-13 01:23:59 +00:00
|
|
|
source_data_pointer_(0) {
|
2017-11-03 02:32:00 +00:00
|
|
|
if(file_.stats().st_size < 0x20) throw ErrorNotCSW;
|
2017-07-12 02:41:10 +00:00
|
|
|
|
|
|
|
// Check signature.
|
2017-11-03 02:32:00 +00:00
|
|
|
if(!file_.check_signature("Compressed Square Wave")) {
|
|
|
|
throw ErrorNotCSW;
|
|
|
|
}
|
2017-07-12 02:41:10 +00:00
|
|
|
|
|
|
|
// Check terminating byte.
|
2017-11-03 02:32:00 +00:00
|
|
|
if(file_.get8() != 0x1a) throw ErrorNotCSW;
|
2017-07-12 02:41:10 +00:00
|
|
|
|
|
|
|
// Get version file number.
|
2017-11-03 02:32:00 +00:00
|
|
|
uint8_t major_version = file_.get8();
|
|
|
|
uint8_t minor_version = file_.get8();
|
2017-07-12 02:41:10 +00:00
|
|
|
|
|
|
|
// Reject if this is an unknown version.
|
|
|
|
if(major_version > 2 || !major_version || minor_version > 1) throw ErrorNotCSW;
|
|
|
|
|
|
|
|
// The header now diverges based on version.
|
2017-07-13 01:23:59 +00:00
|
|
|
uint32_t number_of_waves = 0;
|
2017-07-12 02:41:10 +00:00
|
|
|
if(major_version == 1) {
|
2017-11-03 02:32:00 +00:00
|
|
|
pulse_.length.clock_rate = file_.get16le();
|
2017-07-12 02:41:10 +00:00
|
|
|
|
2017-11-03 02:32:00 +00:00
|
|
|
if(file_.get8() != 1) throw ErrorNotCSW;
|
2017-07-12 02:41:10 +00:00
|
|
|
compression_type_ = RLE;
|
|
|
|
|
2017-11-03 02:32:00 +00:00
|
|
|
pulse_.type = (file_.get8() & 1) ? Pulse::High : Pulse::Low;
|
2017-07-12 02:41:10 +00:00
|
|
|
|
2017-11-03 02:32:00 +00:00
|
|
|
file_.seek(0x20, SEEK_SET);
|
2017-07-12 02:41:10 +00:00
|
|
|
} else {
|
2017-11-03 02:32:00 +00:00
|
|
|
pulse_.length.clock_rate = file_.get32le();
|
|
|
|
number_of_waves = file_.get32le();
|
|
|
|
switch(file_.get8()) {
|
2017-07-12 02:41:10 +00:00
|
|
|
case 1: compression_type_ = RLE; break;
|
|
|
|
case 2: compression_type_ = ZRLE; break;
|
|
|
|
default: throw ErrorNotCSW;
|
|
|
|
}
|
|
|
|
|
2017-11-03 02:32:00 +00:00
|
|
|
pulse_.type = (file_.get8() & 1) ? Pulse::High : Pulse::Low;
|
|
|
|
uint8_t extension_length = file_.get8();
|
2017-07-12 02:41:10 +00:00
|
|
|
|
2017-11-03 02:32:00 +00:00
|
|
|
if(file_.stats().st_size < 0x34 + extension_length) throw ErrorNotCSW;
|
|
|
|
file_.seek(0x34 + extension_length, SEEK_SET);
|
2017-07-12 02:41:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(compression_type_ == ZRLE) {
|
2017-07-17 23:04:25 +00:00
|
|
|
// The only clue given by CSW as to the output size in bytes is that there will be
|
|
|
|
// number_of_waves waves. Waves are usually one byte, but may be five. So this code
|
|
|
|
// is pessimistic.
|
2017-10-22 02:30:15 +00:00
|
|
|
source_data_.resize(static_cast<size_t>(number_of_waves) * 5);
|
2017-07-13 01:23:59 +00:00
|
|
|
|
|
|
|
std::vector<uint8_t> file_data;
|
2017-11-03 02:32:00 +00:00
|
|
|
size_t remaining_data = static_cast<size_t>(file_.stats().st_size) - static_cast<size_t>(file_.tell());
|
2017-07-13 01:23:59 +00:00
|
|
|
file_data.resize(remaining_data);
|
2017-11-03 02:32:00 +00:00
|
|
|
file_.read(file_data.data(), remaining_data);
|
2017-07-13 01:23:59 +00:00
|
|
|
|
2017-07-17 23:04:25 +00:00
|
|
|
// uncompress will tell how many compressed bytes there actually were, so use its
|
|
|
|
// modification of output_length to throw away all the memory that isn't actually
|
|
|
|
// needed.
|
2017-10-22 01:50:53 +00:00
|
|
|
uLongf output_length = static_cast<uLongf>(number_of_waves * 5);
|
2017-07-13 01:23:59 +00:00
|
|
|
uncompress(source_data_.data(), &output_length, file_data.data(), file_data.size());
|
2017-10-22 02:30:15 +00:00
|
|
|
source_data_.resize(static_cast<size_t>(output_length));
|
2017-07-13 01:23:59 +00:00
|
|
|
} else {
|
2017-11-03 02:32:00 +00:00
|
|
|
rle_start_ = file_.tell();
|
2017-07-12 02:41:10 +00:00
|
|
|
}
|
2017-07-13 01:23:59 +00:00
|
|
|
|
|
|
|
invert_pulse();
|
2017-07-11 01:43:58 +00:00
|
|
|
}
|
|
|
|
|
2017-07-13 01:23:59 +00:00
|
|
|
uint8_t CSW::get_next_byte() {
|
|
|
|
switch(compression_type_) {
|
2017-11-03 02:32:00 +00:00
|
|
|
case RLE: return file_.get8();
|
2017-07-13 01:23:59 +00:00
|
|
|
case ZRLE: {
|
|
|
|
if(source_data_pointer_ == source_data_.size()) return 0xff;
|
|
|
|
uint8_t result = source_data_[source_data_pointer_];
|
|
|
|
source_data_pointer_++;
|
|
|
|
return result;
|
|
|
|
}
|
2017-07-12 02:41:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-14 00:57:27 +00:00
|
|
|
uint32_t CSW::get_next_int32le() {
|
|
|
|
switch(compression_type_) {
|
2017-11-03 02:32:00 +00:00
|
|
|
case RLE: return file_.get32le();
|
2017-07-14 00:57:27 +00:00
|
|
|
case ZRLE: {
|
|
|
|
if(source_data_pointer_ > source_data_.size() - 4) return 0xffff;
|
|
|
|
uint32_t result = (uint32_t)(
|
|
|
|
(source_data_[source_data_pointer_ + 0] << 0) |
|
|
|
|
(source_data_[source_data_pointer_ + 1] << 8) |
|
|
|
|
(source_data_[source_data_pointer_ + 2] << 16) |
|
|
|
|
(source_data_[source_data_pointer_ + 3] << 24));
|
|
|
|
source_data_pointer_ += 4;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-13 01:23:59 +00:00
|
|
|
void CSW::invert_pulse() {
|
|
|
|
pulse_.type = (pulse_.type == Pulse::High) ? Pulse::Low : Pulse::High;
|
|
|
|
}
|
2017-07-12 02:41:10 +00:00
|
|
|
|
2017-07-11 01:43:58 +00:00
|
|
|
bool CSW::is_at_end() {
|
2017-07-13 01:23:59 +00:00
|
|
|
switch(compression_type_) {
|
2017-11-03 02:32:00 +00:00
|
|
|
case RLE: return file_.eof();
|
2017-07-13 01:23:59 +00:00
|
|
|
case ZRLE: return source_data_pointer_ == source_data_.size();
|
|
|
|
}
|
2017-07-11 01:43:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CSW::virtual_reset() {
|
2017-07-13 01:23:59 +00:00
|
|
|
switch(compression_type_) {
|
2017-11-03 02:32:00 +00:00
|
|
|
case RLE: file_.seek(rle_start_, SEEK_SET); break;
|
2017-07-13 01:23:59 +00:00
|
|
|
case ZRLE: source_data_pointer_ = 0; break;
|
|
|
|
}
|
2017-07-11 01:43:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Tape::Pulse CSW::virtual_get_next_pulse() {
|
2017-07-13 01:23:59 +00:00
|
|
|
invert_pulse();
|
|
|
|
pulse_.length.length = get_next_byte();
|
2017-07-14 00:57:27 +00:00
|
|
|
if(!pulse_.length.length) pulse_.length.length = get_next_int32le();
|
2017-07-13 01:23:59 +00:00
|
|
|
return pulse_;
|
2017-07-11 01:43:58 +00:00
|
|
|
}
|