rawdio 0.14.0

An Audio Engine, inspired by the Web Audio API
Documentation
use super::envelope_notification::{EnvelopeNotification, EnvelopeNotificationReceiver};
use super::envelope_processor::EnvelopeProcessor;
use crate::commands::Id;
use crate::engine::NotifierStatus;
use crate::graph::DspParameters;
use crate::{effects::Channel, prelude::*};
use std::{cell::RefCell, rc::Rc, time::Duration};

/// A node that tracks the input signal and outputs the envelope
///
/// This can be used to create an audio meter, for example
///
/// Call `take_notifications()` to get the output values from the envelope
pub struct Envelope {
    /// The node to connect to the audio graph
    pub node: GraphNode,
    notifications: Vec<EnvelopeNotification>,
    notification_receiver: EnvelopeNotificationReceiver,
}

static NOTIFICATION_CHANNEL_CAPACITY: usize = 64;

impl Envelope {
    /// Create a new node with the given attack and release times
    pub fn new(
        context: &mut dyn Context,
        channel_count: usize,
        attack_time: Duration,
        release_time: Duration,
        notification_frequency: f64,
    ) -> Rc<RefCell<Self>> {
        let id = Id::generate();

        let (notification_transmitter, notification_receiver) =
            Channel::bounded(NOTIFICATION_CHANNEL_CAPACITY);

        let processor = Box::new(EnvelopeProcessor::new(
            context.get_sample_rate(),
            channel_count,
            attack_time,
            release_time,
            notification_frequency,
            notification_transmitter,
        ));

        let node = GraphNode::new(
            id,
            context,
            channel_count,
            channel_count,
            processor,
            DspParameters::empty(),
        );

        let envelope_node = Rc::new(RefCell::new(Envelope {
            node,
            notifications: Vec::new(),
            notification_receiver,
        }));

        let weak_envelope = Rc::downgrade(&envelope_node);

        context.add_notifier(Box::new(move || {
            if let Some(envelope) = weak_envelope.upgrade() {
                envelope.borrow_mut().process_notifications();
                return NotifierStatus::Continue;
            }

            NotifierStatus::Remove
        }));

        envelope_node
    }

    fn process_notifications(&mut self) {
        while let Ok(notification) = self.notification_receiver.try_recv() {
            self.notifications.push(notification);
        }
    }

    /// Get the values from the envelope since the last time
    /// `take_notifications()` was called
    pub fn take_notifications(&mut self) -> Vec<EnvelopeNotification> {
        let mut notifications = Vec::new();
        std::mem::swap(&mut notifications, &mut self.notifications);
        notifications
    }
}