mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-03 08:05:40 +00:00
e384c50580
Thereby opens a route for file format implementations such as that appearing for CPC DSK that create an in-memory copy and perform a full rewrite.
65 lines
1.3 KiB
C++
65 lines
1.3 KiB
C++
//
|
|
// ZX80O.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 04/06/2017.
|
|
// Copyright © 2017 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#ifndef ZX80O81P_hpp
|
|
#define ZX80O81P_hpp
|
|
|
|
#include "../Tape.hpp"
|
|
|
|
#include "../../FileHolder.hpp"
|
|
#include "../../TargetPlatforms.hpp"
|
|
|
|
#include <cstdint>
|
|
#include <vector>
|
|
|
|
namespace Storage {
|
|
namespace Tape {
|
|
|
|
/*!
|
|
Provides a @c Tape containing a ZX80-format .O tape image, which is a byte stream capture.
|
|
*/
|
|
class ZX80O81P: public Tape, public TargetPlatform::TypeDistinguisher {
|
|
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 char *file_name);
|
|
|
|
enum {
|
|
ErrorNotZX80O81P
|
|
};
|
|
|
|
private:
|
|
// implemented to satisfy @c Tape
|
|
bool is_at_end();
|
|
|
|
// implemented to satisfy TargetPlatform::TypeDistinguisher
|
|
TargetPlatform::Type target_platform_type();
|
|
TargetPlatform::Type platform_type_;
|
|
|
|
void virtual_reset();
|
|
Pulse virtual_get_next_pulse();
|
|
bool has_finished_data();
|
|
|
|
uint8_t byte_;
|
|
int bit_pointer_;
|
|
int wave_pointer_;
|
|
bool is_past_silence_, has_ended_final_byte_;
|
|
bool is_high_;
|
|
|
|
std::vector<uint8_t> data_;
|
|
size_t data_pointer_;
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
#endif /* ZX80O_hpp */
|