diff options
Diffstat (limited to 'engines/titanic/sound/sound_manager.cpp')
-rw-r--r-- | engines/titanic/sound/sound_manager.cpp | 127 |
1 files changed, 127 insertions, 0 deletions
diff --git a/engines/titanic/sound/sound_manager.cpp b/engines/titanic/sound/sound_manager.cpp new file mode 100644 index 0000000000..143dd8385f --- /dev/null +++ b/engines/titanic/sound/sound_manager.cpp @@ -0,0 +1,127 @@ +/* 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. + * + */ + +#include "titanic/sound/sound_manager.h" + +namespace Titanic { + +SoundManager::SoundManager() : _field4(0), _field8(0), + _fieldC(0), _field10(0), _field14(1) { +} + +/*------------------------------------------------------------------------*/ + +QSoundManager::QSoundManager() : _field18(0), _field1C(0) { + Common::fill(&_field4A0[0], &_field4A0[16], 0); +} + +int QSoundManager::proc3() { + warning("TODO"); + return 0; +} + +int QSoundManager::proc4() { + warning("TODO"); + return 0; +} + +int QSoundManager::proc5() { + warning("TODO"); + return 0; +} + +void QSoundManager::proc6() { + warning("TODO"); +} + +void QSoundManager::proc7() { + warning("TODO"); +} + +void QSoundManager::proc8() { + warning("TODO"); +} + +void QSoundManager::proc9() { + warning("TODO"); +} + +void QSoundManager::proc10() { + warning("TODO"); +} + +void QSoundManager::proc11() { + warning("TODO"); +} + +void QSoundManager::proc12() { + warning("TODO"); +} + +void QSoundManager::proc13() { + warning("TODO"); +} + +void QSoundManager::proc14() { + warning("TODO"); +} + +int QSoundManager::proc15() { + warning("TODO"); + return 0; +} + +int QSoundManager::proc16() { + warning("TODO"); + return 0; +} + +void QSoundManager::WaveMixPump() { + warning("TODO"); +} + +int QSoundManager::proc18() const { + warning("TODO"); + return 0; +} + +void QSoundManager::proc19(int v) { + warning("TODO"); +} + +void QSoundManager::proc20(int v) { + warning("TODO"); +} + +void QSoundManager::proc21(int v) { + warning("TODO"); +} + +void QSoundManager::proc29() { + warning("TODO"); +} + +void QSoundManager::proc30() { + warning("TODO"); +} + +} // End of namespace Titanic z |