2014-08-02 19:14:42 +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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2014-08-02 21:09:28 +00:00
|
|
|
#include "common/algorithm.h"
|
2014-08-04 13:21:39 +00:00
|
|
|
#include "audio/audiostream.h"
|
2014-08-02 21:09:28 +00:00
|
|
|
#include "access/access.h"
|
2014-08-02 19:14:42 +00:00
|
|
|
#include "access/sound.h"
|
|
|
|
|
|
|
|
namespace Access {
|
|
|
|
|
2014-08-04 13:21:39 +00:00
|
|
|
SoundManager::SoundManager(AccessEngine *vm, Audio::Mixer *mixer) :
|
|
|
|
_vm(vm), _mixer(mixer) {
|
2014-08-06 12:28:20 +00:00
|
|
|
_music = nullptr;
|
2014-11-02 11:00:50 +00:00
|
|
|
_tempMusic = nullptr;
|
2014-08-07 02:43:40 +00:00
|
|
|
_musicRepeat = false;
|
2014-08-29 02:15:39 +00:00
|
|
|
_playingSound = false;
|
2014-10-19 18:49:20 +00:00
|
|
|
_isVoice = false;
|
2014-08-02 21:09:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SoundManager::~SoundManager() {
|
2014-08-29 00:24:25 +00:00
|
|
|
clearSounds();
|
2014-11-02 11:00:50 +00:00
|
|
|
delete _music;
|
|
|
|
delete _tempMusic;
|
2014-08-29 00:24:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SoundManager::clearSounds() {
|
2014-08-30 01:03:11 +00:00
|
|
|
for (uint i = 0; i < _soundTable.size(); ++i)
|
2014-11-08 03:09:09 +00:00
|
|
|
delete _soundTable[i]._res;
|
2014-08-29 00:24:25 +00:00
|
|
|
_soundTable.clear();
|
2014-08-04 13:21:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SoundManager::queueSound(int idx, int fileNum, int subfile) {
|
2014-11-08 03:09:09 +00:00
|
|
|
if (idx >= (int)_soundTable.size())
|
|
|
|
_soundTable.resize(idx + 1);
|
|
|
|
|
|
|
|
delete _soundTable[idx]._res;
|
|
|
|
_soundTable[idx]._res = _vm->_files->loadFile(fileNum, subfile);
|
|
|
|
_soundTable[idx]._priority = 1;
|
2014-08-02 21:09:28 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 02:13:43 +00:00
|
|
|
Resource *SoundManager::loadSound(int fileNum, int subfile) {
|
2014-08-02 21:09:28 +00:00
|
|
|
return _vm->_files->loadFile(fileNum, subfile);
|
|
|
|
}
|
|
|
|
|
2014-08-04 13:21:39 +00:00
|
|
|
void SoundManager::playSound(int soundIndex) {
|
2014-11-08 03:09:09 +00:00
|
|
|
int priority = _soundTable[soundIndex]._priority;
|
|
|
|
playSound(_soundTable[soundIndex]._res, priority);
|
2014-08-04 13:21:39 +00:00
|
|
|
}
|
|
|
|
|
2014-08-31 00:50:25 +00:00
|
|
|
void SoundManager::playSound(Resource *res, int priority) {
|
2014-08-04 13:21:39 +00:00
|
|
|
/*
|
|
|
|
Audio::QueuingAudioStream *audioStream = Audio::makeQueuingAudioStream(22050, false);
|
|
|
|
audioStream->queueBuffer(data, size, DisposeAfterUse::YES, 0);
|
|
|
|
_mixer->playStream(Audio::Mixer::kPlainSoundType, &_soundHandle, audioStream, -1,
|
|
|
|
Audio::Mixer::kMaxChannelVolume, 0, DisposeAfterUse::YES, false);
|
|
|
|
*/
|
|
|
|
}
|
2014-08-02 19:14:42 +00:00
|
|
|
|
2014-08-08 00:31:42 +00:00
|
|
|
void SoundManager::loadSounds(Common::Array<RoomInfo::SoundIdent> &sounds) {
|
2014-08-29 00:24:25 +00:00
|
|
|
clearSounds();
|
|
|
|
|
|
|
|
for (uint i = 0; i < sounds.size(); ++i) {
|
2014-11-08 03:09:09 +00:00
|
|
|
Resource *sound = loadSound(sounds[i]._fileNum, sounds[i]._subfile);
|
|
|
|
_soundTable.push_back(SoundEntry(sound, sounds[i]._priority));
|
2014-08-29 00:24:25 +00:00
|
|
|
}
|
2014-08-07 02:43:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SoundManager::midiPlay() {
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
|
2014-11-20 12:28:31 +00:00
|
|
|
bool SoundManager::checkMidiDone() {
|
|
|
|
// TODO
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-08-06 02:17:30 +00:00
|
|
|
void SoundManager::midiRepeat() {
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
|
2014-08-06 12:28:20 +00:00
|
|
|
void SoundManager::stopSong() {
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
|
2014-11-02 13:42:16 +00:00
|
|
|
void SoundManager::stopSound() {
|
|
|
|
// TODO: REALSTOPSND or BLASTSTOPSND or STOP_SOUNDG
|
|
|
|
}
|
|
|
|
|
2014-08-06 12:28:20 +00:00
|
|
|
void SoundManager::freeSounds() {
|
2014-11-02 13:42:16 +00:00
|
|
|
stopSound();
|
|
|
|
clearSounds();
|
2014-08-06 12:28:20 +00:00
|
|
|
}
|
2014-08-06 02:17:30 +00:00
|
|
|
|
2014-08-30 21:17:19 +00:00
|
|
|
void SoundManager::newMusic(int musicId, int mode) {
|
2014-11-02 11:00:50 +00:00
|
|
|
if (mode == 1) {
|
|
|
|
stopSong();
|
|
|
|
freeMusic();
|
|
|
|
_music = _tempMusic;
|
|
|
|
_tempMusic = nullptr;
|
|
|
|
_musicRepeat = true;
|
|
|
|
if (_music)
|
|
|
|
midiPlay();
|
|
|
|
} else {
|
|
|
|
_musicRepeat = (mode == 2);
|
|
|
|
_tempMusic = _music;
|
|
|
|
stopSong();
|
|
|
|
_music = loadSound(97, musicId);
|
|
|
|
}
|
2014-08-30 21:17:19 +00:00
|
|
|
}
|
|
|
|
|
2014-08-07 02:43:40 +00:00
|
|
|
void SoundManager::freeMusic() {
|
2014-08-28 02:22:33 +00:00
|
|
|
delete _music;
|
2014-08-07 02:43:40 +00:00
|
|
|
_music = nullptr;
|
|
|
|
}
|
|
|
|
|
2014-08-02 19:14:42 +00:00
|
|
|
} // End of namespace Access
|