2007-05-30 21:56: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.
|
2005-01-09 16:06:29 +00:00
|
|
|
*
|
|
|
|
* 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
|
2005-10-18 01:30:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2005-01-09 16:06:29 +00:00
|
|
|
*
|
2006-02-09 12:19:53 +00:00
|
|
|
* $URL$
|
|
|
|
* $Id$
|
2005-01-09 16:06:29 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2007-09-19 08:40:12 +00:00
|
|
|
|
2005-09-11 14:35:34 +00:00
|
|
|
#include "common/system.h"
|
2008-04-07 17:56:04 +00:00
|
|
|
#include "common/config-manager.h"
|
|
|
|
|
2005-06-24 16:01:42 +00:00
|
|
|
#include "kyra/resource.h"
|
2005-08-19 22:12:09 +00:00
|
|
|
#include "kyra/sound.h"
|
2004-11-11 13:37:35 +00:00
|
|
|
|
2006-01-13 23:06:04 +00:00
|
|
|
#include "sound/mixer.h"
|
|
|
|
#include "sound/voc.h"
|
|
|
|
#include "sound/audiostream.h"
|
|
|
|
|
2006-02-10 16:39:56 +00:00
|
|
|
#include "sound/mp3.h"
|
|
|
|
#include "sound/vorbis.h"
|
|
|
|
#include "sound/flac.h"
|
|
|
|
|
2004-11-11 13:37:35 +00:00
|
|
|
namespace Kyra {
|
2005-07-30 21:11:48 +00:00
|
|
|
|
2008-05-11 23:16:50 +00:00
|
|
|
Sound::Sound(KyraEngine_v1 *vm, Audio::Mixer *mixer)
|
2008-03-21 16:18:27 +00:00
|
|
|
: _vm(vm), _mixer(mixer), _soundChannels(), _musicEnabled(1),
|
|
|
|
_sfxEnabled(true), _soundDataList(0) {
|
2006-02-27 22:39:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Sound::~Sound() {
|
|
|
|
}
|
|
|
|
|
2008-03-21 16:18:27 +00:00
|
|
|
bool Sound::voiceFileIsPresent(const char *file) {
|
|
|
|
char filenamebuffer[25];
|
2008-06-03 18:12:21 +00:00
|
|
|
for (int i = 0; _supportedCodecs[i].fileext; ++i) {
|
2008-03-21 16:18:27 +00:00
|
|
|
strcpy(filenamebuffer, file);
|
2008-06-03 18:12:21 +00:00
|
|
|
strcat(filenamebuffer, _supportedCodecs[i].fileext);
|
2008-03-21 16:18:27 +00:00
|
|
|
if (_vm->resource()->getFileSize(filenamebuffer) > 0)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
strcpy(filenamebuffer, file);
|
|
|
|
strcat(filenamebuffer, ".VOC");
|
|
|
|
|
|
|
|
if (_vm->resource()->getFileSize(filenamebuffer) > 0)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-02-01 20:35:51 +00:00
|
|
|
int32 Sound::voicePlay(const char *file, uint8 volume, bool isSfx) {
|
2006-02-27 22:39:55 +00:00
|
|
|
char filenamebuffer[25];
|
|
|
|
|
2008-02-17 02:06:04 +00:00
|
|
|
int h = 0;
|
2008-03-21 16:18:27 +00:00
|
|
|
while (_mixer->isSoundHandleActive(_soundChannels[h].channelHandle) && h < kNumChannelHandles)
|
|
|
|
h++;
|
|
|
|
if (h >= kNumChannelHandles)
|
2008-05-24 22:47:08 +00:00
|
|
|
return 0;
|
2008-03-21 16:18:27 +00:00
|
|
|
|
|
|
|
Audio::AudioStream *audioStream = 0;
|
2008-02-17 02:06:04 +00:00
|
|
|
|
2008-06-03 18:12:21 +00:00
|
|
|
for (int i = 0; _supportedCodecs[i].fileext; ++i) {
|
2006-02-27 22:39:55 +00:00
|
|
|
strcpy(filenamebuffer, file);
|
2008-06-03 18:12:21 +00:00
|
|
|
strcat(filenamebuffer, _supportedCodecs[i].fileext);
|
2006-02-27 22:39:55 +00:00
|
|
|
|
2009-01-23 04:57:18 +00:00
|
|
|
Common::SeekableReadStream *stream = _vm->resource()->createReadStream(filenamebuffer);
|
2008-02-07 23:13:13 +00:00
|
|
|
if (!stream)
|
2006-02-27 22:39:55 +00:00
|
|
|
continue;
|
2008-06-03 18:12:21 +00:00
|
|
|
audioStream = _supportedCodecs[i].streamFunc(stream, true, 0, 0, 1);
|
2006-02-27 22:39:55 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2008-05-23 11:35:05 +00:00
|
|
|
if (!audioStream) {
|
2006-02-27 22:39:55 +00:00
|
|
|
strcpy(filenamebuffer, file);
|
|
|
|
strcat(filenamebuffer, ".VOC");
|
2007-09-19 08:40:12 +00:00
|
|
|
|
2008-05-23 11:35:05 +00:00
|
|
|
uint32 fileSize = 0;
|
|
|
|
byte *fileData = _vm->resource()->fileData(filenamebuffer, &fileSize);
|
2006-02-27 22:39:55 +00:00
|
|
|
if (!fileData)
|
2008-05-24 23:05:01 +00:00
|
|
|
return 0;
|
2006-02-27 22:39:55 +00:00
|
|
|
|
|
|
|
Common::MemoryReadStream vocStream(fileData, fileSize);
|
2009-02-07 05:05:14 +00:00
|
|
|
audioStream = Audio::makeVOCStream(vocStream, Audio::Mixer::FLAG_UNSIGNED);
|
2008-05-23 11:35:05 +00:00
|
|
|
|
|
|
|
delete[] fileData;
|
|
|
|
fileSize = 0;
|
2006-02-27 22:39:55 +00:00
|
|
|
}
|
|
|
|
|
2008-08-02 14:35:43 +00:00
|
|
|
if (!audioStream) {
|
|
|
|
warning("Couldn't load sound file '%s'", file);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-03-21 16:18:27 +00:00
|
|
|
_soundChannels[h].file = file;
|
2009-02-01 20:35:51 +00:00
|
|
|
_mixer->playInputStream(isSfx ? Audio::Mixer::kSFXSoundType : Audio::Mixer::kSpeechSoundType, &_soundChannels[h].channelHandle, audioStream, -1, volume);
|
2008-02-17 02:06:04 +00:00
|
|
|
|
2008-05-24 22:47:08 +00:00
|
|
|
return audioStream->getTotalPlayTime();
|
2006-02-27 22:39:55 +00:00
|
|
|
}
|
|
|
|
|
2009-03-08 23:28:19 +00:00
|
|
|
uint32 Sound::voicePlayFromList(Common::List<const char*> fileList) {
|
2009-02-01 19:27:01 +00:00
|
|
|
int h = 0;
|
|
|
|
while (_mixer->isSoundHandleActive(_soundChannels[h].channelHandle) && h < kNumChannelHandles)
|
|
|
|
h++;
|
|
|
|
if (h >= kNumChannelHandles)
|
2009-03-08 23:28:19 +00:00
|
|
|
return 0;
|
2009-02-01 19:27:01 +00:00
|
|
|
|
|
|
|
Audio::AppendableAudioStream *out = Audio::makeAppendableAudioStream(22050, Audio::Mixer::FLAG_AUTOFREE | Audio::Mixer::FLAG_UNSIGNED);
|
2009-03-09 00:54:27 +00:00
|
|
|
uint32 totalPlayTime = 0;
|
|
|
|
|
2009-02-01 19:27:01 +00:00
|
|
|
for (Common::List<const char*>::iterator i = fileList.begin(); i != fileList.end(); i++) {
|
2009-02-01 21:11:03 +00:00
|
|
|
Common::SeekableReadStream *file = _vm->resource()->createReadStream(*i);
|
|
|
|
|
2009-03-08 23:28:19 +00:00
|
|
|
if (!file) {
|
|
|
|
warning("Couldn't load voice file: %s", *i);
|
2009-02-01 21:11:03 +00:00
|
|
|
continue;
|
2009-03-08 23:28:19 +00:00
|
|
|
}
|
2009-02-01 20:53:30 +00:00
|
|
|
|
|
|
|
int size, rate;
|
2009-02-01 21:11:03 +00:00
|
|
|
uint8 *data = Audio::loadVOCFromStream(*file, size, rate);
|
|
|
|
delete file;
|
|
|
|
|
|
|
|
// FIXME/HACK: While loadVOCStream uses malloc / realloc,
|
|
|
|
// AppendableAudioStream uses delete[] to free the passed buffer.
|
|
|
|
// As a consequence we just 'move' the data to a buffer allocated
|
|
|
|
// via new[].
|
|
|
|
uint8 *vocBuffer = new uint8[size];
|
|
|
|
assert(vocBuffer);
|
|
|
|
memcpy(vocBuffer, data, size);
|
|
|
|
free(data);
|
|
|
|
|
|
|
|
out->queueBuffer(vocBuffer, size);
|
2009-03-09 00:54:27 +00:00
|
|
|
totalPlayTime += size;
|
2009-02-01 19:27:01 +00:00
|
|
|
}
|
2009-05-21 13:13:09 +00:00
|
|
|
|
2009-03-09 00:54:27 +00:00
|
|
|
totalPlayTime = (totalPlayTime * 1000) / 22050;
|
2009-02-01 19:27:01 +00:00
|
|
|
out->finish();
|
2009-05-21 13:13:09 +00:00
|
|
|
|
2009-02-01 19:27:01 +00:00
|
|
|
_soundChannels[h].file = *fileList.begin();
|
|
|
|
_mixer->playInputStream(Audio::Mixer::kSpeechSoundType, &_soundChannels[h].channelHandle, out);
|
2009-03-09 00:54:27 +00:00
|
|
|
return totalPlayTime;
|
2009-02-01 19:27:01 +00:00
|
|
|
}
|
|
|
|
|
2008-03-21 16:18:27 +00:00
|
|
|
void Sound::voiceStop(const char *file) {
|
|
|
|
if (!file) {
|
|
|
|
for (int h = 0; h < kNumChannelHandles; h++) {
|
|
|
|
if (_mixer->isSoundHandleActive(_soundChannels[h].channelHandle))
|
|
|
|
_mixer->stopHandle(_soundChannels[h].channelHandle);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for (int i = 0; i < kNumChannelHandles; ++i) {
|
|
|
|
if (_soundChannels[i].file == file)
|
|
|
|
_mixer->stopHandle(_soundChannels[i].channelHandle);
|
|
|
|
}
|
2008-02-17 02:06:04 +00:00
|
|
|
}
|
2006-05-28 04:46:34 +00:00
|
|
|
}
|
|
|
|
|
2008-03-21 16:18:27 +00:00
|
|
|
bool Sound::voiceIsPlaying(const char *file) {
|
2008-02-17 02:06:04 +00:00
|
|
|
bool res = false;
|
2008-03-21 16:18:27 +00:00
|
|
|
if (!file) {
|
|
|
|
for (int h = 0; h < kNumChannelHandles; h++) {
|
|
|
|
if (_mixer->isSoundHandleActive(_soundChannels[h].channelHandle))
|
|
|
|
res = true;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for (int i = 0; i < kNumChannelHandles; ++i) {
|
|
|
|
if (_soundChannels[i].file == file)
|
2008-03-22 14:29:30 +00:00
|
|
|
res = _mixer->isSoundHandleActive(_soundChannels[i].channelHandle);
|
2008-03-21 16:18:27 +00:00
|
|
|
}
|
2008-02-17 02:06:04 +00:00
|
|
|
}
|
|
|
|
return res;
|
2006-02-27 22:39:55 +00:00
|
|
|
}
|
|
|
|
|
2009-05-10 13:40:28 +00:00
|
|
|
bool Sound::allVoiceChannelsPlaying() {
|
|
|
|
for (int i = 0; i < kNumChannelHandles; ++i)
|
|
|
|
if (!_mixer->isSoundHandleActive(_soundChannels[i].channelHandle))
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-05-24 22:47:08 +00:00
|
|
|
uint32 Sound::voicePlayedTime(const char *file) {
|
|
|
|
if (!file)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
for (int i = 0; i < kNumChannelHandles; ++i) {
|
|
|
|
if (_soundChannels[i].file == file)
|
|
|
|
return _mixer->getSoundElapsedTime(_soundChannels[i].channelHandle);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-02-27 22:39:55 +00:00
|
|
|
#pragma mark -
|
|
|
|
|
2008-05-11 23:16:50 +00:00
|
|
|
void KyraEngine_v1::snd_playTheme(int file, int track) {
|
2008-04-06 14:11:43 +00:00
|
|
|
if (_curMusicTheme == file)
|
|
|
|
return;
|
|
|
|
|
2007-10-10 09:06:15 +00:00
|
|
|
_curSfxFile = _curMusicTheme = file;
|
|
|
|
_sound->loadSoundFile(_curMusicTheme);
|
2008-11-30 02:47:20 +00:00
|
|
|
|
|
|
|
// Kyrandia 2 uses a special file for
|
|
|
|
// MIDI sound effects, so we load
|
|
|
|
// this here
|
|
|
|
if (_flags.gameID == GI_KYRA2)
|
|
|
|
_sound->loadSfxFile("K2SFX");
|
|
|
|
|
2008-04-10 15:41:06 +00:00
|
|
|
if (track != -1)
|
|
|
|
_sound->playTrack(track);
|
2007-10-10 09:06:15 +00:00
|
|
|
}
|
|
|
|
|
2008-05-11 23:16:50 +00:00
|
|
|
void KyraEngine_v1::snd_playSoundEffect(int track, int volume) {
|
2007-10-10 09:06:15 +00:00
|
|
|
_sound->playSoundEffect(track);
|
|
|
|
}
|
|
|
|
|
2008-05-11 23:16:50 +00:00
|
|
|
void KyraEngine_v1::snd_playWanderScoreViaMap(int command, int restart) {
|
2007-10-10 09:06:15 +00:00
|
|
|
if (restart)
|
|
|
|
_lastMusicCommand = -1;
|
|
|
|
|
|
|
|
// no track mapping given
|
|
|
|
// so don't do anything here
|
|
|
|
if (!_trackMap || !_trackMapSize)
|
|
|
|
return;
|
|
|
|
|
|
|
|
//if (!_disableSound) {
|
|
|
|
// XXX
|
|
|
|
//}
|
2008-01-27 19:47:41 +00:00
|
|
|
|
2009-04-21 11:26:19 +00:00
|
|
|
if (_flags.platform == Common::kPlatformPC || _flags.platform == Common::kPlatformMacintosh) {
|
2008-01-12 08:04:00 +00:00
|
|
|
assert(command*2+1 < _trackMapSize);
|
|
|
|
if (_curMusicTheme != _trackMap[command*2]) {
|
|
|
|
if (_trackMap[command*2] != -1 && _trackMap[command*2] != -2)
|
2008-04-10 15:41:06 +00:00
|
|
|
snd_playTheme(_trackMap[command*2], -1);
|
2008-01-12 08:04:00 +00:00
|
|
|
}
|
2007-10-10 09:06:15 +00:00
|
|
|
|
2008-01-12 08:04:00 +00:00
|
|
|
if (command != 1) {
|
|
|
|
if (_lastMusicCommand != command) {
|
|
|
|
_sound->haltTrack();
|
|
|
|
_sound->playTrack(_trackMap[command*2+1]);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
_sound->beginFadeOut();
|
|
|
|
}
|
|
|
|
} else if (_flags.platform == Common::kPlatformFMTowns || _flags.platform == Common::kPlatformPC98) {
|
|
|
|
if (command == -1) {
|
2007-10-10 09:06:15 +00:00
|
|
|
_sound->haltTrack();
|
2008-01-12 08:04:00 +00:00
|
|
|
} else {
|
|
|
|
assert(command*2+1 < _trackMapSize);
|
|
|
|
if (_trackMap[command*2] != -2 && command != _lastMusicCommand) {
|
|
|
|
_sound->haltTrack();
|
|
|
|
_sound->playTrack(command);
|
|
|
|
}
|
2007-10-10 09:06:15 +00:00
|
|
|
}
|
2008-01-27 19:47:41 +00:00
|
|
|
}
|
2007-10-10 09:06:15 +00:00
|
|
|
|
|
|
|
_lastMusicCommand = command;
|
|
|
|
}
|
|
|
|
|
2008-05-11 23:16:50 +00:00
|
|
|
void KyraEngine_v1::snd_stopVoice() {
|
2008-05-27 21:04:27 +00:00
|
|
|
if (!_speechFile.empty()) {
|
|
|
|
_sound->voiceStop(_speechFile.c_str());
|
|
|
|
_speechFile.clear();
|
|
|
|
}
|
2007-10-13 06:57:47 +00:00
|
|
|
}
|
|
|
|
|
2008-05-11 23:16:50 +00:00
|
|
|
bool KyraEngine_v1::snd_voiceIsPlaying() {
|
2008-05-27 21:04:27 +00:00
|
|
|
return _speechFile.empty() ? false : _sound->voiceIsPlaying(_speechFile.c_str());
|
2007-10-13 06:57:47 +00:00
|
|
|
}
|
|
|
|
|
2006-02-10 16:39:56 +00:00
|
|
|
// static res
|
|
|
|
|
2008-06-03 18:12:21 +00:00
|
|
|
const Sound::SpeechCodecs Sound::_supportedCodecs[] = {
|
2006-02-10 16:39:56 +00:00
|
|
|
#ifdef USE_FLAC
|
2006-04-29 22:33:31 +00:00
|
|
|
{ ".VOF", Audio::makeFlacStream },
|
2006-02-10 16:39:56 +00:00
|
|
|
#endif // USE_FLAC
|
2007-02-24 23:40:28 +00:00
|
|
|
#ifdef USE_VORBIS
|
|
|
|
{ ".VOG", Audio::makeVorbisStream },
|
|
|
|
#endif // USE_VORBIS
|
|
|
|
#ifdef USE_MAD
|
|
|
|
{ ".VO3", Audio::makeMP3Stream },
|
|
|
|
#endif // USE_MAD
|
2006-02-10 16:39:56 +00:00
|
|
|
{ 0, 0 }
|
|
|
|
};
|
|
|
|
|
2004-11-11 13:37:35 +00:00
|
|
|
} // end of namespace Kyra
|
2007-04-15 16:41:20 +00:00
|
|
|
|
2008-02-17 02:06:04 +00:00
|
|
|
|