aboutsummaryrefslogtreecommitdiff
path: root/engines/tsage/sound.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/tsage/sound.cpp')
-rw-r--r--engines/tsage/sound.cpp91
1 files changed, 91 insertions, 0 deletions
diff --git a/engines/tsage/sound.cpp b/engines/tsage/sound.cpp
index defec1cebd..912bbacadd 100644
--- a/engines/tsage/sound.cpp
+++ b/engines/tsage/sound.cpp
@@ -54,4 +54,95 @@ void SoundManager::listenerSynchronize(Serializer &s) {
warning("TODO: SoundManager listenerSynchronize");
}
+/*--------------------------------------------------------------------------*/
+
+void ASound::play(int soundNum, Action *action, int volume) {
+
+}
+
+void ASound::stop() {
+
+}
+
+void ASound::prime(int v, Action *action) {
+
+}
+
+void ASound::unPrime() {
+
+}
+
+void ASound::go() {
+
+}
+
+void ASound::hault(void) {
+}
+
+int ASound::getSoundNum() const { return 0; }
+bool ASound::isPlaying() const { return false; }
+bool ASound::isPaused() const { return false; }
+bool ASound::isMuted() const { return false; }
+
+void ASound::pause() {
+
+}
+
+void ASound::mute() {
+
+}
+
+void ASound::fadeIn() {
+
+}
+
+void ASound::fadeOut(EventHandler *evtHandler) {
+
+}
+
+void ASound::fade(int v1, int v2, int v3, int v4, EventHandler *evtHandler) {
+
+}
+
+void ASound::setTimeIndex(uint32 timeIndex) {
+
+}
+
+uint32 ASound::getTimeIndex() const {
+ return 0;
+}
+
+void ASound::setPri(int v) {
+
+}
+
+void ASound::setLoop(bool flag) {
+
+}
+
+int ASound::getPri() const {
+ return 0;
+}
+
+bool ASound::getLoop() {
+ return false;
+}
+
+void ASound::setVolume(int volume) {
+
+}
+
+int ASound::getVol() const {
+ return 0;
+}
+
+void ASound::holdAt(int v) {
+
+}
+
+void ASound::release() {
+
+}
+
+
} // End of namespace tSage