2013-06-13 02:13:52 +00:00
|
|
|
/* 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2013-12-02 13:29:51 +00:00
|
|
|
#include "audio/audiostream.h"
|
|
|
|
#include "audio/decoders/raw.h"
|
|
|
|
#include "common/memstream.h"
|
2013-06-13 02:13:52 +00:00
|
|
|
#include "voyeur/sound.h"
|
2013-12-16 01:11:11 +00:00
|
|
|
#include "voyeur/staticres.h"
|
2013-06-13 02:13:52 +00:00
|
|
|
|
|
|
|
namespace Voyeur {
|
|
|
|
|
2013-12-02 13:29:51 +00:00
|
|
|
SoundManager::SoundManager(Audio::Mixer *mixer) {
|
|
|
|
_mixer = mixer;
|
2014-01-30 03:40:00 +00:00
|
|
|
_vocOffset = 0;
|
2013-06-13 02:13:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SoundManager::playVOCMap(byte *voc, int vocSize) {
|
2013-12-02 13:29:51 +00:00
|
|
|
Common::MemoryReadStream *dataStream = new Common::MemoryReadStream(voc, vocSize, DisposeAfterUse::NO);
|
|
|
|
Audio::AudioStream *audioStream = Audio::makeVOCStream(dataStream, Audio::FLAG_UNSIGNED, DisposeAfterUse::YES);
|
|
|
|
|
|
|
|
_mixer->playStream(Audio::Mixer::kSFXSoundType, &_soundHandle, audioStream);
|
2013-06-13 02:13:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SoundManager::abortVOCMap() {
|
2013-12-02 13:29:51 +00:00
|
|
|
_mixer->stopHandle(_soundHandle);
|
2013-06-13 02:13:52 +00:00
|
|
|
}
|
|
|
|
|
2013-12-10 03:22:32 +00:00
|
|
|
void SoundManager::stopVOCPlay() {
|
2013-12-19 02:26:26 +00:00
|
|
|
_mixer->stopHandle(_soundHandle);
|
2014-01-30 03:40:00 +00:00
|
|
|
_vocOffset = 0;
|
2013-12-10 03:22:32 +00:00
|
|
|
}
|
|
|
|
|
2013-12-10 14:19:54 +00:00
|
|
|
void SoundManager::setVOCOffset(int offset) {
|
2014-01-30 03:40:00 +00:00
|
|
|
_vocOffset = offset;
|
2013-12-10 14:19:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Common::String SoundManager::getVOCFileName(int idx) {
|
2013-12-25 20:30:46 +00:00
|
|
|
return Common::String::format("%s.voc", SZ_FILENAMES[idx]);
|
2013-12-10 14:19:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SoundManager::startVOCPlay(const Common::String &filename) {
|
2013-12-16 01:11:11 +00:00
|
|
|
Common::File f;
|
|
|
|
if (!f.open(filename))
|
|
|
|
error("Could not find voc file - %s", filename.c_str());
|
|
|
|
|
2014-01-30 03:40:00 +00:00
|
|
|
Audio::SeekableAudioStream *audioStream = Audio::makeVOCStream(f.readStream(f.size()),
|
2013-12-16 01:11:11 +00:00
|
|
|
Audio::FLAG_UNSIGNED, DisposeAfterUse::YES);
|
|
|
|
|
|
|
|
_mixer->playStream(Audio::Mixer::kSFXSoundType, &_soundHandle, audioStream);
|
2014-01-30 03:40:00 +00:00
|
|
|
audioStream->seek(Audio::Timestamp(_vocOffset * 1000, 11025));
|
2013-12-10 14:19:54 +00:00
|
|
|
}
|
|
|
|
|
2013-12-21 03:51:31 +00:00
|
|
|
void SoundManager::startVOCPlay(int soundId) {
|
|
|
|
startVOCPlay(getVOCFileName(soundId));
|
|
|
|
}
|
|
|
|
|
2013-12-10 14:19:54 +00:00
|
|
|
int SoundManager::getVOCStatus() {
|
2013-12-17 03:21:11 +00:00
|
|
|
return _mixer->isSoundHandleActive(_soundHandle);
|
2013-12-10 14:19:54 +00:00
|
|
|
}
|
|
|
|
|
2014-01-18 22:32:59 +00:00
|
|
|
uint32 SoundManager::getVOCFrame() {
|
2014-01-30 04:08:59 +00:00
|
|
|
Audio::Timestamp timestamp = _mixer->getElapsedTime(_soundHandle);
|
|
|
|
return timestamp.secs();
|
2014-01-18 22:32:59 +00:00
|
|
|
}
|
|
|
|
|
2013-06-13 02:13:52 +00:00
|
|
|
} // End of namespace Voyeur
|