2003-12-16 02:10:15 +00:00
|
|
|
/* ScummVM - Scumm Interpreter
|
2004-01-06 12:45:34 +00:00
|
|
|
* Copyright (C) 2003-2004 The ScummVM project
|
2003-12-16 02:10:15 +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
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*
|
|
|
|
* $Header$
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "stdafx.h"
|
|
|
|
#include "music.h"
|
|
|
|
#include "sound/mixer.h"
|
|
|
|
#include "common/util.h"
|
|
|
|
#include "common/file.h"
|
|
|
|
|
2004-01-01 16:56:00 +00:00
|
|
|
// This means fading takes 3 seconds.
|
|
|
|
#define FADE_LENGTH 3
|
2004-01-01 15:22:15 +00:00
|
|
|
|
|
|
|
// These functions are only called from SwordMusic, so I'm just going to
|
|
|
|
// assume that if locking is needed it has already been taken care of.
|
|
|
|
|
|
|
|
void SwordMusicHandle::fadeDown() {
|
|
|
|
if (_fading < 0)
|
|
|
|
_fading = -_fading;
|
|
|
|
else if (_fading == 0)
|
2004-01-01 16:56:00 +00:00
|
|
|
_fading = FADE_LENGTH * getRate();
|
|
|
|
_fadeSamples = FADE_LENGTH * getRate();
|
2004-01-01 15:22:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SwordMusicHandle::fadeUp() {
|
|
|
|
if (_fading > 0)
|
|
|
|
_fading = -_fading;
|
|
|
|
else if (_fading == 0)
|
2004-01-01 16:56:00 +00:00
|
|
|
_fading = -(FADE_LENGTH * getRate());
|
|
|
|
_fadeSamples = FADE_LENGTH * getRate();
|
2004-01-01 15:22:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool SwordMusicHandle::endOfData() const {
|
|
|
|
return !streaming();
|
|
|
|
}
|
|
|
|
|
|
|
|
int SwordMusicHandle::readBuffer(int16 *buffer, const int numSamples) {
|
2004-01-03 20:42:18 +00:00
|
|
|
// TODO: merge the read() code into readBuffer(), for higher efficency;
|
|
|
|
// we then can remove read() (as it isn't needed for anything anymore).
|
2004-01-01 15:22:15 +00:00
|
|
|
int samples;
|
|
|
|
for (samples = 0; samples < numSamples && !endOfData(); samples++)
|
|
|
|
*buffer++ = read();
|
|
|
|
return samples;
|
|
|
|
}
|
|
|
|
|
|
|
|
int16 SwordMusicHandle::read() {
|
|
|
|
if (!streaming())
|
|
|
|
return 0;
|
|
|
|
int16 sample = _file.readUint16LE();
|
|
|
|
if (_file.ioFailed()) {
|
|
|
|
if (!_looping) {
|
|
|
|
stop();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
_file.clearIOFailed();
|
|
|
|
_file.seek(WAVEHEADERSIZE);
|
|
|
|
sample = _file.readUint16LE();
|
|
|
|
}
|
|
|
|
if (_fading > 0) {
|
|
|
|
if (--_fading == 0) {
|
|
|
|
_looping = false;
|
|
|
|
_file.close();
|
|
|
|
}
|
2004-01-01 16:56:00 +00:00
|
|
|
sample = (sample * _fading) / _fadeSamples;
|
2004-01-01 15:22:15 +00:00
|
|
|
} else if (_fading < 0) {
|
|
|
|
_fading++;
|
2004-01-01 16:56:00 +00:00
|
|
|
sample = (sample * (_fadeSamples + _fading)) / _fadeSamples;
|
2004-01-01 15:22:15 +00:00
|
|
|
}
|
|
|
|
return sample;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SwordMusicHandle::play(const char *filename, bool loop) {
|
|
|
|
uint8 wavHeader[WAVEHEADERSIZE];
|
|
|
|
stop();
|
|
|
|
_file.open(filename);
|
2004-01-04 16:19:15 +00:00
|
|
|
if (!_file.isOpen()) {
|
|
|
|
warning("Music file %s could not be opened", filename);
|
2004-01-01 15:22:15 +00:00
|
|
|
return false;
|
2004-01-04 16:19:15 +00:00
|
|
|
}
|
2004-01-01 15:22:15 +00:00
|
|
|
_file.read(wavHeader, WAVEHEADERSIZE);
|
|
|
|
_stereo = (READ_LE_UINT16(wavHeader + 0x16) == 2);
|
|
|
|
_rate = READ_LE_UINT16(wavHeader + 0x18);
|
|
|
|
_looping = loop;
|
|
|
|
fadeUp();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SwordMusicHandle::stop() {
|
|
|
|
if (_file.isOpen())
|
|
|
|
_file.close();
|
|
|
|
_fading = 0;
|
|
|
|
_looping = false;
|
|
|
|
}
|
|
|
|
|
2003-12-16 02:10:15 +00:00
|
|
|
SwordMusic::SwordMusic(OSystem *system, SoundMixer *pMixer) {
|
|
|
|
_system = system;
|
|
|
|
_mixer = pMixer;
|
|
|
|
_mixer->setupPremix(passMixerFunc, this);
|
|
|
|
_mutex = _system->create_mutex();
|
2004-01-01 15:22:15 +00:00
|
|
|
_converter[0] = NULL;
|
|
|
|
_converter[1] = NULL;
|
2004-01-06 11:48:30 +00:00
|
|
|
_volume = 192;
|
2003-12-16 02:10:15 +00:00
|
|
|
}
|
|
|
|
|
2003-12-19 01:08:30 +00:00
|
|
|
SwordMusic::~SwordMusic() {
|
|
|
|
_mixer->setupPremix(0, 0);
|
2004-01-01 15:22:15 +00:00
|
|
|
delete _converter[0];
|
|
|
|
delete _converter[1];
|
2004-01-03 11:12:35 +00:00
|
|
|
if (_mutex)
|
|
|
|
_system->delete_mutex(_mutex);
|
2003-12-19 01:08:30 +00:00
|
|
|
}
|
|
|
|
|
2003-12-16 02:10:15 +00:00
|
|
|
void SwordMusic::passMixerFunc(void *param, int16 *buf, uint len) {
|
|
|
|
((SwordMusic*)param)->mixer(buf, len);
|
|
|
|
}
|
|
|
|
|
2003-12-22 02:47:43 +00:00
|
|
|
void SwordMusic::mixer(int16 *buf, uint32 len) {
|
2004-01-01 15:22:15 +00:00
|
|
|
Common::StackLock lock(_mutex);
|
2004-01-06 11:48:30 +00:00
|
|
|
for (int i = 0; i < ARRAYSIZE(_handles); i++)
|
|
|
|
if (_handles[i].streaming() && _converter[i])
|
|
|
|
_converter[i]->flow(_handles[i], buf, len, _volume, _volume);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SwordMusic::setVolume(uint8 vol) {
|
|
|
|
_volume = (st_volume_t)vol;
|
2003-12-16 02:10:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SwordMusic::startMusic(int32 tuneId, int32 loopFlag) {
|
2004-01-01 15:22:15 +00:00
|
|
|
Common::StackLock lock(_mutex);
|
|
|
|
if (strlen(_tuneList[tuneId]) > 0) {
|
|
|
|
int newStream = 0;
|
|
|
|
if (_handles[0].streaming() && _handles[1].streaming()) {
|
|
|
|
// If both handles are playing, stop the one that's
|
|
|
|
// fading down.
|
|
|
|
if (_handles[0].fading() > 0)
|
|
|
|
_handles[0].stop();
|
|
|
|
else
|
|
|
|
_handles[1].stop();
|
|
|
|
}
|
|
|
|
if (_handles[0].streaming()) {
|
|
|
|
_handles[0].fadeDown();
|
|
|
|
newStream = 1;
|
|
|
|
} else if (_handles[1].streaming()) {
|
|
|
|
_handles[1].fadeDown();
|
|
|
|
newStream = 0;
|
|
|
|
}
|
2003-12-16 02:10:15 +00:00
|
|
|
char fName[20];
|
2003-12-17 09:17:59 +00:00
|
|
|
sprintf(fName, "music/%s.wav", _tuneList[tuneId]);
|
2004-01-04 16:19:15 +00:00
|
|
|
if (_handles[newStream].play(fName, loopFlag != 0)) {
|
|
|
|
delete _converter[newStream];
|
|
|
|
_converter[newStream] = makeRateConverter(_handles[newStream].getRate(), _mixer->getOutputRate(), _handles[newStream].isStereo(), false);
|
|
|
|
}
|
2004-01-01 16:56:00 +00:00
|
|
|
} else {
|
|
|
|
if (_handles[0].streaming())
|
|
|
|
_handles[0].fadeDown();
|
|
|
|
if (_handles[1].streaming())
|
|
|
|
_handles[1].fadeDown();
|
2003-12-30 22:57:52 +00:00
|
|
|
}
|
2003-12-16 02:10:15 +00:00
|
|
|
}
|
|
|
|
|
2004-01-01 15:22:15 +00:00
|
|
|
void SwordMusic::fadeDown() {
|
|
|
|
Common::StackLock lock(_mutex);
|
|
|
|
for (int i = 0; i < ARRAYSIZE(_handles); i++)
|
|
|
|
if (_handles[i].streaming())
|
|
|
|
_handles[i].fadeDown();
|
2003-12-16 02:10:15 +00:00
|
|
|
}
|