2016-12-03 17:41:02 +00:00
|
|
|
//
|
|
|
|
// Speaker.cpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 03/12/2016.
|
2018-05-13 19:19:52 +00:00
|
|
|
// Copyright 2016 Thomas Harte. All rights reserved.
|
2016-12-03 17:41:02 +00:00
|
|
|
//
|
|
|
|
|
2017-12-18 02:26:06 +00:00
|
|
|
#include "SoundGenerator.hpp"
|
2016-12-03 17:41:02 +00:00
|
|
|
|
2017-12-19 02:47:30 +00:00
|
|
|
#include <cstring>
|
|
|
|
|
2016-12-03 17:41:02 +00:00
|
|
|
using namespace Electron;
|
|
|
|
|
2017-12-18 02:26:06 +00:00
|
|
|
SoundGenerator::SoundGenerator(Concurrency::DeferringAsyncTaskQueue &audio_queue) :
|
|
|
|
audio_queue_(audio_queue) {}
|
|
|
|
|
2018-03-09 18:23:18 +00:00
|
|
|
void SoundGenerator::set_sample_volume_range(std::int16_t range) {
|
|
|
|
volume_ = static_cast<unsigned int>(range / 2);
|
|
|
|
}
|
|
|
|
|
2017-12-18 02:26:06 +00:00
|
|
|
void SoundGenerator::get_samples(std::size_t number_of_samples, int16_t *target) {
|
2017-03-26 18:34:47 +00:00
|
|
|
if(is_enabled_) {
|
|
|
|
while(number_of_samples--) {
|
2018-03-09 18:23:18 +00:00
|
|
|
*target = static_cast<int16_t>((counter_ / (divider_+1)) * volume_);
|
2016-12-03 17:41:02 +00:00
|
|
|
target++;
|
|
|
|
counter_ = (counter_ + 1) % ((divider_+1) * 2);
|
|
|
|
}
|
2017-03-26 18:34:47 +00:00
|
|
|
} else {
|
2017-12-19 02:47:30 +00:00
|
|
|
std::memset(target, 0, sizeof(int16_t) * number_of_samples);
|
2016-12-03 17:41:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-18 02:26:06 +00:00
|
|
|
void SoundGenerator::skip_samples(std::size_t number_of_samples) {
|
2016-12-03 17:41:02 +00:00
|
|
|
counter_ = (counter_ + number_of_samples) % ((divider_+1) * 2);
|
|
|
|
}
|
|
|
|
|
2017-12-18 02:26:06 +00:00
|
|
|
void SoundGenerator::set_divider(uint8_t divider) {
|
|
|
|
audio_queue_.defer([=]() {
|
2016-12-03 17:41:02 +00:00
|
|
|
divider_ = divider * 32 / clock_rate_divider;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-12-18 02:26:06 +00:00
|
|
|
void SoundGenerator::set_is_enabled(bool is_enabled) {
|
|
|
|
audio_queue_.defer([=]() {
|
2016-12-03 17:41:02 +00:00
|
|
|
is_enabled_ = is_enabled;
|
|
|
|
counter_ = 0;
|
|
|
|
});
|
|
|
|
}
|