1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-12-12 08:30:05 +00:00
CLK/Storage/Tape/PulseQueuedTape.cpp

62 lines
1.3 KiB
C++
Raw Normal View History

//
// PulseQueuedTape.cpp
// Clock Signal
//
// Created by Thomas Harte on 16/07/2017.
// Copyright 2017 Thomas Harte. All rights reserved.
//
#include "PulseQueuedTape.hpp"
using namespace Storage::Tape;
PulseQueuedTape::PulseQueuedTape() : pulse_pointer_(0), is_at_end_(false) {}
2024-12-03 22:33:09 +00:00
bool PulseQueuedTape::is_at_end() const {
return is_at_end_;
}
2024-12-03 22:33:09 +00:00
void PulseQueuedTape::set_is_at_end(const bool is_at_end) {
is_at_end_ = is_at_end;
}
void PulseQueuedTape::clear() {
queued_pulses_.clear();
pulse_pointer_ = 0;
}
2024-12-03 22:33:09 +00:00
bool PulseQueuedTape::empty() const {
return queued_pulses_.empty();
}
2024-12-03 22:33:09 +00:00
void PulseQueuedTape::emplace_back(const Tape::Pulse::Type type, const Time length) {
queued_pulses_.emplace_back(type, length);
}
2024-12-03 22:33:09 +00:00
void PulseQueuedTape::push_back(const Tape::Pulse pulse) {
queued_pulses_.push_back(pulse);
}
Tape::Pulse PulseQueuedTape::virtual_get_next_pulse() {
2024-12-03 22:33:09 +00:00
const auto silence = [] {
return Tape::Pulse(Tape::Pulse::Type::Zero, Storage::Time(1, 1));
};
if(is_at_end_) {
return silence();
}
if(pulse_pointer_ == queued_pulses_.size()) {
clear();
get_next_pulses();
if(is_at_end_ || pulse_pointer_ == queued_pulses_.size()) {
return silence();
}
}
2024-12-03 22:33:09 +00:00
const std::size_t read_pointer = pulse_pointer_;
pulse_pointer_++;
return queued_pulses_[read_pointer];
}