ClanLib

Using sound - samples and music

ClanSound provides you with easy-to-use and powerful sound functionality.

Sound overview

To play sound in ClanLib, you have to initialize CL_SetupSound and also create a CL_SoundOutput. CL_SoundOutput is the interface to a sound output device, which is used to control the main mixer volume and other global settings. It is used as a singleton.

Playing wav samples

A CL_SoundBuffer contains a sample or music stream. To load and play a WAV file, you do the following:

You can set the volume and panning of soundbuffers. This will change the default attributes of the soundbuffer, and will be effective on all subsequent calls to play().

Note that setting these attributes don't affect already playing soundbuffers, only when you call play() again afterwards. To have individual control over each playing sound, you need to use a sound session - read about that further down.

Playing music streams

There isn't much difference between playing wav samples and music stream. ClanSound itself doesn't provide more than wav samples playback, so you'll need one or more additional music modules. ClanLib currently has two, MikMod and Vorbis. They are initialized using CL_SetupMikMod and CL_SetupVorbis.

Then to play music, you use the same approach as with wav samples:

Resources

TODO: Write about loading samples from resources.

Sessions

If you want to control the playback of sound, or want to know if the sound is still playing, you use CL_SoundBuffer_Session. This can be created in two ways, either by calling CL_SoundBuffer::play() or CL_SoundBuffer::prepare(). The difference between prepare() and play() is that prepare will just load the sound, but not play it. You can then call play() from your resulting CL_SoundBuffer_Session.

When you have a session object, you can modify the attributes of the playing sound in many ways. These take effect immidiately, you can change it while it is playing. You can set the volume, panning, position, and frequency (speed). You can make it loop, and adding filters. You can query if it is still playing, and you can ofcourse start and stop it as you want.

Filters

If you want to modify sounds in special, dynamic ways, you can apply a CL_SoundFilter to it.

ClanLib has three builtin filters: CL_EchoFilter, CL_FadeFilter and CL_InverseEchoFilter. The usefulness of an CL_InverseEchoFilter can be discussed :)

Example of the fade filter:

Example of the echo filter:

You can ofcourse also code your own filters. Check the SoundFilters example how do to that - it creates a CL_DistortFilter.

It is also possible to add filters on mixer level too. Ie fade all sound out alltogether. Use CL_SoundOutput::add_filter() just like with CL_SoundBuffer_Session.

Sound providers

It is also possible to create sound on-the-fly, or adding extra sound providers. See the StreamSoundProvider example for code how to do this.

Questions or comments, write to the ClanLib mailing list.