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.
|
2003-10-21 12:29:37 +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.
|
2014-02-18 01:34:23 +00:00
|
|
|
*
|
2003-10-21 12:29:37 +00:00
|
|
|
* 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.
|
2014-02-18 01:34:23 +00:00
|
|
|
*
|
2003-10-21 12:29:37 +00:00
|
|
|
* 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.
|
2003-10-21 12:29:37 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2006-11-12 17:47:16 +00:00
|
|
|
#ifndef QUEEN_SOUND_H
|
|
|
|
#define QUEEN_SOUND_H
|
2003-10-21 12:29:37 +00:00
|
|
|
|
2003-12-01 20:48:41 +00:00
|
|
|
#include "common/util.h"
|
2011-02-09 01:09:01 +00:00
|
|
|
#include "audio/mixer.h"
|
|
|
|
#include "audio/mods/rjp1.h"
|
2003-10-21 12:29:37 +00:00
|
|
|
#include "queen/defs.h"
|
|
|
|
|
2006-11-24 18:37:43 +00:00
|
|
|
namespace Common {
|
2011-04-25 19:29:26 +00:00
|
|
|
class File;
|
2006-11-24 18:37:43 +00:00
|
|
|
}
|
|
|
|
|
2003-10-21 12:29:37 +00:00
|
|
|
namespace Queen {
|
|
|
|
|
2007-11-15 20:21:33 +00:00
|
|
|
struct SongData {
|
2003-11-14 00:45:44 +00:00
|
|
|
int16 tuneList[5];
|
|
|
|
int16 volume;
|
|
|
|
int16 tempo;
|
|
|
|
int16 reverb;
|
2013-01-26 13:42:41 +00:00
|
|
|
int16 overrideCmd;
|
2003-11-14 00:45:44 +00:00
|
|
|
int16 ignore;
|
|
|
|
};
|
|
|
|
|
2007-11-15 20:21:33 +00:00
|
|
|
struct TuneData {
|
2003-11-14 00:45:44 +00:00
|
|
|
int16 tuneNum[9];
|
|
|
|
int16 sfx[2];
|
|
|
|
int16 mode;
|
|
|
|
int16 delay;
|
|
|
|
};
|
|
|
|
|
2007-03-08 22:15:20 +00:00
|
|
|
class MidiMusic;
|
2003-12-11 22:16:35 +00:00
|
|
|
class QueenEngine;
|
|
|
|
|
2003-10-21 12:29:37 +00:00
|
|
|
class Sound {
|
|
|
|
public:
|
2005-05-10 23:48:48 +00:00
|
|
|
Sound(Audio::Mixer *mixer, QueenEngine *vm);
|
2007-02-18 21:46:40 +00:00
|
|
|
virtual ~Sound() {}
|
2007-02-20 19:23:07 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Factory method for subclasses of class Sound.
|
|
|
|
*/
|
|
|
|
static Sound *makeSoundInstance(Audio::Mixer *mixer, QueenEngine *vm, uint8 compression);
|
|
|
|
|
2007-02-21 20:27:48 +00:00
|
|
|
virtual void playSfx(uint16 sfx) {}
|
|
|
|
virtual void playSong(int16 songNum) {}
|
|
|
|
virtual void playSpeech(const char *base) {}
|
|
|
|
|
|
|
|
virtual void stopSfx() {}
|
|
|
|
virtual void stopSong() {}
|
|
|
|
virtual void stopSpeech() {}
|
|
|
|
|
|
|
|
virtual bool isSpeechActive() const { return false; }
|
|
|
|
virtual bool isSfxActive() const { return false; }
|
|
|
|
|
2007-02-22 12:12:45 +00:00
|
|
|
virtual void updateMusic() {}
|
|
|
|
|
2007-03-20 23:24:54 +00:00
|
|
|
virtual void setVolume(int vol);
|
|
|
|
virtual int getVolume() { return _musicVolume; }
|
2007-02-21 20:27:48 +00:00
|
|
|
|
2004-02-27 23:54:13 +00:00
|
|
|
void playLastSong() { playSong(_lastOverride); }
|
2005-07-30 21:11:48 +00:00
|
|
|
|
2004-11-22 22:16:50 +00:00
|
|
|
bool sfxOn() const { return _sfxToggle; }
|
2003-11-15 21:33:04 +00:00
|
|
|
void sfxToggle(bool val) { _sfxToggle = val; }
|
2007-02-21 20:27:48 +00:00
|
|
|
void toggleSfx() { _sfxToggle = !_sfxToggle; }
|
2003-11-15 21:33:04 +00:00
|
|
|
|
2004-02-27 23:54:13 +00:00
|
|
|
bool speechOn() const { return _speechToggle; }
|
2003-11-15 21:33:04 +00:00
|
|
|
void speechToggle(bool val) { _speechToggle = val; }
|
2007-02-21 20:27:48 +00:00
|
|
|
void toggleSpeech() { _speechToggle = !_speechToggle; }
|
2005-07-30 21:11:48 +00:00
|
|
|
|
2004-02-27 23:54:13 +00:00
|
|
|
bool musicOn() const { return _musicToggle; }
|
2003-11-15 21:33:04 +00:00
|
|
|
void musicToggle(bool val) { _musicToggle = val; }
|
2007-02-21 20:27:48 +00:00
|
|
|
void toggleMusic() { _musicToggle = !_musicToggle; }
|
2005-07-30 21:11:48 +00:00
|
|
|
|
2004-12-19 12:19:21 +00:00
|
|
|
bool speechSfxExists() const { return _speechSfxExists; }
|
2005-07-30 21:11:48 +00:00
|
|
|
|
2004-02-27 23:54:13 +00:00
|
|
|
int16 lastOverride() const { return _lastOverride; }
|
2004-01-12 13:40:02 +00:00
|
|
|
|
|
|
|
void saveState(byte *&ptr);
|
|
|
|
void loadState(uint32 ver, byte *&ptr);
|
|
|
|
|
2007-11-15 20:21:33 +00:00
|
|
|
static const SongData _songDemo[];
|
|
|
|
static const SongData _song[];
|
|
|
|
static const TuneData _tuneDemo[];
|
|
|
|
static const TuneData _tune[];
|
2011-09-08 18:06:37 +00:00
|
|
|
static const char *const _sfxName[];
|
2004-01-22 23:10:05 +00:00
|
|
|
static const int16 _jungleList[];
|
|
|
|
|
|
|
|
protected:
|
2004-01-25 22:10:23 +00:00
|
|
|
|
2005-05-10 23:48:48 +00:00
|
|
|
Audio::Mixer *_mixer;
|
2004-01-22 23:10:05 +00:00
|
|
|
QueenEngine *_vm;
|
2003-11-15 21:33:04 +00:00
|
|
|
|
|
|
|
bool _sfxToggle;
|
|
|
|
bool _speechToggle;
|
|
|
|
bool _musicToggle;
|
2004-12-19 12:19:21 +00:00
|
|
|
bool _speechSfxExists;
|
2005-07-30 21:11:48 +00:00
|
|
|
|
2003-11-07 02:33:20 +00:00
|
|
|
int16 _lastOverride;
|
2007-03-20 23:24:54 +00:00
|
|
|
int _musicVolume;
|
2007-02-21 20:27:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class PCSound : public Sound {
|
|
|
|
public:
|
|
|
|
PCSound(Audio::Mixer *mixer, QueenEngine *vm);
|
|
|
|
~PCSound();
|
|
|
|
|
|
|
|
void playSfx(uint16 sfx);
|
|
|
|
void playSpeech(const char *base);
|
|
|
|
void playSong(int16 songNum);
|
|
|
|
|
|
|
|
void stopSfx() { _mixer->stopHandle(_sfxHandle); }
|
|
|
|
void stopSong();
|
|
|
|
void stopSpeech() { _mixer->stopHandle(_speechHandle); }
|
|
|
|
|
|
|
|
bool isSpeechActive() const { return _mixer->isSoundHandleActive(_speechHandle); }
|
2008-01-28 00:14:17 +00:00
|
|
|
bool isSfxActive() const { return _mixer->isSoundHandleActive(_sfxHandle); }
|
2007-02-21 20:27:48 +00:00
|
|
|
|
|
|
|
void setVolume(int vol);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void playSound(const char *base, bool isSpeech);
|
|
|
|
|
|
|
|
virtual void playSoundData(Common::File *f, uint32 size, Audio::SoundHandle *soundHandle) = 0;
|
|
|
|
|
2005-05-11 00:01:44 +00:00
|
|
|
Audio::SoundHandle _sfxHandle;
|
|
|
|
Audio::SoundHandle _speechHandle;
|
2007-03-08 22:15:20 +00:00
|
|
|
MidiMusic *_music;
|
2007-02-21 20:27:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class AmigaSound : public Sound {
|
|
|
|
public:
|
|
|
|
AmigaSound(Audio::Mixer *mixer, QueenEngine *vm);
|
|
|
|
|
|
|
|
void playSfx(uint16 sfx);
|
|
|
|
void playSong(int16 song);
|
|
|
|
|
|
|
|
void stopSfx();
|
|
|
|
void stopSong();
|
|
|
|
|
2007-02-22 12:12:45 +00:00
|
|
|
bool isSfxActive() const { return _mixer->isSoundHandleActive(_sfxHandle); }
|
2007-02-21 20:27:48 +00:00
|
|
|
|
2007-02-22 12:12:45 +00:00
|
|
|
void updateMusic();
|
2007-02-21 20:27:48 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
void playSound(const char *base);
|
2007-11-18 20:27:31 +00:00
|
|
|
Audio::AudioStream *loadModule(const char *base, int song);
|
2007-02-21 20:27:48 +00:00
|
|
|
void playModule(const char *base, int song);
|
2007-11-18 20:27:31 +00:00
|
|
|
void playPattern(const char *base, int pattern);
|
2007-02-21 20:27:48 +00:00
|
|
|
bool playSpecialSfx(int16 sfx);
|
|
|
|
|
|
|
|
int16 _fanfareRestore;
|
|
|
|
int _fanfareCount, _fluteCount;
|
|
|
|
Audio::SoundHandle _modHandle;
|
2007-11-18 20:27:31 +00:00
|
|
|
Audio::SoundHandle _patHandle;
|
2007-02-21 20:27:48 +00:00
|
|
|
Audio::SoundHandle _sfxHandle;
|
2003-10-21 12:29:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // End of namespace Queen
|
|
|
|
|
|
|
|
#endif
|