mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-04 15:05:36 +00:00
66 lines
1.2 KiB
C++
66 lines
1.2 KiB
C++
//
|
|
// TapeUEF.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 18/01/2016.
|
|
// Copyright © 2016 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#ifndef TapeUEF_hpp
|
|
#define TapeUEF_hpp
|
|
|
|
#include "../PulseQueuedTape.hpp"
|
|
#include <zlib.h>
|
|
#include <cstdint>
|
|
#include <vector>
|
|
|
|
namespace Storage {
|
|
namespace Tape {
|
|
|
|
/*!
|
|
Provides a @c Tape containing a UEF tape image, a slightly-convoluted description of pulses.
|
|
*/
|
|
class UEF : public PulseQueuedTape {
|
|
public:
|
|
/*!
|
|
Constructs a @c UEF containing content from the file with name @c file_name.
|
|
|
|
@throws ErrorNotUEF if this file could not be opened and recognised as a valid UEF.
|
|
*/
|
|
UEF(const char *file_name);
|
|
~UEF();
|
|
|
|
enum {
|
|
ErrorNotUEF
|
|
};
|
|
|
|
private:
|
|
void virtual_reset();
|
|
|
|
gzFile file_;
|
|
unsigned int time_base_;
|
|
bool is_300_baud_;
|
|
|
|
void get_next_pulses();
|
|
|
|
void queue_implicit_bit_pattern(uint32_t length);
|
|
void queue_explicit_bit_pattern(uint32_t length);
|
|
|
|
void queue_integer_gap();
|
|
void queue_floating_point_gap();
|
|
|
|
void queue_carrier_tone();
|
|
void queue_carrier_tone_with_dummy();
|
|
|
|
void queue_security_cycles();
|
|
void queue_defined_data(uint32_t length);
|
|
|
|
void queue_bit(int bit);
|
|
void queue_implicit_byte(uint8_t byte);
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
#endif /* TapeUEF_hpp */
|