aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra
diff options
context:
space:
mode:
authorJohannes Schickel2008-04-17 17:49:18 +0000
committerJohannes Schickel2008-04-17 17:49:18 +0000
commit0f34c16c1ea22b0e1591e8a9aa555a8a10daaafc (patch)
treea7336bf168165ba4e06cb4ddcdb44d6643b819e3 /engines/kyra
parent87256747b180895d493f8c92f920fde20ad2ec15 (diff)
downloadscummvm-rg350-0f34c16c1ea22b0e1591e8a9aa555a8a10daaafc.tar.gz
scummvm-rg350-0f34c16c1ea22b0e1591e8a9aa555a8a10daaafc.tar.bz2
scummvm-rg350-0f34c16c1ea22b0e1591e8a9aa555a8a10daaafc.zip
Cleanup.
svn-id: r31547
Diffstat (limited to 'engines/kyra')
-rw-r--r--engines/kyra/sound.h5
-rw-r--r--engines/kyra/sound_digital.cpp15
2 files changed, 9 insertions, 11 deletions
diff --git a/engines/kyra/sound.h b/engines/kyra/sound.h
index 4fd36fe437..0ccca114de 100644
--- a/engines/kyra/sound.h
+++ b/engines/kyra/sound.h
@@ -490,9 +490,6 @@ private:
};
// Digital Audio
-
-#define SOUND_STREAMS 4
-
class AUDStream;
/**
@@ -563,7 +560,7 @@ private:
struct Sound {
Audio::SoundHandle handle;
AUDStream *stream;
- } _sounds[SOUND_STREAMS];
+ } _sounds[4];
};
} // end of namespace Kyra
diff --git a/engines/kyra/sound_digital.cpp b/engines/kyra/sound_digital.cpp
index e2e5612a1c..f6c3090df2 100644
--- a/engines/kyra/sound_digital.cpp
+++ b/engines/kyra/sound_digital.cpp
@@ -319,21 +319,22 @@ int AUDStream::readChunk(int16 *buffer, const int maxSamples) {
#pragma mark -
SoundDigital::SoundDigital(KyraEngine *vm, Audio::Mixer *mixer) : _vm(vm), _mixer(mixer), _sounds() {
- memset(_sounds, 0, sizeof(_sounds));
+ for (uint i = 0; i < ARRAYSIZE(_sounds); ++i)
+ _sounds[i].stream = 0;
}
SoundDigital::~SoundDigital() {
- for (int i = 0; i < SOUND_STREAMS; ++i)
+ for (int i = 0; i < ARRAYSIZE(_sounds); ++i)
stopSound(i);
}
int SoundDigital::playSound(Common::SeekableReadStream *stream, kSoundTypes type, bool loop, bool fadeIn, int channel) {
Sound *use = 0;
- if (channel != -1 && channel < SOUND_STREAMS) {
+ if (channel != -1 && channel < ARRAYSIZE(_sounds)) {
stopSound(channel);
use = &_sounds[channel];
} else {
- for (channel = 0; channel < SOUND_STREAMS; ++channel) {
+ for (channel = 0; channel < ARRAYSIZE(_sounds); ++channel) {
if (!isPlaying(channel)) {
stopSound(channel);
use = &_sounds[channel];
@@ -374,7 +375,7 @@ bool SoundDigital::isPlaying(int channel) {
if (channel == -1)
return false;
- assert(channel >= 0 && channel < SOUND_STREAMS);
+ assert(channel >= 0 && channel < ARRAYSIZE(_sounds));
if (!_sounds[channel].stream)
return false;
@@ -383,13 +384,13 @@ bool SoundDigital::isPlaying(int channel) {
}
void SoundDigital::stopSound(int channel) {
- assert(channel >= 0 && channel < SOUND_STREAMS);
+ assert(channel >= 0 && channel < ARRAYSIZE(_sounds));
_mixer->stopHandle(_sounds[channel].handle);
_sounds[channel].stream = 0;
}
void SoundDigital::stopAllSounds() {
- for (int i = 0; i < SOUND_STREAMS; ++i) {
+ for (int i = 0; i < ARRAYSIZE(_sounds); ++i) {
if (isPlaying(i))
stopSound(i);
}