2003-10-21 12:29:37 +00:00
|
|
|
/* ScummVM - Scumm Interpreter
|
|
|
|
* Copyright (C) 2003 The ScummVM project
|
|
|
|
*
|
|
|
|
* 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$
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QUEENSOUND_H
|
|
|
|
#define QUEENSOUND_H
|
|
|
|
|
|
|
|
#include "sound/mixer.h"
|
|
|
|
#include "queen/defs.h"
|
|
|
|
#include "common/str.h"
|
|
|
|
|
|
|
|
namespace Queen {
|
|
|
|
|
2003-10-23 06:44:35 +00:00
|
|
|
class Input;
|
2003-10-21 12:29:37 +00:00
|
|
|
class Resource;
|
|
|
|
|
2003-11-14 00:45:44 +00:00
|
|
|
struct songData {
|
|
|
|
int16 tuneList[5];
|
|
|
|
int16 volume;
|
|
|
|
int16 tempo;
|
|
|
|
int16 reverb;
|
|
|
|
int16 override;
|
|
|
|
int16 ignore;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct tuneData {
|
|
|
|
int16 tuneNum[9];
|
|
|
|
int16 sfx[2];
|
|
|
|
int16 mode;
|
|
|
|
int16 delay;
|
|
|
|
};
|
|
|
|
|
2003-10-21 12:29:37 +00:00
|
|
|
class Sound {
|
|
|
|
public:
|
2003-10-23 06:44:35 +00:00
|
|
|
Sound(SoundMixer *mixer, Input *input, Resource *resource);
|
2003-10-21 12:29:37 +00:00
|
|
|
virtual ~Sound();
|
|
|
|
virtual void sfxPlay(const char *base) = 0;
|
2003-10-23 06:44:35 +00:00
|
|
|
static Sound *giveSound(SoundMixer *mixer, Input *input, Resource *resource, uint8 compression);
|
2003-11-07 02:33:20 +00:00
|
|
|
void waitSfxFinished();
|
|
|
|
void playSong(int16 songNum);
|
2003-10-21 12:29:37 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
SoundMixer *_mixer;
|
2003-10-28 15:26:05 +00:00
|
|
|
Input *_input;
|
2003-10-21 12:29:37 +00:00
|
|
|
Resource *_resource;
|
|
|
|
|
2003-11-14 00:45:44 +00:00
|
|
|
static const songData _song[];
|
|
|
|
static const tuneData _tune[];
|
|
|
|
static const char *_sfxName[];
|
|
|
|
|
2003-11-07 02:33:20 +00:00
|
|
|
int16 _lastOverride;
|
2003-11-14 00:45:44 +00:00
|
|
|
int16 _lastMerge;
|
|
|
|
int16 _altMrgPri;
|
2003-11-07 02:33:20 +00:00
|
|
|
int16 _currentSong;
|
2003-11-14 00:45:44 +00:00
|
|
|
int16 _previousSong;
|
|
|
|
int16 _previousSongNum;
|
2003-10-21 12:29:37 +00:00
|
|
|
PlayingSoundHandle _sfxHandle;
|
|
|
|
};
|
|
|
|
|
|
|
|
class SilentSound : public Sound {
|
|
|
|
public:
|
2003-10-23 06:44:35 +00:00
|
|
|
SilentSound(SoundMixer *mixer, Input *input, Resource *resource) : Sound(mixer, input, resource) {};
|
2003-10-21 12:29:37 +00:00
|
|
|
void sfxPlay(const char *base) { }
|
|
|
|
};
|
|
|
|
|
|
|
|
class SBSound : public Sound {
|
|
|
|
public:
|
2003-10-23 06:44:35 +00:00
|
|
|
SBSound(SoundMixer *mixer, Input *input, Resource *resource) : Sound(mixer, input, resource) {};
|
2003-10-21 12:29:37 +00:00
|
|
|
void sfxPlay(const char *base);
|
2003-10-28 15:26:05 +00:00
|
|
|
protected:
|
|
|
|
int playSound(byte *sound, uint32 size);
|
2003-10-21 12:29:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#ifdef USE_MAD
|
|
|
|
class MP3Sound : public Sound {
|
|
|
|
public:
|
2003-10-23 06:44:35 +00:00
|
|
|
MP3Sound(SoundMixer *mixer, Input *input, Resource *resource) : Sound(mixer, input, resource) {};
|
2003-10-21 12:29:37 +00:00
|
|
|
void sfxPlay(const char *base);
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2003-10-28 15:26:05 +00:00
|
|
|
#ifdef USE_VORBIS
|
|
|
|
class OGGSound : public Sound {
|
|
|
|
public:
|
|
|
|
OGGSound(SoundMixer *mixer, Input *input, Resource *resource) : Sound(mixer, input, resource) {};
|
|
|
|
void sfxPlay(const char *base);
|
|
|
|
};
|
|
|
|
#endif
|
2003-10-21 12:29:37 +00:00
|
|
|
} // End of namespace Queen
|
|
|
|
|
|
|
|
#endif
|