2017-06-04 20:37:03 +00:00
|
|
|
//
|
|
|
|
// ZX80O.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 04/06/2017.
|
2018-05-13 19:19:52 +00:00
|
|
|
// Copyright 2017 Thomas Harte. All rights reserved.
|
2017-06-04 20:37:03 +00:00
|
|
|
//
|
|
|
|
|
2024-01-17 04:34:46 +00:00
|
|
|
#pragma once
|
2017-06-04 20:37:03 +00:00
|
|
|
|
|
|
|
#include "../Tape.hpp"
|
2017-08-27 19:43:09 +00:00
|
|
|
|
2017-06-04 20:37:03 +00:00
|
|
|
#include "../../FileHolder.hpp"
|
2017-08-27 19:19:03 +00:00
|
|
|
#include "../../TargetPlatforms.hpp"
|
2017-06-12 01:35:09 +00:00
|
|
|
|
2017-06-04 20:37:03 +00:00
|
|
|
#include <cstdint>
|
2018-04-06 21:42:24 +00:00
|
|
|
#include <string>
|
2017-06-12 01:35:09 +00:00
|
|
|
#include <vector>
|
2017-06-04 20:37:03 +00:00
|
|
|
|
2023-05-10 21:02:18 +00:00
|
|
|
namespace Storage::Tape {
|
2017-06-04 20:37:03 +00:00
|
|
|
|
|
|
|
/*!
|
|
|
|
Provides a @c Tape containing a ZX80-format .O tape image, which is a byte stream capture.
|
|
|
|
*/
|
2017-11-03 02:32:00 +00:00
|
|
|
class ZX80O81P: public Tape, public TargetPlatform::TypeDistinguisher {
|
2024-12-02 02:44:14 +00:00
|
|
|
public:
|
|
|
|
/*!
|
|
|
|
Constructs a @c ZX80O containing content from the file with name @c file_name.
|
|
|
|
|
|
|
|
@throws ErrorNotZX80O81P if this file could not be opened and recognised as a valid ZX80-format .O.
|
|
|
|
*/
|
|
|
|
ZX80O81P(const std::string &file_name);
|
|
|
|
|
|
|
|
enum {
|
|
|
|
ErrorNotZX80O81P
|
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
2024-12-04 03:28:57 +00:00
|
|
|
// TargetPlatform::TypeDistinguisher.
|
2024-12-03 22:33:09 +00:00
|
|
|
TargetPlatform::Type target_platform_type() override;
|
2024-12-02 02:44:14 +00:00
|
|
|
|
2024-12-04 03:28:57 +00:00
|
|
|
struct Serialiser: public TapeSerialiser {
|
|
|
|
Serialiser(const std::string &file_name);
|
|
|
|
TargetPlatform::Type target_platform_type();
|
|
|
|
|
|
|
|
private:
|
|
|
|
bool is_at_end() const override;
|
|
|
|
void reset() override;
|
2024-12-04 03:54:29 +00:00
|
|
|
Pulse next_pulse() override;
|
2024-12-04 03:28:57 +00:00
|
|
|
bool has_finished_data() const;
|
|
|
|
|
|
|
|
TargetPlatform::Type platform_type_;
|
2024-12-02 02:44:14 +00:00
|
|
|
|
2024-12-04 03:28:57 +00:00
|
|
|
uint8_t byte_;
|
|
|
|
int bit_pointer_;
|
|
|
|
int wave_pointer_;
|
|
|
|
bool is_past_silence_, has_ended_final_byte_;
|
|
|
|
bool is_high_;
|
2024-12-02 02:44:14 +00:00
|
|
|
|
2024-12-04 03:28:57 +00:00
|
|
|
std::vector<uint8_t> data_;
|
|
|
|
std::size_t data_pointer_;
|
|
|
|
} serialiser_;
|
2017-06-04 20:37:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|