File: sound.cpp

package info (click to toggle)
einstein 2.0.dfsg.2-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 2,164 kB
  • ctags: 1,652
  • sloc: cpp: 10,429; makefile: 118; sh: 1
file content (62 lines) | stat: -rw-r--r-- 1,305 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#include "sound.h"

#include <iostream>
#include <SDL_events.h>
#include "resources.h"


Sound *sound;


Sound::Sound()
{
    int audio_rate = 22050;
    Uint16 audio_format = AUDIO_S16; /* 16-bit stereo */
    int audio_channels = 2;
    int audio_buffers = 1024;
    disabled = Mix_OpenAudio(audio_rate, audio_format, audio_channels, 
                audio_buffers);
    if (disabled)
        std::cout << "Audio is disabled" << std::endl;
}

Sound::~Sound()
{
    if (! disabled)
        Mix_CloseAudio();
    for (ChunkMap::iterator i = chunkCache.begin(); i != chunkCache.end(); i++)
        Mix_FreeChunk((*i).second);
    Mix_CloseAudio();
}


void Sound::play(const std::wstring &name)
{
    if (disabled || (! enableFx))
        return;
    
    Mix_Chunk *chunk = NULL;
    
    ChunkMap::iterator i = chunkCache.find(name);
    if (i != chunkCache.end())
        chunk = (*i).second;
    else {
        ResDataHolder data(name);
        chunk = Mix_LoadWAV_RW(SDL_RWFromMem(data.getData(), data.getSize()), 
                0);
        chunkCache[name] = chunk;
    }

    if (chunk) {
        Mix_VolumeChunk(chunk, (int)(volume * 128.0f));
        Mix_PlayChannel(-1, chunk, 0);
    }
    SDL_PumpEvents();
}

void Sound::setVolume(float v)
{
    volume = v;
    enableFx = 0.01 < volume;
}