pub mod chunk;
pub mod device;
pub mod music;
use crate::{bind, Result, SdlError, SdlVersion};
use bitflags::bitflags;
use static_assertions::assert_not_impl_all;
use std::{cell::Cell, marker::PhantomData};
bitflags! {
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub struct FormatFlag: u32 {
const FLAC = 1 << 0;
const MOD = 1 << 1;
const MP3 = 1 << 2;
const OGG = 1 << 3;
const MIDI = 1 << 4;
const OPUS = 1 << 5;
}
}
pub struct Mix {
_phantom: PhantomData<Cell<u8>>,
}
assert_not_impl_all!(Mix: Send, Sync);
impl Mix {
pub fn new(flag: FormatFlag) -> Result<Self> {
let ret = unsafe { bind::Mix_Init(flag.bits() as _) };
if !flag.contains(FormatFlag::from_bits_truncate(ret as _)) {
Err(SdlError::UnsupportedFeature)
} else {
Ok(Self {
_phantom: PhantomData,
})
}
}
pub fn version() -> SdlVersion {
let raw = unsafe { &*bind::Mix_Linked_Version() };
SdlVersion {
major: raw.major,
minor: raw.minor,
patch: raw.patch,
}
}
}
impl Drop for Mix {
fn drop(&mut self) {
unsafe { bind::Mix_Quit() }
}
}