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.
|
|
|
|
|
|
|
|
* 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.
|
2003-10-21 12:29:37 +00:00
|
|
|
*
|
2006-02-11 10:07:12 +00:00
|
|
|
* $URL$
|
|
|
|
* $Id$
|
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"
|
2003-10-21 12:29:37 +00:00
|
|
|
#include "sound/mixer.h"
|
2007-02-18 21:46:40 +00:00
|
|
|
#include "sound/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 {
|
|
|
|
class File;
|
|
|
|
}
|
|
|
|
|
2003-10-21 12:29:37 +00:00
|
|
|
namespace Queen {
|
|
|
|
|
2005-07-30 21:11:48 +00:00
|
|
|
struct songData {
|
2003-11-14 00:45:44 +00:00
|
|
|
int16 tuneList[5];
|
|
|
|
int16 volume;
|
|
|
|
int16 tempo;
|
|
|
|
int16 reverb;
|
|
|
|
int16 override;
|
|
|
|
int16 ignore;
|
|
|
|
};
|
|
|
|
|
2005-07-30 21:11:48 +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);
|
|
|
|
|
2005-11-05 18:12:41 +00:00
|
|
|
#ifndef PALMOS_68K
|
2004-01-25 05:03:35 +00:00
|
|
|
static const songData _songDemo[];
|
2003-11-14 00:45:44 +00:00
|
|
|
static const songData _song[];
|
2004-01-25 16:29:19 +00:00
|
|
|
static const tuneData _tuneDemo[];
|
2003-11-14 00:45:44 +00:00
|
|
|
static const tuneData _tune[];
|
|
|
|
static const char *_sfxName[];
|
2004-01-22 23:10:05 +00:00
|
|
|
static const int16 _jungleList[];
|
2004-03-17 14:10:51 +00:00
|
|
|
#else
|
|
|
|
static const songData *_songDemo;
|
|
|
|
static const songData *_song;
|
|
|
|
static const tuneData *_tuneDemo;
|
|
|
|
static const tuneData *_tune;
|
|
|
|
static const char *_sfxName;
|
|
|
|
static const int16 *_jungleList;
|
|
|
|
#endif
|
2004-01-22 23:10:05 +00:00
|
|
|
|
|
|
|
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); }
|
|
|
|
bool isSfxActive() const { return _mixer->isSoundHandleActive(_sfxHandle); }
|
|
|
|
|
|
|
|
void setVolume(int vol);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void waitFinished(bool isSpeech);
|
|
|
|
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);
|
|
|
|
void playModule(const char *base, int song);
|
2007-02-25 19:01:59 +00:00
|
|
|
void playRandomPatternJungle();
|
2007-02-21 20:27:48 +00:00
|
|
|
bool playSpecialSfx(int16 sfx);
|
|
|
|
|
|
|
|
int16 _fanfareRestore;
|
|
|
|
int _fanfareCount, _fluteCount;
|
|
|
|
Audio::SoundHandle _modHandle;
|
|
|
|
Audio::SoundHandle _sfxHandle;
|
2003-10-21 12:29:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // End of namespace Queen
|
|
|
|
|
|
|
|
#endif
|