mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-02 16:04:59 +00:00
57 lines
1.1 KiB
C++
57 lines
1.1 KiB
C++
//
|
|
// Oric.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 06/11/2016.
|
|
// Copyright © 2016 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#ifndef Storage_Tape_Parsers_Oric_hpp
|
|
#define Storage_Tape_Parsers_Oric_hpp
|
|
|
|
#include "TapeParser.hpp"
|
|
|
|
namespace Storage {
|
|
namespace Tape {
|
|
namespace Oric {
|
|
|
|
enum class WaveType {
|
|
Short, Long, Unrecognised
|
|
};
|
|
|
|
enum class SymbolType {
|
|
One, Zero, FoundFast, FoundSlow
|
|
};
|
|
|
|
class Parser: public Storage::Tape::Parser<WaveType, SymbolType> {
|
|
public:
|
|
int get_next_byte(const std::shared_ptr<Storage::Tape::Tape> &tape, bool use_fast_encoding);
|
|
bool sync_and_get_encoding_speed(const std::shared_ptr<Storage::Tape::Tape> &tape);
|
|
|
|
private:
|
|
void process_pulse(Storage::Tape::Tape::Pulse pulse);
|
|
void inspect_waves(const std::vector<WaveType> &waves);
|
|
|
|
enum DetectionMode {
|
|
FastData,
|
|
SlowData,
|
|
Sync
|
|
} _detection_mode;
|
|
bool _wave_was_high;
|
|
float _cycle_length;
|
|
|
|
struct Pattern
|
|
{
|
|
WaveType type;
|
|
int count;
|
|
};
|
|
size_t pattern_matching_depth(const std::vector<WaveType> &waves, Pattern *pattern);
|
|
};
|
|
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif /* Oric_hpp */
|