aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/sound.h
diff options
context:
space:
mode:
authorJohannes Schickel2011-10-29 00:42:18 +0200
committerJohannes Schickel2011-10-29 01:00:18 +0200
commit17883b913715f90c21f6831c1c0314bd46e2b55b (patch)
treeae35a80b9c0699be277a78d85b3dbb99485adff9 /engines/kyra/sound.h
parent5be3ac9fcc7e057e74bb8eff9c0d234f887a0a50 (diff)
downloadscummvm-rg350-17883b913715f90c21f6831c1c0314bd46e2b55b.tar.gz
scummvm-rg350-17883b913715f90c21f6831c1c0314bd46e2b55b.tar.bz2
scummvm-rg350-17883b913715f90c21f6831c1c0314bd46e2b55b.zip
KYRA: Make more methods of Sound const.
Diffstat (limited to 'engines/kyra/sound.h')
-rw-r--r--engines/kyra/sound.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/engines/kyra/sound.h b/engines/kyra/sound.h
index 36e7058182..fb1f58d154 100644
--- a/engines/kyra/sound.h
+++ b/engines/kyra/sound.h
@@ -163,7 +163,7 @@ public:
void enableSFX(bool enable) { _sfxEnabled = enable; }
bool sfxEnabled() const { return _sfxEnabled; }
- virtual bool voiceFileIsPresent(const char *file);
+ virtual bool voiceFileIsPresent(const char *file) const;
/**
* Checks whether a voice file with the given name is present
@@ -171,7 +171,7 @@ public:
* @param file file name
* @return true if available, false otherwise
*/
- bool isVoicePresent(const char *file);
+ bool isVoicePresent(const char *file) const;
/**
* Plays the specified voice file.
@@ -188,7 +188,7 @@ public:
*/
virtual int32 voicePlay(const char *file, Audio::SoundHandle *handle = 0, uint8 volume = 255, bool isSfx = false);
- Audio::SeekableAudioStream *getVoiceStream(const char *file);
+ Audio::SeekableAudioStream *getVoiceStream(const char *file) const;
bool playVoiceStream(Audio::AudioStream *stream, Audio::SoundHandle *handle = 0, uint8 volume = 255, bool isSfx = false);
@@ -197,21 +197,21 @@ public:
*
* @return true when playing, else false
*/
- bool voiceIsPlaying(const Audio::SoundHandle *handle = 0);
+ bool voiceIsPlaying(const Audio::SoundHandle *handle = 0) const;
/**
* Checks if all voice handles are used.
*
* @return false when a handle is free, else true
*/
- bool allVoiceChannelsPlaying();
+ bool allVoiceChannelsPlaying() const;
/**
* Checks how long a voice has been playing
*
* @return time in milliseconds
*/
- uint32 voicePlayedTime(const Audio::SoundHandle &handle) {
+ uint32 voicePlayedTime(const Audio::SoundHandle &handle) const {
return _mixer->getSoundElapsedTime(handle);
}