SpectrumAnalyzer

Struct SpectrumAnalyzer 

Source
pub struct SpectrumAnalyzer { /* private fields */ }
Expand description

Register-based spectrum analyzer.

Maps YM2149 channel frequencies to note-aligned spectrum bins, showing the actual notes being played rather than FFT analysis.

Supports up to 4 PSGs (12 channels total) for multi-PSG configurations.

Implementations§

Source§

impl SpectrumAnalyzer

Source

pub fn new() -> Self

Create a new spectrum analyzer.

Source

pub fn set_psg_count(&mut self, count: usize)

Set the number of active PSGs (1-4).

Source

pub fn psg_count(&self) -> usize

Get the number of active PSGs.

Source

pub fn channel_count(&self) -> usize

Get the number of active channels.

Source

pub fn update(&mut self, channel_states: &ChannelStates)

Update spectrum from YM2149 channel states (single PSG, for backward compatibility).

Call this once per frame. Applies decay to previous values and updates bins based on current frequencies. Updates channels 0-2.

Source

pub fn update_psg(&mut self, psg_index: usize, channel_states: &ChannelStates)

Update spectrum for a specific PSG (0-3).

Call this for each active PSG to update its 3 channels.

Source

pub fn update_multi_psg( &mut self, register_banks: &[[u8; 16]], psg_count: usize, )

Update spectrum from multiple PSG register banks.

Call this once per frame with all PSG register states.

Source

pub fn get_bins(&self) -> &[f32; 32]

Get combined spectrum bins (max across all channels).

Source

pub fn channel_spectrum(&self, channel: usize) -> &[f32; 32]

Get spectrum for a specific channel (0-11 for multi-PSG).

Source

pub fn all_channel_spectrums(&self) -> &[[f32; 32]; 12]

Get all per-channel spectrums (all 12 channels).

Source

pub fn high_freq_ratio(&self, channel: usize) -> f32

Compute high frequency ratio (bins 8-15 vs total).

Useful for badges indicating “bright” or “treble” content.

Trait Implementations§

Source§

impl Clone for SpectrumAnalyzer

Source§

fn clone(&self) -> SpectrumAnalyzer

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Default for SpectrumAnalyzer

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.