Struct Channel

Source
pub struct Channel(/* private fields */);
Expand description

Sound effect channel.

Implementations§

Source§

impl Channel

Source

pub fn all() -> Channel

Represent for all channels (-1)

Source

pub fn post() -> Channel

This is the MIX_CHANNEL_POST (-2)

Source

pub fn set_volume(self, volume: isize) -> isize

Set the volume for any allocated channel.

Source

pub fn get_volume(self) -> isize

Returns the channels volume on scale of 0 to 128.

Source

pub fn play(self, chunk: &Chunk, loops: isize) -> Result<Channel, String>

Play chunk on channel, or if channel is -1, pick the first free unreserved channel.

Source

pub fn play_timed( self, chunk: &Chunk, loops: isize, ticks: isize, ) -> Result<Channel, String>

Source

pub fn fade_in( self, chunk: &Chunk, loops: isize, ms: isize, ) -> Result<Channel, String>

Play chunk on channel, or if channel is -1, pick the first free unreserved channel.

Source

pub fn fade_in_timed( self, chunk: &Chunk, loops: isize, ms: isize, ticks: isize, ) -> Result<Channel, String>

Source

pub fn pause(self)

Pause channel, or all playing channels if -1 is passed in.

Source

pub fn resume(self)

Unpause channel, or all playing and paused channels if -1 is passed in.

Source

pub fn halt(self)

Halt channel playback

Source

pub fn expire(self, ticks: isize) -> isize

Halt channel playback, after ticks milliseconds.

Source

pub fn fade_out(self, ms: isize) -> isize

Gradually fade out which channel over ms milliseconds starting from now.

Source

pub fn is_playing(self) -> bool

if channel is playing, or not.

Source

pub fn is_paused(self) -> bool

if channel is paused, or not.

Source

pub fn get_fading(self) -> Fading

if channel is fading in, out, or not

Source

pub fn get_chunk(self) -> Option<Chunk>

Get the most recent sample chunk pointer played on channel.

Source

pub fn unregister_all_effects(self) -> Result<(), String>

This removes all effects registered to channel.

Source

pub fn set_panning(self, left: u8, right: u8) -> Result<(), String>

Sets a panning effect, where left and right is the volume of the left and right channels. They range from 0 (silence) to 255 (loud).

Source

pub fn unset_panning(self) -> Result<(), String>

Unregisters panning effect.

Source

pub fn set_distance(self, distance: u8) -> Result<(), String>

This effect simulates a simple attenuation of volume due to distance. distance ranges from 0 (close/loud) to 255 (far/quiet).

Source

pub fn unset_distance(self) -> Result<(), String>

Unregisters distance effect.

Source

pub fn set_position(self, angle: i16, distance: u8) -> Result<(), String>

This effect emulates a simple 3D audio effect. angle ranges from 0 to 360 degrees going clockwise, where 0 is directly in front. distance ranges from 0 (close/loud) to 255 (far/quiet).

Source

pub fn unset_position(self) -> Result<(), String>

Unregisters position effect.

Source

pub fn set_reverse_stereo(self, flip: bool) -> Result<(), String>

Simple reverse stereo, swaps left and right channel sound. true for reverse, false to unregister effect.

Trait Implementations§

Source§

impl Clone for Channel

Source§

fn clone(&self) -> Channel

Returns a copy 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 Debug for Channel

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl PartialEq for Channel

Source§

fn eq(&self, other: &Channel) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Copy for Channel

Source§

impl StructuralPartialEq for Channel

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.