aboutsummaryrefslogtreecommitdiff
path: root/engines/toltecs/sound.h
diff options
context:
space:
mode:
authorBenjamin Haisch2008-10-14 21:12:52 +0000
committerWillem Jan Palenstijn2011-11-20 22:43:07 +0100
commit4b13982116828453efd4a445328d455d9b820149 (patch)
tree1d94348ce56b4836dc0aa2d24bc43bd85284f01b /engines/toltecs/sound.h
parentf77960e81b5f0b17ebddd4b640cc315bcfc6ef78 (diff)
downloadscummvm-rg350-4b13982116828453efd4a445328d455d9b820149.tar.gz
scummvm-rg350-4b13982116828453efd4a445328d455d9b820149.tar.bz2
scummvm-rg350-4b13982116828453efd4a445328d455d9b820149.zip
TOLTECS: Implemented preliminary sound playback; some stuff is still missing (correct volumes etc.)
Diffstat (limited to 'engines/toltecs/sound.h')
-rw-r--r--engines/toltecs/sound.h80
1 files changed, 80 insertions, 0 deletions
diff --git a/engines/toltecs/sound.h b/engines/toltecs/sound.h
new file mode 100644
index 0000000000..02f7a96eb3
--- /dev/null
+++ b/engines/toltecs/sound.h
@@ -0,0 +1,80 @@
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
+ *
+ */
+
+#ifndef TOLTECS_SOUND_H
+#define TOLTECS_SOUND_H
+
+#include "common/scummsys.h"
+#include "common/endian.h"
+#include "common/util.h"
+#include "common/file.h"
+#include "common/savefile.h"
+#include "common/system.h"
+#include "common/hash-str.h"
+#include "common/events.h"
+#include "common/keyboard.h"
+#include "common/array.h"
+
+#include "sound/audiostream.h"
+#include "sound/mixer.h"
+#include "sound/voc.h"
+#include "sound/audiocd.h"
+
+#include "engines/engine.h"
+
+#include "toltecs/toltecs.h"
+
+namespace Toltecs {
+
+// 0x1219
+
+struct SoundChannel {
+ int16 resIndex;
+ int16 type;
+ Audio::SoundHandle handle;
+};
+
+class Sound {
+public:
+ Sound(ToltecsEngine *vm);
+ ~Sound();
+
+ void playSpeech(int16 resIndex);
+ void playSound(int16 resIndex, int16 type, int16 volume);
+ void playSoundAtPos(int16 resIndex, int16 x, int16 y);
+ void updateSpeech();
+ void stopSpeech();
+
+protected:
+ ToltecsEngine *_vm;
+
+ SoundChannel channels[4];
+
+ void internalPlaySound(int16 resIndex, int16 type, int16 volume, int16 panning);
+
+};
+
+
+} // End of namespace Toltecs
+
+#endif /* TOLTECS_SOUND_H */