scummvm/engines/hopkins/sound.h

146 lines
3.7 KiB
C
Raw Normal View History

2012-09-08 11:43:33 +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.
*
*/
#ifndef HOPKINS_SOUND_H
#define HOPKINS_SOUND_H
#include "common/scummsys.h"
#include "common/str.h"
#include "audio/audiostream.h"
#include "audio/decoders/wave.h"
#include "audio/mixer.h"
2012-09-08 11:43:33 +00:00
namespace Hopkins {
class VoiceItem {
public:
2013-01-19 23:56:19 +00:00
bool _status;
2012-11-11 07:58:45 +00:00
int _wavIndex;
};
class SwavItem {
public:
2012-11-11 07:58:45 +00:00
bool _active;
Audio::RewindableAudioStream *_audioStream;
Audio::SoundHandle _soundHandle;
2013-01-18 17:52:19 +00:00
bool _freeSampleFl;
};
class MusicItem {
public:
2012-11-11 07:58:45 +00:00
bool _active;
};
class SoundItem {
public:
2012-11-11 07:58:45 +00:00
bool _active;
};
#define VOICE_COUNT 3
#define SWAV_COUNT 50
#define SOUND_COUNT 10
class HopkinsEngine;
2012-09-08 11:43:33 +00:00
class SoundManager {
private:
HopkinsEngine *_vm;
2013-01-19 23:56:19 +00:00
bool checkVoiceStatus(int voiceIndex);
void stopVoice(int voiceIndex);
void SDL_LVOICE(Common::String filename, size_t filePosition, size_t entryLength);
2013-01-18 17:52:19 +00:00
void playVoice();
bool DEL_SAMPLE_SDL(int wavIndex);
bool SDL_LoadVoice(const Common::String &filename, size_t fileOffset, size_t entryLength, SwavItem &item);
void LOAD_SAMPLE2_SDL(int wavIndex, const Common::String &filename, bool freeSample);
void delWav(int wavIndex);
void PLAY_SAMPLE_SDL(int voiceIndex, int wavIndex);
/**
* Checks voices to see if they're finished
*/
2013-01-19 23:56:19 +00:00
void checkVoiceActivity();
/**
* Creates an audio stream based on a passed raw stream
*/
Audio::RewindableAudioStream *makeSoundStream(Common::SeekableReadStream *stream);
public:
Audio::SoundHandle _musicHandle;
2013-01-19 23:56:19 +00:00
int _specialSoundNum;
int _soundVolume;
int _voiceVolume;
int _musicVolume;
2012-12-25 21:48:11 +00:00
bool _soundOffFl;
bool _musicOffFl;
bool _voiceOffFl;
bool _textOffFl;
2012-12-25 21:48:11 +00:00
bool _soundFl;
bool skipRefreshFl;
2013-01-19 23:56:19 +00:00
int _currentSoundIndex;
bool _modPlayingFl;
int _oldSoundNumber;
2012-11-11 07:58:45 +00:00
VoiceItem _voice[VOICE_COUNT];
SwavItem Swav[SWAV_COUNT];
SoundItem _sound[SOUND_COUNT];
MusicItem _music;
public:
SoundManager();
~SoundManager();
void setParent(HopkinsEngine *vm);
2013-01-19 23:56:19 +00:00
void checkSoundEnd();
void loadAnimSound();
void playAnimSound(int soundNumber);
void loadWav(const Common::String &file, int wavIndex);
void playWav(int wavIndex);
void WSOUND(int soundNumber);
2012-11-11 07:58:45 +00:00
void WSOUND_OFF();
2013-01-19 23:56:19 +00:00
void playMod(const Common::String &file);
2012-12-25 21:48:11 +00:00
void loadMusic(const Common::String &file);
void playMusic();
void stopMusic();
void delMusic();
2012-11-11 07:58:45 +00:00
bool mixVoice(int voiceId, int voiceMode);
void DEL_SAMPLE(int soundIndex);
2012-12-25 21:48:11 +00:00
void playSound(const Common::String &file);
void PLAY_SOUND2(const Common::String &file2);
void MODSetSampleVolume();
void MODSetVoiceVolume();
void MODSetMusicVolume(int volume);
2012-12-24 00:43:37 +00:00
void loadSample(int wavIndex, const Common::String &file);
void playSample(int wavIndex, int voiceMode);
void PLAY_SAMPLE2(int idx);
void syncSoundSettings();
void updateScummVMSoundSettings();
void checkSounds();
2012-12-03 06:48:37 +00:00
Common::String setExtension(const Common::String &str, const Common::String &ext);
2012-09-08 11:43:33 +00:00
};
} // End of namespace Hopkins
#endif /* HOPKINS_SOUND_H */