SaturnRingLibrary 0.9
SGL wrapper
 
Loading...
Searching...
No Matches
SRL::Sound::Pcm Class Reference

Detailed Description

PCM playback.

#include <srl_sound.hpp>

Classes

class  IPcmFile
 Base PCM file interface. More...
 
class  RawPcm
 Raw PCM sound. More...
 
class  WaveSound
 Wave sound effect. More...
 

Public Types

enum  PcmBitDepth { Pcm8Bit = _PCM8Bit , Pcm16Bit = _PCM16Bit }
 PCM audio bit depth. More...
 
enum  PcmChannels { Mono = _Mono , Stereo = _Stereo }
 PCM audio channels. More...
 
enum  PcmMalloc : uint16_t { Default = 0 , HwRam = 1 , LwRam = 2 , CartRam = 3 }
 Malloc types to use for loading PCM. More...
 

Static Public Member Functions

static bool IsChannelFree (uint8_t channel)
 Check whether sound channel is currently free.
 
static int8_t Play (Pcm::IPcmFile &pcm, uint8_t volume=127, int8_t pan=0)
 Try to play sound on the first free channel.
 
static bool PlayOnChannel (Pcm::IPcmFile &pcm, uint8_t channel, uint8_t volume=127, int8_t pan=0)
 Try to play a sound on a specific channel.
 
static void SetMemAllocationBehaviour (const Pcm::PcmMalloc work, const Pcm::PcmMalloc data)
 Set the Mem Allocation Behaviour for loading PCM files.
 
static void SetVolumePan (uint8_t channel, uint8_t volume, int8_t pan=0)
 Set the Volume & Panning.
 
static bool StopSound (uint8_t channel)
 Stop currently playing sound.