diff --git a/Components/AY38910/AY38910.hpp b/Components/AY38910/AY38910.hpp index 0c21c1063..acdc945b7 100644 --- a/Components/AY38910/AY38910.hpp +++ b/Components/AY38910/AY38910.hpp @@ -70,6 +70,7 @@ template class AY38910SampleSource { public: /// Creates a new AY38910. AY38910SampleSource(Personality, Concurrency::AsyncTaskQueue &); + AY38910SampleSource(const AY38910SampleSource &) = delete; /// Sets the value the AY would read from its data lines if it were not outputting. void set_data_input(uint8_t r); diff --git a/Machines/Apple/AppleII/AppleII.cpp b/Machines/Apple/AppleII/AppleII.cpp index 8680d6ce3..4eabdfebd 100644 --- a/Machines/Apple/AppleII/AppleII.cpp +++ b/Machines/Apple/AppleII/AppleII.cpp @@ -60,13 +60,43 @@ constexpr int MockingboardSlot = 4; // Conventional Mockingboard slot. // * ... and hence seven pixels per memory access window clock in high-res mode, 14 in double high-res, etc. constexpr float master_clock = 14318180.0; +class AYPair { + public: + AYPair(Concurrency::AsyncTaskQueue &queue) : + ays_{ + {GI::AY38910::Personality::AY38910, queue}, + {GI::AY38910::Personality::AY38910, queue}, + } {} + + void advance() { + ays_[0].advance(); + ays_[1].advance(); + } + + void set_sample_volume_range(std::int16_t range) { + ays_[0].set_sample_volume_range(range >> 1); + ays_[1].set_sample_volume_range(range >> 1); + } + + bool is_zero_level() const { + return ays_[0].is_zero_level() && ays_[1].is_zero_level(); + } + + Outputs::Speaker::MonoSample level() const { + return ays_[0].level() + ays_[1].level(); + } + + private: + GI::AY38910::AY38910SampleSource ays_[2]; +}; + /// Provides an AY that runs at the CPU rate divided by 4 given an input of the master clock divided by 2, /// allowing for stretched CPU clock cycles. struct StretchedAY: - public GI::AY38910::AY38910SampleSource, + AYPair, public Outputs::Speaker::BufferSource { - using GI::AY38910::AY38910SampleSource::AY38910SampleSource; + using AYPair::AYPair; template void apply_samples(std::size_t number_of_samples, Outputs::Speaker::MonoSample *target) { @@ -550,7 +580,7 @@ template video_bus_handler_(ram_, aux_ram_), video_(video_bus_handler_), audio_toggle_(audio_queue_), - ay_(GI::AY38910::Personality::AY38910, audio_queue_), + ay_(audio_queue_), mixer_(audio_toggle_, ay_), speaker_(lowpass_source()), language_card_(*this),