2008-05-08 00:47:23 +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.
|
|
|
|
*
|
|
|
|
* $URL$
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "gob/gob.h"
|
|
|
|
#include "gob/sound/sound.h"
|
|
|
|
#include "gob/global.h"
|
|
|
|
#include "gob/util.h"
|
|
|
|
#include "gob/dataio.h"
|
|
|
|
#include "gob/game.h"
|
2008-05-28 21:15:11 +00:00
|
|
|
#include "gob/inter.h"
|
2008-05-08 00:47:23 +00:00
|
|
|
|
|
|
|
namespace Gob {
|
|
|
|
|
|
|
|
Sound::Sound(GobEngine *vm) : _vm(vm) {
|
|
|
|
_pcspeaker = new PCSpeaker(*_vm->_mixer);
|
|
|
|
_blaster = new SoundBlaster(*_vm->_mixer);
|
|
|
|
|
|
|
|
_adlib = 0;
|
|
|
|
_infogrames = 0;
|
|
|
|
_cdrom = 0;
|
2008-05-08 15:51:02 +00:00
|
|
|
_bgatmos = 0;
|
2008-05-08 00:47:23 +00:00
|
|
|
|
|
|
|
if (!_vm->_noMusic && _vm->hasAdlib())
|
|
|
|
_adlib = new AdLib(*_vm->_mixer);
|
|
|
|
if (!_vm->_noMusic && (_vm->getPlatform() == Common::kPlatformAmiga))
|
|
|
|
_infogrames = new Infogrames(*_vm->_mixer);
|
|
|
|
if (_vm->isCD())
|
|
|
|
_cdrom = new CDROM;
|
2008-05-08 15:51:02 +00:00
|
|
|
if (_vm->getGameType() == kGameTypeWoodruff)
|
|
|
|
_bgatmos = new BackgroundAtmosphere(*_vm->_mixer);
|
2008-12-14 03:44:39 +00:00
|
|
|
if (_vm->getGameType() == kGameTypeUrban)
|
|
|
|
_bgatmos = new BackgroundAtmosphere(*_vm->_mixer);
|
2008-05-08 00:47:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Sound::~Sound() {
|
|
|
|
delete _pcspeaker;
|
|
|
|
delete _blaster;
|
|
|
|
delete _adlib;
|
|
|
|
delete _infogrames;
|
2008-05-22 14:25:27 +00:00
|
|
|
delete _cdrom;
|
|
|
|
delete _bgatmos;
|
2008-05-08 00:47:23 +00:00
|
|
|
|
|
|
|
for (int i = 0; i < kSoundsCount; i++)
|
|
|
|
_sounds[i].free();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sound::convToSigned(byte *buffer, int length) {
|
|
|
|
while (length-- > 0)
|
|
|
|
*buffer++ ^= 0x80;
|
|
|
|
}
|
|
|
|
|
|
|
|
SoundDesc *Sound::sampleGetBySlot(int slot) {
|
|
|
|
if ((slot < 0) || (slot >= kSoundsCount))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return &_sounds[slot];
|
|
|
|
}
|
|
|
|
|
|
|
|
const SoundDesc *Sound::sampleGetBySlot(int slot) const {
|
|
|
|
if ((slot < 0) || (slot >= kSoundsCount))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return &_sounds[slot];
|
|
|
|
}
|
|
|
|
|
|
|
|
int Sound::sampleGetNextFreeSlot() const {
|
|
|
|
for (int i = 0; i < kSoundsCount; i++)
|
|
|
|
if (_sounds[i].empty())
|
|
|
|
return i;
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2008-12-14 03:44:39 +00:00
|
|
|
bool Sound::sampleLoad(SoundDesc *sndDesc, SoundType type, const char *fileName, bool tryExist) {
|
2008-05-08 00:47:23 +00:00
|
|
|
if (!sndDesc)
|
|
|
|
return false;
|
|
|
|
|
2008-05-17 19:01:00 +00:00
|
|
|
debugC(2, kDebugSound, "Loading sample \"%s\"", fileName);
|
|
|
|
|
2008-05-08 15:51:02 +00:00
|
|
|
int16 handle = _vm->_dataIO->openData(fileName);
|
|
|
|
if (handle < 0) {
|
|
|
|
warning("Can't open sample file \"%s\"", fileName);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
_vm->_dataIO->closeData(handle);
|
|
|
|
|
2008-05-08 00:47:23 +00:00
|
|
|
byte *data;
|
|
|
|
uint32 size;
|
|
|
|
|
|
|
|
data = (byte *) _vm->_dataIO->getData(fileName);
|
|
|
|
if (!data)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
size = _vm->_dataIO->getDataSize(fileName);
|
2008-12-14 03:44:39 +00:00
|
|
|
return sndDesc->load(type, SOUND_FILE, data, size);
|
2008-05-08 00:47:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Sound::sampleFree(SoundDesc *sndDesc, bool noteAdlib, int index) {
|
|
|
|
if (!sndDesc || sndDesc->empty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (sndDesc->getType() == SOUND_ADL) {
|
|
|
|
|
|
|
|
if (_adlib && noteAdlib)
|
|
|
|
if ((index == -1) || (_adlib->getIndex() == index))
|
|
|
|
_adlib->stopPlay();
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
if (_blaster)
|
|
|
|
_blaster->stopSound(0, sndDesc);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
sndDesc->free();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sound::speakerOn(int16 frequency, int32 length) {
|
|
|
|
if (!_pcspeaker)
|
|
|
|
return;
|
|
|
|
|
2008-05-17 19:01:00 +00:00
|
|
|
debugC(1, kDebugSound, "PCSpeaker: Playing tone (%d, %d)", frequency, length);
|
|
|
|
|
2008-05-08 00:47:23 +00:00
|
|
|
_pcspeaker->speakerOn(frequency, length);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sound::speakerOff() {
|
|
|
|
if (!_pcspeaker)
|
|
|
|
return;
|
|
|
|
|
2008-05-17 19:01:00 +00:00
|
|
|
debugC(1, kDebugSound, "PCSpeaker: Stopping tone");
|
|
|
|
|
2008-05-08 00:47:23 +00:00
|
|
|
_pcspeaker->speakerOff();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sound::speakerOnUpdate(uint32 millis) {
|
|
|
|
if (!_pcspeaker)
|
|
|
|
return;
|
|
|
|
|
|
|
|
_pcspeaker->onUpdate(millis);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Sound::infogramesLoadInstruments(const char *fileName) {
|
|
|
|
if (!_infogrames)
|
|
|
|
return false;
|
|
|
|
|
2008-05-17 19:01:00 +00:00
|
|
|
debugC(1, kDebugSound, "Infogrames: Loading instruments \"%s\"", fileName);
|
|
|
|
|
2008-05-08 00:47:23 +00:00
|
|
|
return _infogrames->loadInstruments(fileName);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Sound::infogramesLoadSong(const char *fileName) {
|
|
|
|
if (!_infogrames)
|
|
|
|
return false;
|
|
|
|
|
2008-05-17 19:01:00 +00:00
|
|
|
debugC(1, kDebugSound, "Infogrames: Loading song \"%s\"", fileName);
|
|
|
|
|
2008-05-08 00:47:23 +00:00
|
|
|
return _infogrames->loadSong(fileName);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sound::infogramesPlay() {
|
|
|
|
if (!_infogrames)
|
|
|
|
return;
|
|
|
|
|
2008-05-17 19:01:00 +00:00
|
|
|
debugC(1, kDebugSound, "Infogrames: Starting playback");
|
|
|
|
|
2008-05-08 00:47:23 +00:00
|
|
|
_infogrames->play();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sound::infogramesStop() {
|
|
|
|
if (!_infogrames)
|
|
|
|
return;
|
|
|
|
|
2008-05-17 19:01:00 +00:00
|
|
|
debugC(1, kDebugSound, "Infogrames: Stopping playback");
|
|
|
|
|
2008-05-08 00:47:23 +00:00
|
|
|
_infogrames->stop();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Sound::adlibLoad(const char *fileName) {
|
|
|
|
if (!_adlib)
|
|
|
|
return false;
|
|
|
|
|
2008-05-17 19:01:00 +00:00
|
|
|
debugC(1, kDebugSound, "Adlib: Loading data (\"%s\")", fileName);
|
|
|
|
|
2008-05-08 00:47:23 +00:00
|
|
|
return _adlib->load(fileName);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Sound::adlibLoad(byte *data, uint32 size, int index) {
|
|
|
|
if (!_adlib)
|
|
|
|
return false;
|
|
|
|
|
2008-05-17 19:01:00 +00:00
|
|
|
debugC(1, kDebugSound, "Adlib: Loading data (%d)", index);
|
|
|
|
|
2008-05-08 00:47:23 +00:00
|
|
|
return _adlib->load(data, size, index);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sound::adlibUnload() {
|
|
|
|
if (!_adlib)
|
|
|
|
return;
|
|
|
|
|
2008-05-17 19:01:00 +00:00
|
|
|
debugC(1, kDebugSound, "Adlib: Unloading data");
|
|
|
|
|
2008-05-08 00:47:23 +00:00
|
|
|
_adlib->unload();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sound::adlibPlayTrack(const char *trackname) {
|
|
|
|
if (!_adlib || _adlib->isPlaying())
|
|
|
|
return;
|
|
|
|
|
2008-05-17 19:01:00 +00:00
|
|
|
debugC(1, kDebugSound, "Adlib: Playing track \"%s\"", trackname);
|
2008-05-08 00:47:23 +00:00
|
|
|
|
|
|
|
_adlib->unload();
|
|
|
|
_adlib->load(trackname);
|
|
|
|
_adlib->startPlay();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sound::adlibPlayBgMusic() {
|
|
|
|
if (!_adlib)
|
|
|
|
return;
|
|
|
|
|
|
|
|
static const char *tracks[] = {
|
|
|
|
// "musmac1.adl", // TODO: This track isn't played correctly at all yet
|
|
|
|
"musmac2.adl",
|
|
|
|
"musmac3.adl",
|
|
|
|
"musmac4.adl",
|
|
|
|
"musmac5.adl",
|
|
|
|
"musmac6.adl"
|
|
|
|
};
|
|
|
|
|
|
|
|
int track = _vm->_util->getRandom(ARRAYSIZE(tracks));
|
|
|
|
adlibPlayTrack(tracks[track]);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sound::adlibPlay() {
|
|
|
|
if (!_adlib)
|
|
|
|
return;
|
|
|
|
|
2008-05-17 19:01:00 +00:00
|
|
|
debugC(1, kDebugSound, "Adlib: Starting playback");
|
|
|
|
|
2008-05-08 00:47:23 +00:00
|
|
|
_adlib->startPlay();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sound::adlibStop() {
|
|
|
|
if (!_adlib)
|
|
|
|
return;
|
|
|
|
|
2008-05-17 19:01:00 +00:00
|
|
|
debugC(1, kDebugSound, "Adlib: Stopping playback");
|
|
|
|
|
2008-05-08 00:47:23 +00:00
|
|
|
_adlib->stopPlay();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Sound::adlibIsPlaying() const {
|
|
|
|
if (!_adlib)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return _adlib->isPlaying();
|
|
|
|
}
|
|
|
|
|
|
|
|
int Sound::adlibGetIndex() const {
|
|
|
|
if (!_adlib)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return _adlib->getIndex();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Sound::adlibGetRepeating() const {
|
|
|
|
if (!_adlib)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return _adlib->getRepeating();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sound::adlibSetRepeating(int32 repCount) {
|
|
|
|
if (!_adlib)
|
|
|
|
return;
|
|
|
|
|
|
|
|
_adlib->setRepeating(repCount);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sound::blasterPlay(SoundDesc *sndDesc, int16 repCount,
|
|
|
|
int16 frequency, int16 fadeLength) {
|
|
|
|
if (!_blaster || !sndDesc)
|
|
|
|
return;
|
|
|
|
|
2008-05-17 19:01:00 +00:00
|
|
|
debugC(1, kDebugSound, "SoundBlaster: Playing sample (%d, %d, %d)",
|
|
|
|
repCount, frequency, fadeLength);
|
|
|
|
|
2008-05-08 00:47:23 +00:00
|
|
|
_blaster->playSample(*sndDesc, repCount, frequency, fadeLength);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sound::blasterStop(int16 fadeLength, SoundDesc *sndDesc) {
|
|
|
|
if (!_blaster)
|
|
|
|
return;
|
|
|
|
|
2008-05-17 19:01:00 +00:00
|
|
|
debugC(1, kDebugSound, "SoundBlaster: Stopping playback");
|
|
|
|
|
2008-05-08 00:47:23 +00:00
|
|
|
_blaster->stopSound(fadeLength, sndDesc);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sound::blasterPlayComposition(int16 *composition, int16 freqVal,
|
|
|
|
SoundDesc *sndDescs, int8 sndCount) {
|
|
|
|
if (!_blaster)
|
|
|
|
return;
|
|
|
|
|
2008-05-17 19:01:00 +00:00
|
|
|
debugC(1, kDebugSound, "SoundBlaster: Playing composition (%d, %d)",
|
|
|
|
freqVal, sndCount);
|
|
|
|
|
2008-05-08 00:47:23 +00:00
|
|
|
blasterWaitEndPlay();
|
|
|
|
_blaster->stopComposition();
|
|
|
|
|
|
|
|
if (!sndDescs)
|
|
|
|
sndDescs = _sounds;
|
|
|
|
|
|
|
|
_blaster->playComposition(composition, freqVal, sndDescs, sndCount);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sound::blasterStopComposition() {
|
|
|
|
if (!_blaster)
|
|
|
|
return;
|
|
|
|
|
2008-05-17 19:01:00 +00:00
|
|
|
debugC(1, kDebugSound, "SoundBlaster: Stopping composition");
|
|
|
|
|
2008-05-08 00:47:23 +00:00
|
|
|
_blaster->stopComposition();
|
|
|
|
}
|
|
|
|
|
|
|
|
char Sound::blasterPlayingSound() const {
|
|
|
|
if (!_blaster)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return _blaster->getPlayingSound();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sound::blasterSetRepeating(int32 repCount) {
|
|
|
|
if (!_blaster)
|
|
|
|
return;
|
|
|
|
|
|
|
|
_blaster->setRepeating(repCount);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sound::blasterWaitEndPlay(bool interruptible, bool stopComp) {
|
|
|
|
if (!_blaster)
|
|
|
|
return;
|
|
|
|
|
2008-05-17 19:01:00 +00:00
|
|
|
debugC(1, kDebugSound, "SoundBlaster: Waiting for playback to end");
|
|
|
|
|
2008-05-08 00:47:23 +00:00
|
|
|
if (stopComp)
|
|
|
|
_blaster->endComposition();
|
|
|
|
|
2008-09-30 12:27:38 +00:00
|
|
|
while (_blaster->isPlaying() && !_vm->shouldQuit()) {
|
2008-05-08 00:47:23 +00:00
|
|
|
if (interruptible && (_vm->_util->checkKey() == 0x11B)) {
|
2008-05-28 21:15:11 +00:00
|
|
|
WRITE_VAR(57, (uint32) -1);
|
2008-05-08 00:47:23 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
_vm->_util->longDelay(200);
|
|
|
|
}
|
|
|
|
|
|
|
|
_blaster->stopSound(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sound::cdLoadLIC(const char *fname) {
|
|
|
|
if (!_cdrom)
|
|
|
|
return;
|
|
|
|
|
2008-05-17 19:01:00 +00:00
|
|
|
debugC(1, kDebugSound, "CDROM: Loading LIC \"%s\"", fname);
|
|
|
|
|
2008-05-08 00:47:23 +00:00
|
|
|
int handle = _vm->_dataIO->openData(fname);
|
|
|
|
|
|
|
|
if (handle == -1)
|
|
|
|
return;
|
|
|
|
|
|
|
|
_vm->_dataIO->closeData(handle);
|
|
|
|
|
|
|
|
_vm->_dataIO->getUnpackedData(fname);
|
|
|
|
|
|
|
|
handle = _vm->_dataIO->openData(fname);
|
|
|
|
DataStream *stream = _vm->_dataIO->openAsStream(handle, true);
|
|
|
|
|
|
|
|
_cdrom->readLIC(*stream);
|
|
|
|
|
|
|
|
delete stream;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sound::cdUnloadLIC() {
|
|
|
|
if (!_cdrom)
|
|
|
|
return;
|
|
|
|
|
2008-05-17 19:01:00 +00:00
|
|
|
debugC(1, kDebugSound, "CDROM: Unloading LIC");
|
|
|
|
|
2008-05-08 00:47:23 +00:00
|
|
|
_cdrom->freeLICBuffer();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sound::cdPlayBgMusic() {
|
|
|
|
if (!_cdrom)
|
|
|
|
return;
|
|
|
|
|
|
|
|
static const char *tracks[][2] = {
|
|
|
|
{"avt00.tot", "mine"},
|
|
|
|
{"avt001.tot", "nuit"},
|
|
|
|
{"avt002.tot", "campagne"},
|
|
|
|
{"avt003.tot", "extsor1"},
|
|
|
|
{"avt004.tot", "interieure"},
|
|
|
|
{"avt005.tot", "zombie"},
|
|
|
|
{"avt006.tot", "zombie"},
|
|
|
|
{"avt007.tot", "campagne"},
|
|
|
|
{"avt008.tot", "campagne"},
|
|
|
|
{"avt009.tot", "extsor1"},
|
|
|
|
{"avt010.tot", "extsor1"},
|
|
|
|
{"avt011.tot", "interieure"},
|
|
|
|
{"avt012.tot", "zombie"},
|
|
|
|
{"avt014.tot", "nuit"},
|
|
|
|
{"avt015.tot", "interieure"},
|
|
|
|
{"avt016.tot", "statue"},
|
|
|
|
{"avt017.tot", "zombie"},
|
|
|
|
{"avt018.tot", "statue"},
|
|
|
|
{"avt019.tot", "mine"},
|
|
|
|
{"avt020.tot", "statue"},
|
|
|
|
{"avt021.tot", "mine"},
|
|
|
|
{"avt022.tot", "zombie"}
|
|
|
|
};
|
|
|
|
|
|
|
|
for (int i = 0; i < ARRAYSIZE(tracks); i++)
|
|
|
|
if (!scumm_stricmp(_vm->_game->_curTotFile, tracks[i][0])) {
|
2008-05-17 19:01:00 +00:00
|
|
|
debugC(1, kDebugSound, "CDROM: Playing background music \"%s\" (\"%s\")",
|
|
|
|
tracks[i][1], _vm->_game->_curTotFile);
|
|
|
|
|
2008-05-08 00:47:23 +00:00
|
|
|
_cdrom->startTrack(tracks[i][1]);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sound::cdPlayMultMusic() {
|
|
|
|
if (!_cdrom)
|
|
|
|
return;
|
|
|
|
|
|
|
|
static const char *tracks[][6] = {
|
|
|
|
{"avt005.tot", "fra1", "all1", "ang1", "esp1", "ita1"},
|
|
|
|
{"avt006.tot", "fra2", "all2", "ang2", "esp2", "ita2"},
|
|
|
|
{"avt012.tot", "fra3", "all3", "ang3", "esp3", "ita3"},
|
|
|
|
{"avt016.tot", "fra4", "all4", "ang4", "esp4", "ita4"},
|
|
|
|
{"avt019.tot", "fra5", "all5", "ang5", "esp5", "ita5"},
|
|
|
|
{"avt022.tot", "fra6", "all6", "ang6", "esp6", "ita6"}
|
|
|
|
};
|
|
|
|
|
|
|
|
// Default to "ang?" for other languages (including EN_USA)
|
|
|
|
int language = _vm->_global->_language <= 4 ? _vm->_global->_language : 2;
|
|
|
|
for (int i = 0; i < ARRAYSIZE(tracks); i++)
|
|
|
|
if (!scumm_stricmp(_vm->_game->_curTotFile, tracks[i][0])) {
|
2008-05-17 19:01:00 +00:00
|
|
|
debugC(1, kDebugSound, "CDROM: Playing mult music \"%s\" (\"%s\")",
|
|
|
|
tracks[i][language + 1], _vm->_game->_curTotFile);
|
|
|
|
|
2008-05-08 00:47:23 +00:00
|
|
|
_cdrom->startTrack(tracks[i][language + 1]);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sound::cdPlay(const char *trackName) {
|
|
|
|
if (!_cdrom)
|
|
|
|
return;
|
|
|
|
|
2008-05-17 19:01:00 +00:00
|
|
|
debugC(1, kDebugSound, "CDROM: Playing track \"%s\"", trackName);
|
2008-05-08 00:47:23 +00:00
|
|
|
_cdrom->startTrack(trackName);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sound::cdStop() {
|
|
|
|
if (!_cdrom)
|
|
|
|
return;
|
|
|
|
|
2008-05-17 19:01:00 +00:00
|
|
|
debugC(1, kDebugSound, "CDROM: Stopping playback");
|
2008-05-08 00:47:23 +00:00
|
|
|
_cdrom->stopPlaying();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Sound::cdIsPlaying() const {
|
|
|
|
if (!_cdrom)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return _cdrom->isPlaying();
|
|
|
|
}
|
|
|
|
|
|
|
|
int32 Sound::cdGetTrackPos(const char *keyTrack) const {
|
|
|
|
if (!_cdrom)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return _cdrom->getTrackPos(keyTrack);
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *Sound::cdGetCurrentTrack() const {
|
|
|
|
if (!_cdrom)
|
|
|
|
return "";
|
|
|
|
|
|
|
|
return _cdrom->getCurTrack();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sound::cdTest(int trySubst, const char *label) {
|
|
|
|
if (!_cdrom)
|
|
|
|
return;
|
|
|
|
|
|
|
|
_cdrom->testCD(trySubst, label);
|
|
|
|
}
|
|
|
|
|
2008-12-14 03:44:39 +00:00
|
|
|
void Sound::bgPlay(const char *file, SoundType type) {
|
2008-12-14 03:08:02 +00:00
|
|
|
if (!_bgatmos)
|
|
|
|
return;
|
|
|
|
|
|
|
|
debugC(1, kDebugSound, "BackgroundAtmosphere: Playing \"%s\"", file);
|
|
|
|
|
|
|
|
_bgatmos->stop();
|
|
|
|
_bgatmos->queueClear();
|
|
|
|
|
|
|
|
SoundDesc *sndDesc = new SoundDesc;
|
2008-12-14 03:44:39 +00:00
|
|
|
if (!sampleLoad(sndDesc, type, file)) {
|
2008-12-14 03:08:02 +00:00
|
|
|
delete sndDesc;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
_bgatmos->queueSample(*sndDesc);
|
|
|
|
_bgatmos->play();
|
|
|
|
}
|
|
|
|
|
2008-12-14 03:44:39 +00:00
|
|
|
void Sound::bgPlay(const char *base, const char *ext, SoundType type, int count) {
|
2008-05-08 15:51:02 +00:00
|
|
|
if (!_bgatmos)
|
|
|
|
return;
|
|
|
|
|
2008-05-17 19:01:00 +00:00
|
|
|
debugC(1, kDebugSound, "BackgroundAtmosphere: Playing \"%s\" (%d)", base, count);
|
|
|
|
|
2008-05-08 15:51:02 +00:00
|
|
|
_bgatmos->stop();
|
|
|
|
_bgatmos->queueClear();
|
|
|
|
|
|
|
|
int length = strlen(base) + 7;
|
|
|
|
char *fileName = new char[length];
|
|
|
|
SoundDesc *sndDesc;
|
|
|
|
|
|
|
|
for (int i = 1; i <= count; i++) {
|
2008-12-14 03:44:39 +00:00
|
|
|
snprintf(fileName, length, "%s%02d.%s", base, i, ext);
|
2008-05-08 15:51:02 +00:00
|
|
|
|
|
|
|
sndDesc = new SoundDesc;
|
2008-12-14 03:44:39 +00:00
|
|
|
if (sampleLoad(sndDesc, type, fileName))
|
2008-05-08 15:51:02 +00:00
|
|
|
_bgatmos->queueSample(*sndDesc);
|
2008-12-14 03:08:02 +00:00
|
|
|
else
|
|
|
|
delete sndDesc;
|
2008-05-08 15:51:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_bgatmos->play();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sound::bgStop() {
|
|
|
|
if (!_bgatmos)
|
|
|
|
return;
|
|
|
|
|
2008-05-17 19:01:00 +00:00
|
|
|
debugC(1, kDebugSound, "BackgroundAtmosphere: Stopping playback");
|
|
|
|
|
2008-05-08 15:51:02 +00:00
|
|
|
_bgatmos->stop();
|
|
|
|
_bgatmos->queueClear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sound::bgSetPlayMode(BackgroundAtmosphere::PlayMode mode) {
|
|
|
|
if (!_bgatmos)
|
|
|
|
return;
|
|
|
|
|
|
|
|
_bgatmos->setPlayMode(mode);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sound::bgShade() {
|
|
|
|
if (!_bgatmos)
|
|
|
|
return;
|
|
|
|
|
2008-05-17 19:01:00 +00:00
|
|
|
debugC(1, kDebugSound, "BackgroundAtmosphere: Shading playback");
|
|
|
|
|
2008-05-08 15:51:02 +00:00
|
|
|
_bgatmos->shade();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sound::bgUnshade() {
|
|
|
|
if (!_bgatmos)
|
|
|
|
return;
|
|
|
|
|
2008-05-17 19:01:00 +00:00
|
|
|
debugC(1, kDebugSound, "BackgroundAtmosphere: Unshading playback");
|
|
|
|
|
2008-05-08 15:51:02 +00:00
|
|
|
_bgatmos->unshade();
|
|
|
|
}
|
|
|
|
|
2008-05-08 00:47:23 +00:00
|
|
|
} // End of namespace Gob
|