2007-05-30 21:56:52 +00:00
|
|
|
/* ScummVM - Graphic Adventure Engine
|
2004-04-28 23:54:40 +00:00
|
|
|
*
|
2007-05-30 21:56:52 +00:00
|
|
|
* 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.
|
2004-04-28 23:54:40 +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
|
2008-01-05 12:45:14 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2004-04-28 23:54:40 +00:00
|
|
|
* 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.
|
2004-04-28 23:54:40 +00:00
|
|
|
*
|
2006-02-11 12:44:16 +00:00
|
|
|
* $URL$
|
|
|
|
* $Id$
|
2004-04-28 23:54:40 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2004-05-01 16:15:55 +00:00
|
|
|
// Sound class
|
2004-04-28 23:54:40 +00:00
|
|
|
|
2007-02-19 17:30:43 +00:00
|
|
|
#ifndef SAGA_SOUND_H
|
|
|
|
#define SAGA_SOUND_H
|
2004-04-28 23:54:40 +00:00
|
|
|
|
2007-06-25 18:23:01 +00:00
|
|
|
#include "common/file.h"
|
2004-04-29 01:24:18 +00:00
|
|
|
#include "sound/mixer.h"
|
2010-01-26 22:48:45 +00:00
|
|
|
#include "sound/decoders/mp3.h"
|
|
|
|
#include "sound/decoders/vorbis.h"
|
|
|
|
#include "sound/decoders/flac.h"
|
2004-04-28 23:54:40 +00:00
|
|
|
|
|
|
|
namespace Saga {
|
|
|
|
|
2005-08-15 23:26:50 +00:00
|
|
|
#define SOUND_HANDLES 10
|
|
|
|
|
2004-11-26 13:28:00 +00:00
|
|
|
enum SOUND_FLAGS {
|
|
|
|
SOUND_LOOP = 1
|
|
|
|
};
|
|
|
|
|
2005-07-19 19:05:52 +00:00
|
|
|
struct SoundBuffer {
|
|
|
|
uint16 frequency;
|
2009-01-04 14:38:03 +00:00
|
|
|
bool isCompressed;
|
2009-08-17 11:49:07 +00:00
|
|
|
byte flags;
|
2005-07-30 21:11:48 +00:00
|
|
|
|
2005-07-19 19:05:52 +00:00
|
|
|
byte *buffer;
|
|
|
|
size_t size;
|
2007-06-25 18:23:01 +00:00
|
|
|
size_t originalSize;
|
|
|
|
GameSoundTypes soundType;
|
|
|
|
size_t fileOffset;
|
2004-04-29 01:24:18 +00:00
|
|
|
};
|
|
|
|
|
2005-08-15 23:26:50 +00:00
|
|
|
enum sndHandleType {
|
|
|
|
kFreeHandle,
|
|
|
|
kEffectHandle,
|
|
|
|
kVoiceHandle
|
|
|
|
};
|
|
|
|
|
|
|
|
struct SndHandle {
|
|
|
|
Audio::SoundHandle handle;
|
|
|
|
sndHandleType type;
|
2010-06-15 10:25:34 +00:00
|
|
|
int resId;
|
2005-08-15 23:26:50 +00:00
|
|
|
};
|
|
|
|
|
2004-04-28 23:54:40 +00:00
|
|
|
class Sound {
|
2004-05-01 16:15:55 +00:00
|
|
|
public:
|
2004-04-28 23:54:40 +00:00
|
|
|
|
2008-07-21 19:15:28 +00:00
|
|
|
Sound(SagaEngine *vm, Audio::Mixer *mixer);
|
2004-05-01 16:15:55 +00:00
|
|
|
~Sound();
|
2004-04-28 23:54:40 +00:00
|
|
|
|
2010-06-15 10:25:34 +00:00
|
|
|
void playSound(SoundBuffer &buffer, int volume, bool loop, int resId);
|
2005-07-19 19:05:52 +00:00
|
|
|
void pauseSound();
|
|
|
|
void resumeSound();
|
|
|
|
void stopSound();
|
2004-04-28 23:54:40 +00:00
|
|
|
|
2005-07-19 19:05:52 +00:00
|
|
|
void playVoice(SoundBuffer &buffer);
|
|
|
|
void pauseVoice();
|
|
|
|
void resumeVoice();
|
|
|
|
void stopVoice();
|
2004-04-28 23:54:40 +00:00
|
|
|
|
2005-08-13 01:35:52 +00:00
|
|
|
void stopAll();
|
|
|
|
|
2008-07-21 19:15:28 +00:00
|
|
|
void setVolume();
|
2005-09-02 20:17:52 +00:00
|
|
|
|
2004-04-28 23:54:40 +00:00
|
|
|
private:
|
|
|
|
|
2010-01-19 23:50:33 +00:00
|
|
|
void playSoundBuffer(Audio::SoundHandle *handle, const SoundBuffer &buffer, int volume,
|
2008-07-21 19:15:28 +00:00
|
|
|
sndHandleType handleType, bool loop);
|
2005-08-15 23:26:50 +00:00
|
|
|
|
|
|
|
SndHandle *getHandle();
|
2004-04-28 23:54:40 +00:00
|
|
|
|
2004-04-29 01:24:18 +00:00
|
|
|
SagaEngine *_vm;
|
2005-05-10 23:48:48 +00:00
|
|
|
Audio::Mixer *_mixer;
|
2004-04-29 01:24:18 +00:00
|
|
|
|
2005-08-15 23:26:50 +00:00
|
|
|
SndHandle _handles[SOUND_HANDLES];
|
2004-05-01 16:15:55 +00:00
|
|
|
};
|
2004-04-28 23:54:40 +00:00
|
|
|
|
|
|
|
} // End of namespace Saga
|
|
|
|
|
2004-05-01 16:15:55 +00:00
|
|
|
#endif
|