1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-04-06 10:38:16 +00:00

Opportunistically const.

This commit is contained in:
Thomas Harte 2024-12-03 22:57:38 -05:00
parent b89ecadc3a
commit f804c32eee
3 changed files with 18 additions and 13 deletions

View File

@ -94,9 +94,9 @@ CSW::Serialiser::Serialiser(const std::string &file_name) : source_data_pointer_
CSW::Serialiser::Serialiser(
const std::vector<uint8_t> &&data,
CompressionType compression_type,
bool initial_level,
uint32_t sampling_rate
const CompressionType compression_type,
const bool initial_level,
const uint32_t sampling_rate
) : compression_type_(compression_type) {
pulse_.length.clock_rate = sampling_rate;
pulse_.type = initial_level ? Pulse::High : Pulse::Low;

View File

@ -113,7 +113,12 @@ void TZX::Serialiser::get_csw_recording_block() {
std::vector<uint8_t> raw_block = file_.read(block_length - 10);
CSW csw(std::move(raw_block), (compression_type == 2) ? CSW::CompressionType::ZRLE : CSW::CompressionType::RLE, current_level_, sampling_rate);
CSW csw(
std::move(raw_block),
(compression_type == 2) ? CSW::CompressionType::ZRLE : CSW::CompressionType::RLE,
current_level_,
sampling_rate
);
while(!csw.is_at_end()) {
Pulse next_pulse = csw.next_pulse();
current_level_ = (next_pulse.type == Pulse::High);
@ -146,10 +151,10 @@ void TZX::Serialiser::get_generalised_data_block() {
}
void TZX::Serialiser::get_generalised_segment(
uint32_t output_symbols,
uint8_t max_pulses_per_symbol,
uint8_t number_of_symbols,
bool is_data
const uint32_t output_symbols,
const uint8_t max_pulses_per_symbol,
const uint8_t number_of_symbols,
const bool is_data
) {
if(!output_symbols) return;
@ -402,15 +407,15 @@ void TZX::Serialiser::get_kansas_city_block() {
// MARK: - Output
void TZX::Serialiser::post_pulses(unsigned int count, unsigned int length) {
void TZX::Serialiser::post_pulses(unsigned int count, const unsigned int length) {
while(count--) post_pulse(length);
}
void TZX::Serialiser::post_pulse(unsigned int length) {
void TZX::Serialiser::post_pulse(const unsigned int length) {
post_pulse(Storage::Time(length, StandardTZXClock));
}
void TZX::Serialiser::post_gap(unsigned int milliseconds) {
void TZX::Serialiser::post_gap(const unsigned int milliseconds) {
if(!milliseconds) return;
if(milliseconds > 1 && !current_level_) {
post_pulse(Storage::Time(TZXClockMSMultiplier, StandardTZXClock));

View File

@ -178,7 +178,7 @@ void UEF::Serialiser::queue_implicit_bit_pattern(uint32_t length) {
}
}
void UEF::Serialiser::queue_explicit_bit_pattern(uint32_t length) {
void UEF::Serialiser::queue_explicit_bit_pattern(const uint32_t length) {
const std::size_t length_in_bits = (length << 3) - size_t(gzget8(file_));
uint8_t current_byte = 0;
for(std::size_t bit = 0; bit < length_in_bits; bit++) {
@ -298,7 +298,7 @@ void UEF::Serialiser::queue_implicit_byte(uint8_t byte) {
queue_bit(1);
}
void UEF::Serialiser::queue_bit(int bit) {
void UEF::Serialiser::queue_bit(const int bit) {
int number_of_cycles;
Time duration;
duration.clock_rate = time_base_ * 4;